提现 - withdraw
使用交易所实例的withdraw
方法从交易所提现。示例代码如下。
JavaScript:
exchange.withdraw (code, amount, address, tag = undefined, params = {})
Python:
exchange.withdraw(code, amount, address, tag=None, params={})
PHP:
$exchange->withdraw ($code, $amount, $address, $tag = null, $params = array ())
code
参数表示货币代码(通常是三位大写字幕,但是不同情况下可能有所差异)。
withdraw
方法返回一个字典,其中的提现ID字段值通常是链上交易的ID,或者
是交易所内部的提现请求ID。withdraw
的返回值看起来像这样:
{
'info' { ... }, // unparsed reply from the exchange, as is
'id': '12345567890', // string withdrawal id, if any
}
有些交易所采用双因子认证的手段要求每一笔提现都进行人工确认。为了放行 你的提现请求,通常你不得不点击交易所发给你的邮件中的秘密链接,或者 在交易所网站上输入一个验证码,以便交易所确认提现交易是安全的。
在有些情况下,你也可以使用提现ID在稍后检查提现状态(是否成功)并 提交双因子确认码,这需要参考交易所的文档获取详细信息。