Skip to content

Commit

Permalink
Update Union Testnet 9 Endpoints (#531)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
adairrr and Kayanski authored Jan 27, 2025
1 parent 3e7c3b8 commit ee9b695
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/cw-orch-networks/src/networks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub mod union;
pub mod xion;

#[allow(deprecated)]
use crate::networks::union::UNION_TESTNET_8;
use crate::networks::union::{UNION_TESTNET_8, UNION_TESTNET_9};
pub use archway::{ARCHWAY_1, CONSTANTINE_3};
pub use cosmos::COSMOS_HUB_TESTNET;
pub use cw_orch_core::environment::{ChainInfo, ChainKind, NetworkInfo};
Expand Down Expand Up @@ -86,5 +86,6 @@ pub const SUPPORTED_NETWORKS: &[ChainInfo] = &[
LOCAL_LANDSLIDE,
#[allow(deprecated)]
UNION_TESTNET_8,
UNION_TESTNET_9,
COSMOS_HUB_TESTNET,
];
5 changes: 4 additions & 1 deletion packages/cw-orch-networks/src/networks/union.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ pub const UNION_TESTNET_9: ChainInfo = ChainInfo {
chain_id: "union-testnet-9",
gas_denom: "muno",
gas_price: 0.000025,
grpc_urls: &["https://grpc.union-testnet-9.cor.systems:443"],
grpc_urls: &[
"https://grpc.testnet-9.union.build:443",
"https://grpc.union-testnet-9.cor.systems:443",
],
network_info: UNION_NETWORK,
lcd_url: None,
fcd_url: None,
Expand Down

0 comments on commit ee9b695

Please sign in to comment.