2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

0xプロトコルと接続するためにGanacheのセットアップを行う

Last updated at Posted at 2018-12-25

モチベーション

0x.jsでganache-cliとやり取りを行うためのセットアップを行う。間違い、ご意見あればTwitter経由でご連絡ください。

Ganacheを使ってセットアップを行う。

0x.jsを使ってEthereumネットワークと接続するためには、EthereumのノードでWeb3 Providerを指定する必要がある。開発環境では、Ethereum RPCクライアントとしてGanache Cliを使うのが良い。

Screen Shot 2018-12-25 at 11.14.55.png

Ganache-cli

Screen Shot 2018-12-25 at 11.18.41.png

Ganache-cliをロー間環境でダウンロードする。
npm install -g ganache-cli@6.1.6

0x v2のアップデートを使用するためには、Ganache-cliのsnapshotをダウンロードする必要がある。ダウンロードはこちらから。ダウンロード後、Zipファイルを解凍する。

ファイルを解凍したデヒレクトリー内で以下のコマンドを打つ。

ganache-cli \
--networkId 50 \
-p 8545 \
--db ./0x_ganache_snapshot \
-m "concert load couple harbor equip island argue ramp clarify fence smart topic"

ここで実行結果は以下のようになる。
Screen Shot 2018-12-25 at 11.26.37.png

10個の新規アカウントと各アカウントに100ETHがあることがわかる。もちろんテストネットなので価値はない。

portを8545に設定したので、0x-starter-kitなどでZeroExにパスを通す際のWeb3 Providerとしてlocalhost:8545を指定することができるようになった。

const provider = new Web3.providers.HttpProvider('http://localhost:8545');

このパスを指定することによってHTTP通信を通して0x.jsでGanache-cliと通信を行うことができる。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?