You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# add minimum gas prices config to app configuration file
sed -i -r 's/minimum-gas-prices = ""/minimum-gas-prices = "0.0udor"/' ${APP_HOME}/config/app.toml
# enable 1317 API
perl -0777 -i.original -pe 's/# Enable defines if the API server should be enabled.\nenable = false/# Enable defines if the API server should be enabled.\nenable = true/igs' ${APP_HOME}/config/app.toml
# resolve CORS policy blocking during request to the chain by the Keplr API
sed -i -r 's/cors_allowed_origins = \[\]/cors_allowed_origins = \["*"\]/' ${APP_HOME}/config/config.toml
# add your wallet addresses to genesis
wasmd add-genesis-account $(wasmd keys show -a main --keyring-backend=test) 10000000000udor,10000000000stake --home ${APP_HOME}
wasmd add-genesis-account $(wasmd keys show -a validator --keyring-backend=test) 10000000000udor,10000000000stake --home ${APP_HOME}