Skip to content

Commit ee9b695

Browse files
adairrrKayanski
andauthored
Update Union Testnet 9 Endpoints (#531)
* Add union-testnet-9 * Update packages/cw-orch-networks/src/networks/union.rs * Update packages/cw-orch-networks/src/networks/union.rs * Publish and changelog * Update Union Testnet 9 Endpoints * Update mod.rs --------- Co-authored-by: Kayanski <kowalski.kowalskin@gmail.com>
1 parent 3e7c3b8 commit ee9b695

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub mod union;
2020
pub mod xion;
2121

2222
#[allow(deprecated)]
23-
use crate::networks::union::UNION_TESTNET_8;
23+
use crate::networks::union::{UNION_TESTNET_8, UNION_TESTNET_9};
2424
pub use archway::{ARCHWAY_1, CONSTANTINE_3};
2525
pub use cosmos::COSMOS_HUB_TESTNET;
2626
pub use cw_orch_core::environment::{ChainInfo, ChainKind, NetworkInfo};
@@ -86,5 +86,6 @@ pub const SUPPORTED_NETWORKS: &[ChainInfo] = &[
8686
LOCAL_LANDSLIDE,
8787
#[allow(deprecated)]
8888
UNION_TESTNET_8,
89+
UNION_TESTNET_9,
8990
COSMOS_HUB_TESTNET,
9091
];

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ pub const UNION_TESTNET_9: ChainInfo = ChainInfo {
2626
chain_id: "union-testnet-9",
2727
gas_denom: "muno",
2828
gas_price: 0.000025,
29-
grpc_urls: &["https://grpc.union-testnet-9.cor.systems:443"],
29+
grpc_urls: &[
30+
"https://grpc.testnet-9.union.build:443",
31+
"https://grpc.union-testnet-9.cor.systems:443",
32+
],
3033
network_info: UNION_NETWORK,
3134
lcd_url: None,
3235
fcd_url: None,

0 commit comments

Comments
 (0)