Skip to content

Commit

Permalink
Merge pull request #12 from sei-protocol/feature/gas-chain-info-update
Browse files Browse the repository at this point in the history
Update gas configs and chain_info
  • Loading branch information
codebycarson authored Aug 2, 2023
2 parents 6894db8 + 82326ea commit ecc3024
Show file tree
Hide file tree
Showing 9 changed files with 62 additions and 7 deletions.
22 changes: 22 additions & 0 deletions assetlist.json
Original file line number Diff line number Diff line change
Expand Up @@ -541,5 +541,27 @@
"png": "https://github.com/cosmos/chain-registry/blob/master/testnets/seitestnet2/images/sei.png"
}
}
],
"arctic-1": [
{
"name": "Sei",
"description": "The native token of Sei",
"symbol": "SEI",
"base": "usei",
"display": "sei",
"denom_units": [
{
"denom": "usei",
"exponent": 0
},
{
"denom": "sei",
"exponent": 6
}
],
"images": {
"png": "https://github.com/cosmos/chain-registry/blob/master/testnets/seitestnet2/images/sei.png"
}
}
]
}
6 changes: 3 additions & 3 deletions chain_info.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"chain_name": "Sei Atlantic 2",
"network_type": "testnet",
"chain_id": "atlantic-2",
"chain_name": "Sei",
"network_type": "mainnet",
"chain_id": "pacific-1",
"daemon_name": "seid",
"bech32_prefix": "sei",
"key_algos": ["secp256k1"],
Expand Down
7 changes: 7 additions & 0 deletions chains.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@
}
]
},
"arctic-1": {
"chainId": "arctic-1",
"network_type": "devnet",
"rpc": [],
"rest": [],
"explorers": []
},
"sei-devnet-3": {
"chainId": "sei-devnet-3",
"network_type": "devnet",
Expand Down
17 changes: 14 additions & 3 deletions gas.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"pacific-1": {
"denom": "usei",
"min_gas_price": 0.01,
"min_gas_price": 0.1,
"module_adjustments": {
"dex": {
"sudo_gas_price": 0.01,
Expand All @@ -12,7 +12,18 @@
},
"atlantic-2": {
"denom": "usei",
"min_gas_price": 0.01,
"min_gas_price": 0.1,
"module_adjustments": {
"dex": {
"sudo_gas_price": 0.01,
"order_placement": 55000,
"order_cancellation": 55000
}
}
},
"arctic-1": {
"denom": "usei",
"min_gas_price": 0.1,
"module_adjustments": {
"dex": {
"sudo_gas_price": 0.01,
Expand All @@ -23,7 +34,7 @@
},
"sei-devnet-3": {
"denom": "usei",
"min_gas_price": 0.01,
"min_gas_price": 0.1,
"module_adjustments": {
"dex": {
"sudo_gas_price": 0.01,
Expand Down
3 changes: 2 additions & 1 deletion ibc_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,6 @@
"port_id": "wasm.sei1nna9mzp274djrgzhzkac2gvm3j27l402s4xzr08chq57pjsupqnqaj0d5s",
"client_id": "07-tendermint-55"
}
]
],
"arctic-1": []
}
4 changes: 4 additions & 0 deletions schema/assetlist.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
"type": "array",
"items": { "$ref": "#/definitions/token" }
},
"arctic-1": {
"type": "array",
"items": { "$ref": "#/definitions/token" }
},
"sei-devnet-3": {
"type": "array",
"items": { "$ref": "#/definitions/token" }
Expand Down
3 changes: 3 additions & 0 deletions schema/chains.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"atlantic-2": {
"$ref": "#/definitions/chain"
},
"arctic-1": {
"$ref": "#/definitions/chain"
},
"sei-devnet-3": {
"$ref": "#/definitions/chain"
}
Expand Down
3 changes: 3 additions & 0 deletions schema/gas.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
},
"sei-devnet-3": {
"$ref": "#/definitions/chain"
},
"arctic-1": {
"$ref": "#/definitions/chain"
}
},
"additionalProperties": false,
Expand Down
4 changes: 4 additions & 0 deletions schema/ibc_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"atlantic-2": {
"type": "array",
"items": { "$ref": "#/definitions/channel" }
},
"arctic-1": {
"type": "array",
"items": { "$ref": "#/definitions/channel" }
}
},
"additionalProperties": false,
Expand Down

0 comments on commit ecc3024

Please sign in to comment.