klaytn / klaytn-docs

Klaytn Docs
https://docs.klaytn.foundation/
MIT License
19 stars 60 forks source link

caver-js 1.5.0: Getting Started #195

Closed ray-groundx closed 4 years ago

ray-groundx commented 4 years ago

caver-js 1.5.0: Getting Started 페이지에서 수정되어야 할 텍스트입니다. 정리되면 PR로 올릴 예정입니다.

ray-groundx commented 4 years ago

"The result of <0>caver.wallet.keyring.createFromPrivateKey, like the result of <0>caver.wallet.keyring.generate above, is a <1>SingleKeyring instance with an address defined inside it and a [PrivateKey] instance in <0>keyring.key."

->

"The result of <0>caver.wallet.keyring.createFromPrivateKey, like the result of <0>caver.wallet.keyring.generate above, is a <1>SingleKeyring instance with an address and a PrivateKey instance defined inside it"

ray-groundx commented 4 years ago

caver.wallet.add or caver.wallet.newKeyring returns a Keyring instance after adding it to caver.wallet.

->

caver.wallet.getKeyring returns a Keyring instance after adding it to caver.wallet.

ray-groundx commented 4 years ago

The example below explains how to create an <0>Account instance with multiple private keys that what you want to use (You can create an <0>Account instance with multiple public keys via <1>caver.account.create).

->

The example below explains how to create an <0>Account instance with multiple private keys that you want to use (You can create an <0>Account instance with multiple public keys via <1>caver.account.create).

ray-groundx commented 4 years ago
<0>feeDelegatedSmartContractDeployWithRatio class in <0>caver.transaction package when the fee payer of a smart contract transaction pays the fee -> <0>feeDelegatedSmartContractDeployWithRatio class in <0>caver.transaction package when the fee payer of a smart contract transaction pays only certain part of the fee according to the fee ratio.