Web3 v1.0.0 を使用した ether と wei の相互変換
- Ethereum の通貨 ether にいくつかの単位があります。
- ether の最小単位は、wei と呼ばれます。
- 1 ether = 1000000000000000000 wei です。
Web3 のインストール
- Web3 は JavaScript から Ethereum を使用するためのライブラリです。
$ npm install web3
サンプルコード
- Web3 v1.0.0 を使用した ether と wei の相互変換の方法は次の通りです。
var Web3 = require('web3');
console.log(Web3.version);
// => 1.0.0-beta.34
const weiValue = Web3.utils.toWei('1', 'ether');
console.log(weiValue);
// => 1000000000000000000
const etherValue = Web3.utils.fromWei('1000000000000000000', 'ether');
console.log(etherValue);
// => 1
Note
- Ethereum 関連の情報は https://scrapbox.io/sushiether/ に集約することにしました。
- この記事の内容に変更・更新がある場合は、以下の URL を更新します。
- https://scrapbox.io/sushiether/Web3_v1.0.0_を使用した_ether_と_wei_の相互変換
$ npm install web3
- Web3 v1.0.0 を使用した ether と wei の相互変換の方法は次の通りです。
var Web3 = require('web3');
console.log(Web3.version);
// => 1.0.0-beta.34
const weiValue = Web3.utils.toWei('1', 'ether');
console.log(weiValue);
// => 1000000000000000000
const etherValue = Web3.utils.fromWei('1000000000000000000', 'ether');
console.log(etherValue);
// => 1
Note
- Ethereum 関連の情報は https://scrapbox.io/sushiether/ に集約することにしました。
- この記事の内容に変更・更新がある場合は、以下の URL を更新します。
- https://scrapbox.io/sushiether/Web3_v1.0.0_を使用した_ether_と_wei_の相互変換
Author And Source
この問題について(Web3 v1.0.0 を使用した ether と wei の相互変換), 我々は、より多くの情報をここで見つけました https://qiita.com/hm0429/items/334f9bb239f9836d5697著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .