Withdrawal Methods

Withdrawal methods of Azoth SDK for withdrawing tokens from the system.

withdraw()

Withdraws tokens from AzothPay.

async withdraw(amount: bigint | number): Promise<ethers.TransactionResponse>

Parameters:

  • amount: The amount of tokens to withdraw, should be formatted using formatInput()

Returns:

  • An ethers.js TransactionResponse object

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()

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 using formatInput()

  • deadline: Timestamp after which the transaction cannot be executed

Returns:

  • An ethers.js TransactionResponse object

Example:

withdrawTo()

Last updated