Withdraw from Zebec Wallet
To withdraw tokens from the zebec wallet, use the withdrawToken()
method:
Note: You can override the default sdk overrides using optional param called overrides
in every client functions.
const tokenAddress = "0x1234567890abcdef";
const amount = "10";
const customOverrides = {
gasLimit: 25000000,
};
const receipt = await client.withdrawToken(
tokenAddress,
amount,
customOverrides
);
console.log("Withdraw Token Receipt:", receipt);
Last updated