基本-ウォレットの作成
このレッスンでは、ウォレットの作成方法を紹介します。QURASウォレットには、秘密鍵、公開鍵、ScriptHash、およびアドレスが含まれています。
ウォレットの生成
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.