Interface FullLedger

Full Ledger client with encrypted messaging Contains all operations including encrypted messaging Dependencies: crypto/sign + crypto/encryption (with Pako compression)

Use case: Messaging applications, private communication

interface FullLedger {
    account: AccountApi;
    alias: AliasApi;
    asset: AssetApi;
    block: BlockApi;
    contract: ContractApi;
    message: MessageApi;
    network: NetworkApi;
    service: ChainService;
    transaction: TransactionApi;
}

Properties

account: AccountApi
alias: AliasApi
asset: AssetApi
block: BlockApi
contract: ContractApi
message: MessageApi
network: NetworkApi
service: ChainService
transaction: TransactionApi