📬Price feeder (✔️Oracle)
Docs - https://nibiru.fi/docs/run-nodes/validators/pricefeeder.html
In this example:
a separate wallet is used (not the validator's wallet)
a separate wallet is attached to the validator and
Environment=VALIDATOR_ADDRESS='<nibivaloper1....>'is added to the service filea separate wallet should have coins for commissions
the validator must be in the active set
mkdir -p $HOME/.nibid/pricefeeder && cd $HOME/.nibid/pricefeeder
wget https://github.com/NibiruChain/pricefeeder/releases/download/v1.0.5/pricefeeder_1.0.5_linux_amd64.tar.gz
tar -xvf pricefeeder_1.0.5_linux_amd64.tar.gz
mv pricefeeder /usr/local/bin/
sha256sum /usr/local/bin/pricefeeder
# 7fd3b30ab33def57fb88a54d05fb17fa3e4e32e81b8bcffd574bacdbf6051e7f# set variables
export CHAIN_ID="cataclysm-1"
export GRPC_ENDPOINT="localhost:9090"
export WEBSOCKET_ENDPOINT="ws://localhost:26657/websocket"
export EXCHANGE_SYMBOLS_MAP='{"bitfinex":{"ubtc:unusd":"tBTCUSD","ubtc:uusd":"tBTCUSD","ueth:unusd":"tETHUSD","ueth:uusd":"tETHUSD","uusdc:uusd":"tUDCUSD","uusdc:unusd":"tUDCUSD"}}'
export FEEDER_MNEMONIC="<your mnemonic here>"
export VALIDATOR_ADDRESS="nibi1valoper..."Bind a separate wallet with the following command

Last updated