Ganache

First of all, if you do not have it, download and install Ganache which will give you your own personal test chain.

Create the folder .volumes/memento/ if it doesn't exist already

mkdir -p .volumes/memento/

Copy config-sample.yml into .volumes/memento/config.yml

cp config-sample.yml .volumes/memento/config.yml

Set the eth.client.http and eth.client.ws attributes to http://127.0.0.1:8545 and ws://127.0.0.1:8546 respectively.

Disable uncles scraping by setting feature.uncles.enabled: false

Start Memento

docker-compose up -d

Open the dashboard to check progress

http://localhost:3000

Last updated