Updating reporterd

Steps for updating your reporter daemon.

1. Remove the old reporterd binary

cd ~/layer/binaries && rm reporterd

2. Remove the old configs

We want to remove the old reporter configurations so that a new ones can be generated with the latest feeds / sources:

rm ~/.layer/config/market_params.toml
rm ~/.layer/config/custom_query_config.toml
rm ~/.layer/config/market_params.toml

3. Download the latest reporterd release

mkdir -p ~/layer/binaries/reporter && cd ~/layer/binaries/reporter && wget https://github.com/tellor-io/layer/releases/download/reporterd%2Fv0.0.5/reporterd_Linux_x86_64.tar.gz && tar -xvzf reporterd_Linux_x86_64.tar.gz

4. Restart your reporter

./reporterd --chain-id tellor-1 --grpc-addr 0.0.0.0:9090 --from ACCOUNT_NAME --home ~/.layer --keyring-backend test --node tcp://0.0.0.0:26657

Last updated