Skip to content

Commit a07ba73

Browse files
committed
Added xion mainnet
1 parent 58cc195 commit a07ba73

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

packages/cw-orch-networks/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = { workspace = true }
88
name = "cw-orch-networks"
99
readme = "README.md"
1010
repository = { workspace = true }
11-
version = "0.24.7"
11+
version = "0.24.8"
1212

1313
exclude = [".env"]
1414

packages/cw-orch-networks/src/networks/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub use osmosis::{LOCAL_OSMO, OSMOSIS_1, OSMO_5};
3636
pub use rollkit::{LOCAL_ROLLKIT, ROLLKIT_TESTNET};
3737
pub use sei::{ATLANTIC_2, LOCAL_SEI, PACIFIC_1, SEI_DEVNET_3};
3838
pub use terra::{LOCAL_TERRA, PHOENIX_1, PISCO_1};
39-
pub use xion::XION_TESTNET_1;
39+
pub use xion::{XION_MAINNET_1, XION_TESTNET_1};
4040

4141
/// A helper function to retrieve a [`ChainInfo`] struct for a given chain-id.
4242
///
@@ -81,6 +81,7 @@ pub const SUPPORTED_NETWORKS: &[ChainInfo] = &[
8181
ATLANTIC_2,
8282
PACIFIC_1,
8383
XION_TESTNET_1,
84+
XION_MAINNET_1,
8485
ROLLKIT_TESTNET,
8586
LOCAL_LANDSLIDE,
8687
#[allow(deprecated)]

packages/cw-orch-networks/src/networks/xion.rs

+11
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,15 @@ pub const XION_TESTNET_1: ChainInfo = ChainInfo {
1818
fcd_url: None,
1919
};
2020

21+
pub const XION_MAINNET_1: ChainInfo = ChainInfo {
22+
kind: ChainKind::Mainnet,
23+
chain_id: "xion-mainnet-1",
24+
gas_denom: "uxion",
25+
gas_price: 0.001,
26+
grpc_urls: &["http://grpc.xion-mainnet-1.burnt.com:443"],
27+
network_info: XION_NETWORK,
28+
lcd_url: None,
29+
fcd_url: None,
30+
};
31+
2132
// ANCHOR_END: xion

0 commit comments

Comments
 (0)