Skip to content

Latest commit

 

History

History
 
 

rust

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Aptos Protos

This repository contains the protobuf definitions for Aptos.

Usage

Import generated structs like this:

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

Then use them like this:

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

Contributing

See CONTRIBUTING.md for more information.