RE: RE: Hivejs开发实战指南
You are viewing a single comment's thread from:

RE: Hivejs开发实战指南

Words
0
Reading
0 min
Listen
Play
8M
yarn add @hiveio/hive-js //^2.0.8
// npm install @hiveio/hive-js --save
//

import hive from '@hiveio/hive-js'
//初始化hive节点
const hiveConNode = 'https://api.openhive.network'
// const hiveConNode = 'https://rpc.mahdiyari.info'

hive.api.setOptions({ url: hiveConNode})

//使用测试网
hive.api.setOptions({
  address_prefix: 'TST',
  chain_id: '46d82ab7d8db682eb1959aed0ada039a6d49afa1602491f93dde9cac3e8e6c32',
  useTestNet: true,
});