使用 Javascript 在本体中创建地址的最佳方法是什么?
我可以看到如何打电话getBalance
,getTransactions
但需要先获得地址。
使用 Javascript 在本体中创建地址的最佳方法是什么?
我可以看到如何打电话getBalance
,getTransactions
但需要先获得地址。
您可以使用 Ontology TS SDK 创建一个新的 Ontology 钱包。
使用 yarn 或 npm 安装它:
npm install 'ontology-ts-sdk' --save
并与以下内容一起使用:
const Ont = require('ontology-ts-sdk');
const {
Crypto,
Account,
} = Ont;
const {
PrivateKey,
} = Crypto;
const {
Account,
} = Account;
const privateKey = PrivateKey.random();
const account = Account.create(privateKey, '123456', 'mickey');
console.log('Address: ' + account.address.toBase58());