binance-api-node
binance-api-node copied to clipboard
Cannot specify withdraw network
There's no option you can set to withdraw to a specific network!
console.log( await client.withdraw({ asset: 'ETH', address: '0xfa97c22a03d8522988c709c24283c0918a59c795', amount: 100, }), )
@aymantaybi I guess that you are confusing some parameters:
await client.withdraw({
coin: 'ETH', // this
address: '0xfa97c22a03d8522988c709c24283c0918a59c795',
amount: 100,
network: 'ETH', // and this
});
I think is not a bug.