@abcpros/bitcore-mnemonic 中文文档教程

发布于 3年前 浏览 22 项目主页 更新于 3年前

Bitcore Mnemonics

BIP39 比特核助记符

NPM 包构建状态Coverage Status

bitcore 的模块,实现了 生成确定性密钥的助记码

Getting Started

这个库分布在两个npm打包系统中。

npm install bitcore-lib  #this to install bitcore-lib since it is a peerDependecy
npm install bitcore-mnemonic

在开发人员指南助记符部分 中有很多如何使用它的示例。 例如,以下代码将生成一个新的随机助记码并将其转换为 HDPrivateKey

var Mnemonic = require('bitcore-mnemonic');
var code = new Mnemonic(Mnemonic.Words.SPANISH);
code.toString(); // natal hada sutil año sólido papel jamón combate aula flota ver esfera...
var xpriv = code.toHDPrivateKey();

Contributing

有关如何贡献的信息,请参阅主 bitcore 存储库上的 CONTRIBUTING.md

License

代码根据 MIT 许可证发布。

版权所有 2013-2019 BitPay, Inc. Bitcore 是 BitPay, Inc. 维护的商标。

Bitcore Mnemonics

BIP39 Mnemonics for bitcore

NPM PackageBuild StatusCoverage Status

A module for bitcore that implements Mnemonic code for generating deterministic keys.

Getting Started

This library is distributed in both the npm packaging systems.

npm install bitcore-lib  #this to install bitcore-lib since it is a peerDependecy
npm install bitcore-mnemonic

There are many examples of how to use it on the developer guide section for mnemonic. For example, the following code would generate a new random mnemonic code and convert it to a HDPrivateKey.

var Mnemonic = require('bitcore-mnemonic');
var code = new Mnemonic(Mnemonic.Words.SPANISH);
code.toString(); // natal hada sutil año sólido papel jamón combate aula flota ver esfera...
var xpriv = code.toHDPrivateKey();

Contributing

See CONTRIBUTING.md on the main bitcore repo for information about how to contribute.

License

Code released under the MIT license.

Copyright 2013-2019 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文