You are viewing a single comment's thread from:

RE: Hivejs开发实战指南

in #starnote16 hours ago
yarn add @hiveio/hive-js //^2.0.8
// npm install @hiveio/hive-js --save
//<script src="https://cdn.jsdelivr.net/npm/@hiveio/hive-js/dist/hive.min.js"></script>

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,
});