如何让Bitgo js从钱包ID接收钱包地址

时间:2018-04-06 10:55:26

标签: node.js

我正在尝试从钱包ID获取接收钱包地址,以便我可以将btc发送到该特定地址。但无法获取接收地址。我的代码如下:

let walletId = ''; // here is my wallet Id

bitgo.coin('tbtc').wallets().get({ id: walletId })
.then(function(wallet)
{
  // print the wallet
 console.dir(wallet); // here i get whole array of wallet
}); 

我无法从这个数组中获取receiveAddress,我是这样尝试的:

  

wallet.receiveAddress()//这里我收到错误receiveAddress不是一个函数   wallet.receiveAddress.address //此未定义地址的错误

1 个答案:

答案 0 :(得分:0)

我们可以通过使用:

来获得它
bitgo.coin('tbtc').wallets().get({ id: walletId })
.then(function(wallet)
{
  // print the wallet
 console.dir(wallet.receiveAddress());
});

console.dir(wallet.receiveAddress()); //这很有效