Api

比特核測試網 API

  • May 25, 2021

有誰知道 Bitcore 是否提供testnetAPI 來玩?

我正在使用 API 實現 Escrow 系統,Node.js ​​謝謝。

我想通了,您需要在實例化 bitcore 後設置預設網路。

var bitcore = require('bitcore'); 

// Set the network to testnet
bitcore.Networks.defaultNetwork = bitcore.Networks.testnet;

在我得到它之前,我不得不解決這個問題。有點傻,文件中沒有任何地方…

這是通過打字稿

import * as bitcore from 'bitcore-lib'

bitcore.Networks['defaultNetwork'] = bitcore.Networks['testnet']

引用自:https://bitcoin.stackexchange.com/questions/37043