Skip to content

Commit

Permalink
Update network version 18.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
niccoloraspa committed Aug 26, 2023
1 parent 83b07b8 commit 6ec12f4
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions osmosis-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,16 +130,12 @@ def __init__(self, chain_id, version, genesis_url, binary_url, peers, rpc_node,

TESTNET = Network(
chain_id = "osmo-test-5",
version = "v16.0.0-rc2-testnet",
version = "v18.0.0",
genesis_url = "https://osmosis.fra1.digitaloceanspaces.com/osmo-test-5/genesis.json",
binary_url = {
"linux": {
"amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.0.0-rc2/osmosisd-16.0.0-rc2-testnet-linux-amd64",
"arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.0.0-rc2/osmosisd-16.0.0-rc2-testnet-linux-arm64"
},
"darwin": {
"amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.0.0-rc2/osmosisd-16.0.0-rc2-testnet-darwin-amd64",
"arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.0.0-rc2/osmosisd-16.0.0-rc2-testnet-darwin-arm64"
"amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-amd64",
"arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-arm64"
},
},
peers = [
Expand All @@ -156,17 +152,17 @@ def __init__(self, chain_id, version, genesis_url, binary_url, peers, rpc_node,

MAINNET = Network(
chain_id = "osmosis-1",
version = "v16.1.1",
version = "v18.0.0",
genesis_url = "https://osmosis.fra1.digitaloceanspaces.com/osmosis-1/genesis.json",
binary_url = {
"linux": {
"amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-linux-amd64",
"arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-linux-arm64"
},
"darwin": {
"amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-darwin-amd64",
"arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-darwin-arm64"
"amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-amd64",
"arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-arm64"
},
# "darwin": {
# "amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-darwin-amd64",
# "arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-darwin-arm64"
# },
},
peers = None,
rpc_node = "https://rpc.osmosis.zone:443",
Expand Down

0 comments on commit 6ec12f4

Please sign in to comment.