API Reference
Complete API documentation for @tetherto/wdk-wallet-ton
API Reference
Table of Contents
WalletManagerTon
The main class for managing TON wallets.
Extends WalletManager from @tetherto/wdk-wallet.
Constructor
new WalletManagerTon(seed, config)Parameters:
seed(string | Uint8Array): BIP-39 mnemonic seed phrase or seed bytesconfig(object): Configuration objecttonClient(object | TonClient): TON client configuration or instanceurl(string): TON Center API URL (e.g., 'https://toncenter.com/api/v3')secretKey(string, optional): API key for TON Center
transferMaxFee(number, optional): Maximum fee amount for transfer operations (in nanotons)
Example:
Methods
getAccount(index)
Returns a wallet account at the specified index
Promise<WalletAccountTon>
getAccountByPath(path)
Returns a wallet account at the specified BIP-44 derivation path
Promise<WalletAccountTon>
getFeeRates()
Returns current fee rates for transactions
Promise<{normal: number, fast: number}>
dispose()
Disposes all wallet accounts, clearing private keys from memory
void
getAccount(index)
Returns a wallet account at the specified index.
Parameters:
index(number, optional): The index of the account to get (default: 0)
Returns: Promise<WalletAccountTon> - The wallet account
Example:
getAccountByPath(path)
Returns a wallet account at the specified BIP-44 derivation path.
Parameters:
path(string): The derivation path (e.g., "0'/0/0")
Returns: Promise<WalletAccountTon> - The wallet account
Example:
getFeeRates()
Returns current fee rates for normal and fast transactions.
Returns: Promise<FeeRates> - Object containing normal and fast fee rates
Example:
dispose()
Disposes all wallet accounts, clearing private keys from memory.
Example:
Properties
seed
The wallet's seed phrase.
Type: string | Uint8Array
Example:
WalletAccountTon
Individual TON wallet account implementation. Extends WalletAccountReadOnlyTon and implements IWalletAccount.
Constructor
Parameters:
seed(string | Uint8Array): BIP-39 mnemonic seed phrase or seed bytespath(string): BIP-44 derivation path (e.g., "0'/0/0")config(object): Configuration objecttonClient(object | TonClient): TON client configuration or instanceurl(string): TON Center API URLsecretKey(string, optional): API key for TON Center
transferMaxFee(number, optional): Maximum fee amount for transfer operations
Example:
Methods
getAddress()
Returns the account's TON address
Promise<string>
sign(message)
Signs a message using the account's private key
Promise<string>
verify(message, signature)
Verifies a message signature
Promise<boolean>
sendTransaction(tx)
Sends a TON transaction
Promise<{hash: string, fee: number}>
quoteSendTransaction(tx)
Estimates the fee for a TON transaction
Promise<{fee: number}>
transfer(options)
Transfers Jetton tokens to another address
Promise<{hash: string, fee: number}>
quoteTransfer(options)
Estimates the fee for a Jetton transfer
Promise<{fee: number}>
getBalance()
Returns the native TON balance (in nanotons)
Promise<number>
getTokenBalance(tokenAddress)
Returns the balance of a specific Jetton token
Promise<number>
dispose()
Disposes the wallet account, clearing private keys from memory
void
getAddress()
Returns the account's address.
Returns: Promise<string> - The account's TON address
Example:
sign(message)
Signs a message using the account's private key.
Parameters:
message(string): The message to sign
Returns: Promise<string> - The message signature
Example:
verify(message, signature)
Verifies a message signature.
Parameters:
message(string): The original messagesignature(string): The signature to verify
Returns: Promise<boolean> - True if the signature is valid
Example:
sendTransaction(tx)
Sends a TON transaction and returns the result with hash and fee.
Parameters:
tx(object): The transaction objectto(string): Recipient TON address (e.g., 'EQ...')value(number): Amount in nanotons (1 TON = 1,000,000,000 nanotons)bounceable(boolean, optional): Whether the address is bounceable (TON-specific, optional)
Returns: Promise<{hash: string, fee: number}> - Object containing hash and fee (in nanotons)
Example:
quoteSendTransaction(tx)
Estimates the fee for a transaction.
Parameters:
tx(object): The transaction object (same as sendTransaction)to(string): Recipient TON address (e.g., 'EQ...')value(number): Amount in nanotons (1 TON = 1,000,000,000 nanotons)bounceable(boolean, optional): Whether the address is bounceable (TON-specific, optional)
Returns: Promise<{fee: number}> - Object containing fee estimate (in nanotons)
Example:
transfer(options)
Transfers Jettons (TON tokens) to another address.
Parameters:
options(object): Transfer optionstoken(string): Jetton master contract address (TON format, e.g., 'EQ...')recipient(string): Recipient TON address (e.g., 'EQ...')amount(number): Amount in Jetton's base units
Returns: Promise<{hash: string, fee: number}> - Object containing hash and fee (in nanotons)
Example:
quoteTransfer(options)
Estimates the fee for a Jetton (TON token) transfer.
Parameters:
options(object): Transfer options (same as transfer)token(string): Jetton master contract address (TON format, e.g., 'EQ...')recipient(string): Recipient TON address (e.g., 'EQ...')amount(number): Amount in Jetton's base units
Returns: Promise<{fee: number}> - Object containing fee estimate (in nanotons)
Example:
getBalance()
Returns the native TON balance (in nanotons).
Returns: Promise<number> - Balance in nanotons
Example:
getTokenBalance(tokenAddress)
Returns the balance of a specific Jetton (TON token).
Parameters:
tokenAddress(string): The Jetton master contract address (TON format, e.g., 'EQ...')
Returns: Promise<number> - Token balance in base units
Example:
dispose()
Disposes the wallet account, clearing private keys from memory.
Example:
Properties
index
number
The derivation path's index of this account
path
string
The full derivation path of this account
keyPair
{publicKey: Buffer, privateKey: Buffer}
The account's public and private key pair as buffers
Example:

