我有一个coinbase账户。我想将一定数量的加密货币转移到另一个加密货币。
例如,我想将0.1比特币转移到狗狗币。
我想使用python API,我正在寻找coinbase-python。
我认为我需要使用transfer_money
方法,正如我在文档中看到的那样:
client.transfer_money(
account_id,
to="<coinbase_account_id>",
amount="1",
currency="BTC")
# or
account.transfer_money(to="<coinbase_account_id>",
amount="1",
currency="BTC")
,但我不能创建一个真正的例子,通过看看我应该使用什么作为<coinbase_account_id>
为例。
有人可以向我解释一下,执行我想做的操作的正确方法是什么,将特定数量的钱从加密货币转移到另一个加密货币?
感谢我创建了一个函数,通过请求API key, API secret和currency来调用account_id:account_id_finder()
需要三个字符串参数:客户端的API密钥,API秘密和货币,必须是你正在寻找的账户的货币。注意:coinbase只支持107种货币。同时,coinbase pro支持大约250种货币。使用示例:account_id_finder(APIKEY, APISECRET, 'BTC')
或account_id_finder(APIKEY, APISECRET, 'DOGE')
def account_id_finder(APIKEY, APISECRET,currency):
client = Client(APIKEY, APISECRET)
liston=client.get_accounts()
for i in liston.data:
if i['currency']==currency:
idcuenta=i['id']
break
return idcuenta
但我认为API在账户间转账时存在问题