zera-sdk 0.1.0

Rust SDK for ZERA transactions, validator APIs, and bridge workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod create;
pub mod shared;
pub mod update;

pub use create::{
    build_contract_txn, build_contract_txn_with_client, create_contract, send_create_contract,
};
pub use shared::{
    validate_create_contract_options, validate_key_pair, validate_premint_wallets,
    validate_update_contract_options, BuildContractOptions, CreateContractOptions,
    UpdateContractOptions,
};
pub use update::{
    build_contract_update_txn, build_contract_update_txn_with_client, send_update_contract,
    update_contract,
};