1.0.4 • Published 12 months ago
@caict/bif-core v1.0.4
基础包
该工具包主要是提供序列化以及abi编码器
node版本
v20.0.0
序列化功能:
CommonPb
ChainPb
consensusPb
merkeltriePb
monitorPb
overlayPb
privacyPb
abi编码器
编码Encode
使用方式:
let { Encode } = require('bif-core')
let res = Encode(["address"], ['bid:efcx2eHszCy1zDtNiWdBBnsjG316EU5p'])
解码Decode
使用方式:
let { Decode } = require('bif-core')
let str = '00000000000000065665cd4b22aaeabdd8cf0e1e0c52f69363a19001d8c7645'
let type = 'address'
let res = Decode(type, str)