Back to Aptos Core

Aptos Protos

protos/rust/README.md

latest367 B
Original Source

Aptos Protos

This repository contains the protobuf definitions for Aptos.

Usage

Import generated structs like this:

rust
use aptos_protos::transaction::v1::Transaction;

Then use them like this:

rust
fn parse(transaction: Transaction) {
    // Parse the transaction.
}

Contributing

See CONTRIBUTING.md for more information.