quras-js
でウォレット管理用のクラスを提供する。 それではどのようにウォレットを生成することができるのか実例を通じて説明する。 import * as Quras from 'quras-js' const myAccount = new Quras.wallet.Account() console.log('Private Key : ' + myAccount.privateKey) // The private key will be shown. console.log('Public Key : ' + myAccount.publicKey) // The public key will be shown. console.log('Address : ' + myAccount.address) // The address of you wallet will be shown. console.log('Script Hash : ' + myAccount.scriptHash) // The script hash will be shown.