diff --git a/protocol/scripts/genesis/sample_pregenesis.json b/protocol/scripts/genesis/sample_pregenesis.json index e847297d5e..538da53915 100644 --- a/protocol/scripts/genesis/sample_pregenesis.json +++ b/protocol/scripts/genesis/sample_pregenesis.json @@ -3850,6 +3850,7 @@ "pair": "DYDX-USD" }, { + "exchange_config_json": "{\"placeholder\":\"placeholder\"}", "exponent": -9, "id": 300, "min_exchanges": 1, @@ -3857,6 +3858,7 @@ "pair": "EIGEN-USD" }, { + "exchange_config_json": "{\"placeholder\":\"placeholder\"}", "exponent": -12, "id": 301, "min_exchanges": 1, @@ -4180,7 +4182,7 @@ ] } }, - "app_version": "7.0.0-dev0-149-g12cfb908b", + "app_version": "7.0.5-4-g462dbfcc7", "chain_id": "dydx-sample-1", "consensus": { "params": { diff --git a/protocol/testing/genesis.sh b/protocol/testing/genesis.sh index 20fc3d38ec..6cf36626c1 100755 --- a/protocol/testing/genesis.sh +++ b/protocol/testing/genesis.sh @@ -1865,6 +1865,7 @@ function edit_genesis() { dasel put -t int -f "$GENESIS" '.app_state.prices.market_params.[35].exponent' -v '-9' dasel put -t int -f "$GENESIS" '.app_state.prices.market_params.[35].min_price_change_ppm' -v '800' # 0.080% dasel put -t int -f "$GENESIS" '.app_state.prices.market_params.[35].min_exchanges' -v '1' + dasel put -t string -f "$GENESIS" '.app_state.prices.market_params.[35].exchange_config_json' -v '{"placeholder":"placeholder"}' dasel put -t json -f "$GENESIS" '.app_state.prices.market_prices.[]' -v "{}" dasel put -t int -f "$GENESIS" '.app_state.prices.market_prices.[35].id' -v '300' dasel put -t int -f "$GENESIS" '.app_state.prices.market_prices.[35].exponent' -v '-9' @@ -1877,6 +1878,7 @@ function edit_genesis() { dasel put -t int -f "$GENESIS" '.app_state.prices.market_params.[36].exponent' -v '-12' dasel put -t int -f "$GENESIS" '.app_state.prices.market_params.[36].min_price_change_ppm' -v '800' # 0.080% dasel put -t int -f "$GENESIS" '.app_state.prices.market_params.[36].min_exchanges' -v '1' + dasel put -t string -f "$GENESIS" '.app_state.prices.market_params.[36].exchange_config_json' -v '{"placeholder":"placeholder"}' dasel put -t json -f "$GENESIS" '.app_state.prices.market_prices.[]' -v "{}" dasel put -t int -f "$GENESIS" '.app_state.prices.market_prices.[36].id' -v '301' dasel put -t int -f "$GENESIS" '.app_state.prices.market_prices.[36].exponent' -v '-12'