Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
chain33-rpc-api
Advanced tools
封装了chain33 rpc接口除Wallet接口和挖矿接口外的所有系统接口(不兼容低于6.0.2的版本),Token和Trade系统合约接口。[2018/12/10]
http://114.55.101.159:8801 是测试链的一个节点
http://120.79.156.149:8801 是正式链的一个节点
npm i chain33-rpc-api -S
https://github.com/matthew-andrews/isomorphic-fetch
npm install --save isomorphic-fetch es6-promise
#####使用示例:获取节点的最新高度:
import BtyBaseSdk from 'chain33-rpc-api'
// 新建一个BtyBaseSdk实例,设置默认请求节点和请求错误处理函数(可选,如果不设置可以在方法返回的promise用catch捕获到错误)
let chain33Rpc = new BtyBaseSdk('https://testnet.bityuan.com/api', (error) => {
console.log('catch error ' + error)
})
// 获取节点的最新高度
chain33Rpc.getLasterHeader().then(res => {
if (res.error) throw new Error(res.error)
const { height } = res.result
console.log('height', height)
})
// 传入url参数指定请求节点
chain33Rpc.getLasterHeader('https://mainnet.bityuan.com/api').then(res => {
if (res.error) throw new Error(res.error)
const { height } = res.result
console.log('height', height)
})
FAQs
chain33 rpc 接口封装
The npm package chain33-rpc-api receives a total of 5 weekly downloads. As such, chain33-rpc-api popularity was classified as not popular.
We found that chain33-rpc-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.