Skip to content

Update chain config with latest juno image #237

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 5 additions & 13 deletions e2e/chains/juno_osmosis.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
"gas_adjustment": 1.3,
"number_vals": 1,
"number_node": 0,
"ibc_paths": [
"gaia-osmosis", "gaia-juno"
],
"ibc_paths": ["gaia-osmosis", "gaia-juno"],
"debugging": true,
"block_time": "1s",
"genesis": {
Expand Down Expand Up @@ -78,8 +76,8 @@
"binary": "junod",
"bech32_prefix": "juno",
"docker_image": {
"repository": "ghcr.io/strangelove-ventures/heighliner/juno",
"version": "v25.0.0"
"repository": "ghcr.io/cosmoscontracts/juno",
"version": "v28.0.0"
},
"gas_prices": "0%DENOM%",
"chain_type": "cosmos",
Expand All @@ -93,10 +91,6 @@
"debugging": true,
"genesis": {
"modify": [
{
"key": "consensus_params.block.max_gas",
"value": "100000000"
},
{
"key": "app_state.gov.params.voting_period",
"value": "15s"
Expand Down Expand Up @@ -155,9 +149,7 @@
"gas_adjustment": 2,
"number_vals": 1,
"number_node": 0,
"ibc_paths": [
"gaia-osmosis", "osmosis-juno"
],
"ibc_paths": ["gaia-osmosis", "osmosis-juno"],
"debugging": true,
"block_time": "1s",
"genesis": {
Expand Down Expand Up @@ -186,4 +178,4 @@
}
}
]
}
}
8 changes: 2 additions & 6 deletions e2e/chains/neutron_juno.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@
"binary": "junod",
"bech32_prefix": "juno",
"docker_image": {
"repository": "ghcr.io/strangelove-ventures/heighliner/juno",
"version": "v24.0.0"
"repository": "ghcr.io/cosmoscontracts/juno",
"version": "v28.0.0"
},
"gas_prices": "0%DENOM%",
"chain_type": "cosmos",
Expand All @@ -196,10 +196,6 @@
"debugging": true,
"genesis": {
"modify": [
{
"key": "consensus_params.block.max_gas",
"value": "100000000"
},
{
"key": "app_state.gov.params.voting_period",
"value": "15s"
Expand Down
20 changes: 5 additions & 15 deletions e2e/chains/neutron_osmosis.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
"gas_adjustment": 1.3,
"number_vals": 1,
"number_node": 0,
"ibc_paths": [
"gaia-osmosis"
],
"ibc_paths": ["gaia-osmosis"],
"debugging": true,
"block_time": "1s",
"genesis": {
Expand Down Expand Up @@ -89,9 +87,7 @@
"number_vals": 1,
"number_node": 0,
"ics_consumer_link": "localcosmos-1",
"ibc_paths": [
"neutron-osmosis"
],
"ibc_paths": ["neutron-osmosis"],
"debugging": true,
"block_time": "1s",
"genesis": {
Expand All @@ -106,15 +102,11 @@
},
{
"key": "app_state.ccvconsumer.params.reward_denoms",
"value": [
"untrn"
]
"value": ["untrn"]
},
{
"key": "app_state.ccvconsumer.params.provider_reward_denoms",
"value": [
"uatom"
]
"value": ["uatom"]
},
{
"key": "app_state.globalfee.params.minimum_gas_prices",
Expand Down Expand Up @@ -199,9 +191,7 @@
"gas_adjustment": 2,
"number_vals": 1,
"number_node": 0,
"ibc_paths": [
"gaia-osmosis", "neutron-osmosis"
],
"ibc_paths": ["gaia-osmosis", "neutron-osmosis"],
"debugging": true,
"block_time": "1s",
"genesis": {
Expand Down
3 changes: 3 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ disconnect-hyperlane-network:
run-example program:
RUST_LOG=debug cargo run --package valence-program-examples --bin {{program}}

run-e2e test:
RUST_LOG=debug cargo run --package valence-e2e --example {{test}}

precommit:
cargo fmt --all -- --check
cargo clippy --all-targets --verbose -- -D warnings
Expand Down
Loading