Get account transactions
The account address
Optional
start: numberThe start sequence number (optional)
Optional
limit: numberThe maximum number of transactions to return (optional)
Array of transactions
Gets the balance of a specific coin type directly from Aptos RPC given a coin type and address
The other get balance methods use this method to get the balance
The coin type (e.g., "0x1::aptos_coin::AptosCoin")
The wallet address
The balance as a string
Creates multiple signed transactions to transfer APT
Array of payment parameters
Array of signed Aptos transactions as hex strings
Creates a signed transaction to transfer default chain currency
The signed transaction
Creatthis.provider = new JsonRpcProvider(this.rpc_url)es a list of signed transactions to transfer default chain currency
A list of transfers to prepare
Optional
options: OptionsOptions
An ordered list of signed transactions
Read from a smart contract via Demos Network XM operation (default behavior)
The module address
The module name
The function name
Function arguments
Type arguments for generic functions (optional)
The XMScript object ready to be used in a Demos transaction
Read from a smart contract directly (bypasses Demos Network) Use only when explicit direct access is needed
The module address
The module name
The function name
Function arguments
Type arguments for generic functions (optional)
The function result
Broadcasts a signed transaction to the Aptos network
The signed transaction (transaction hash as Uint8Array)
Transaction response with result and hash
Submit a raw transaction (already signed)
The raw transaction bytes
The transaction response
Prepare a smart contract write transaction for Demos Network relay Builds transaction for XM operations - does NOT execute directly All contract writes must go through Demos Network XM system
The module address
The module name
The function name
Function arguments
Type arguments (optional)
The XMScript object ready to be used in a Demos transaction
Static
create
Aptos LocalSDK implementation for Node.js environments Extends the core APTOS class with local-specific functionality