eosjs-ecc中文文档

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

eosjs-ecc是eos官方处理密钥和签名的javascript开发包。eosjs-ecc中文文档由 汇智网翻译整理,访问地址:eosjs-ecc中文手册。

eosjs-ecc安装

nodejs环境下,使用NPM安装nodejs包:

~$ npm install eosjs-ecc

浏览器环境下,可以在这里下载 预编译的eosjs-ecc库,然后在HTML中引用即可:



  
  


  See console object: eosjs_ecc


使用eosjs的对象API

使用require或import引入eosjs包中的主要类。例如,下面的nodejs代码使用require引入eosjs:

//引入eosjs
let {PrivateKey, PublicKey, Signature, Aes, key_utils, config} = require('eosjs-ecc')

//创建随机私钥
let privateWif
PrivateKey.randomKey().then(privateKey => privateWif = privateKey.toWif())

//由私钥推导出公钥
pubkey = PrivateKey.fromString(privateWif).toPublic().toString()

转载于:https://my.oschina.net/u/3794778/blog/2990925

你可能感兴趣的:(eosjs-ecc中文文档)