Withdrawal Methods
Withdrawal methods of Azoth SDK for withdrawing tokens from the system.
withdraw()
withdraw()Withdraws tokens from AzothPay.
async withdraw(amount: bigint | number): Promise<ethers.TransactionResponse>Parameters:
amount: The amount of tokens to withdraw, should be formatted usingformatInput()
Returns:
An ethers.js
TransactionResponseobject
Example:
// Format the amount correctly (50 USDT with 6 decimals)
const amount = formatInput('50', 6);
// Withdraw
const tx = await azoth.withdraw(amount);
await tx.wait();
console.log('Withdrawal successful');withdrawBySig()
withdrawBySig()Creates a withdrawal transaction that can be signed off-chain and executed by anyone.
Parameters:
amount: The amount of tokens to withdraw, should be formatted usingformatInput()deadline: Timestamp after which the transaction cannot be executed
Returns:
An ethers.js
TransactionResponseobject
Example:
withdrawTo()
withdrawTo()Last updated