币安 提币范例代码
8
Follow
1361
Followers
Source
JavaScript
String.prototype.format= function(){
var args = Array.prototype.slice.call(arguments);
var count=0;
return this.replace(/%s/g,function(s,i){
return args[count++];
});
}
function WithdrawForBinance (accessKey, currency, address, addressTag, amount) {
/* Withdraw API desc on Binance API doc
query string :
asset=ETH&address=0x6915f16f8791d0a1cc2bf47c13a6b2a92000504b&amount=1&recvWindow=5000&name=test×tamp=1510903211000Related strategies
Comment
All comments (0)
No data
- 1
