Withdraw from Zebec Wallet
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