Skip to content

Commit

Permalink
update pregenesis file for testnet #4 (#90)
Browse files Browse the repository at this point in the history
* update pregenesis file

* update validate binary

* update genesis time to a fixed time in the past

* edit signed_blocks_window, add denom_metadata
  • Loading branch information
teddyding authored Oct 16, 2023
1 parent 811d55a commit 314d78e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ validate-dydx-testnet-4-gentx:
docker build --platform linux/amd64 --tag public-testnet-validate $(CURDIR)
docker run --platform linux/amd64 \
-e VALIDATE_GENESIS_DIR_PATH=./dydx-testnet-4 \
-e VALIDATE_GENESIS_TAR_URL='https://github.com/dydxprotocol/v4-chain/releases/download/testnet4-validate/dydxprotocold-testnet4-validate-linux-amd64.tar.gz' \
-e VALIDATE_GENESIS_TAR_URL='https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv0.4.0/dydxprotocold-v0.4.0-linux-amd64.tar.gz' \
-e VALIDATE_GENESIS_STAKE_TOKEN=adv4tnt \
-e GENESIS_FILE_NAME=pregenesis.json \
-e ADD_GENTXS=true \
Expand All @@ -13,7 +13,7 @@ validate-dydx-testnet-4-final-genesis:
docker build --platform linux/amd64 --tag public-testnet-validate $(CURDIR)
docker run --platform linux/amd64 \
-e VALIDATE_GENESIS_DIR_PATH=./dydx-testnet-4 \
-e VALIDATE_GENESIS_TAR_URL='https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv0.3.6/dydxprotocold-v0.3.6-linux-amd64.tar.gz' \
-e VALIDATE_GENESIS_TAR_URL='https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv0.4.0/dydxprotocold-v0.4.0-linux-amd64.tar.gz' \
-e VALIDATE_GENESIS_STAKE_TOKEN=adv4tnt \
-e GENESIS_FILE_NAME=genesis.json \
-e ADD_GENTXS=false \
Expand Down
44 changes: 32 additions & 12 deletions dydx-testnet-4/pregenesis.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"genesis_time": "2023-10-11T04:19:58.475018Z",
"genesis_time": "2023-01-01T00:00:00Z",
"chain_id": "dydx-testnet-4",
"initial_height": "1",
"consensus_params": {
"block": {
"max_bytes": "22020096",
"max_bytes": "4194304",
"max_gas": "-1"
},
"evidence": {
Expand Down Expand Up @@ -109,7 +109,7 @@
"coins": [
{
"denom": "adv4tnt",
"amount": "1000000000000000000000000000"
"amount": "50000000000000000000000000"
}
]
},
Expand All @@ -118,7 +118,7 @@
"coins": [
{
"denom": "adv4tnt",
"amount": "1000000000000000000000000000"
"amount": "50000000000000000000000000"
}
]
},
Expand All @@ -127,7 +127,7 @@
"coins": [
{
"denom": "adv4tnt",
"amount": "1000000000000000000000000000"
"amount": "50000000000000000000000000"
}
]
},
Expand Down Expand Up @@ -169,12 +169,33 @@
}
],
"supply": [],
"denom_metadata": [],
"denom_metadata": [
{
"description": "The native token of the network",
"denom_units": [
{
"denom": "adv4tnt",
"exponent": 0,
"aliases": []
},
{
"denom": "dv4tnt",
"exponent": 18,
"aliases": []
}
],
"base": "adv4tnt",
"display": "dv4tnt",
"name": "dYdX V4 Testnet Token",
"symbol": "dv4tnt",
"uri": "",
"uri_hash": ""
}
],
"send_enabled": []
},
"blocktime": {
"params": {
"clock_drift_grace_period_duration": "5s",
"durations": [
"300s",
"1800s"
Expand All @@ -188,7 +209,7 @@
},
"event_params": {
"denom": "adv4tnt",
"eth_address": "0xcca9D5f0a3c58b6f02BD0985fC7F9420EA24C1f0",
"eth_address": "0xf75012c350e4ad55be2048bd67ce6e03b20de82d",
"eth_chain_id": 11155111
},
"propose_params": {
Expand Down Expand Up @@ -586,7 +607,7 @@
"usd_tnc_required": "10000000000"
},
{
"limit": 200,
"limit": 1000,
"usd_tnc_required": "100000000000"
}
],
Expand Down Expand Up @@ -622,7 +643,6 @@
"bankruptcy_adjustment_ppm": 1000000,
"spread_to_maintenance_margin_ratio_ppm": 1500000
},
"max_insurance_fund_quantums_for_deleveraging": 100000000000,
"max_liquidation_fee_ppm": 15000,
"position_block_limits": {
"max_position_portion_liquidated_ppm": 100000,
Expand Down Expand Up @@ -727,7 +747,7 @@
}
}
],
"num_messages": 1
"next_delayed_message_id": 1
},
"distribution": {
"delegator_starting_infos": [],
Expand Down Expand Up @@ -1957,7 +1977,7 @@
"params": {
"downtime_jail_duration": "60s",
"min_signed_per_window": "0.2",
"signed_blocks_window": "12000",
"signed_blocks_window": "12288",
"slash_fraction_double_sign": "0.0",
"slash_fraction_downtime": "0.0"
},
Expand Down

0 comments on commit 314d78e

Please sign in to comment.