Crates.io | aptos-sdk-builder |
lib.rs | aptos-sdk-builder |
version | 0.2.7 |
source | src |
created_at | 2022-08-13 09:03:37.666902 |
updated_at | 2022-08-16 07:45:32.927968 |
description | Aptos transaction-builder |
homepage | https://aptoslabs.com |
repository | https://github.com/aptos-labs/aptos-core |
max_upload_size | |
id | 644633 |
size | 189,144 |
A transaction builder is a helper function that converts its arguments into the payload of an Aptos transaction calling a particular Move script.
In Rust, the signature of such a function typically looks like this:
pub fn encode_peer_to_peer_with_metadata_script(
token: TypeTag,
payee: AccountAddress,
amount: u64,
metadata: Vec<u8>,
metadata_signature: Vec<u8>,
) -> Script;
This crate provide a library to generate transaction builders in one programming language.
The tool will also generate and install type definitions for Aptos types such as TypeTag
, AccountAddress
, and Script
.
In practice, hashing and signing Aptos transactions additionally requires a runtime library for Binary Canonical Serialization ("BCS"). Such a library will be installed together with the Aptos types.
The following languages are currently supported: