Skip to content

Commit 93c16cf

Browse files
committed
union deployment ica
1 parent 04f0363 commit 93c16cf

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

interchain/scripts/src/bin/deploy_ica.rs

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fn full_deploy(mut networks: Vec<ChainInfoOwned>) -> anyhow::Result<()> {
3434

3535
// Version check
3636
// TODO: automate this
37-
let evm_note_addr = "xion14fc3m9zaxt23jph5h3rxv9wps260jwhjqkkqye6k37w0yzyut0aqeh8t8c";
37+
let evm_note_addr = "union1uz8gd9z30thd8d8vxrch5m7s6ryeamfuxmh759tq53ww76lzj8dqkp97q5";
3838
let expected_evm_note_version = "0.4.0";
3939
let evm_note_cw2 = chain
4040
.wasm_querier()
@@ -70,17 +70,21 @@ fn full_deploy(mut networks: Vec<ChainInfoOwned>) -> anyhow::Result<()> {
7070
// network_ids: Vec<String>,
7171
// }
7272

73-
pub const XION_TESTNET_2: ChainInfo = ChainInfo {
73+
pub const UNION_NET: NetworkInfo = NetworkInfo {
74+
chain_name: "union",
75+
pub_address_prefix: "union",
76+
coin_type: 118,
77+
};
78+
pub const UNION_TESTNET_10: ChainInfo = ChainInfo {
7479
kind: ChainKind::Testnet,
75-
chain_id: "xion-testnet-2",
76-
gas_denom: "uxion",
77-
gas_price: 0.001,
78-
grpc_urls: &["https://grpc.xion-testnet-2.burnt.com:443"],
79-
network_info: networks::xion::XION_NETWORK,
80+
chain_id: "union-testnet-10",
81+
gas_denom: "muno",
82+
gas_price: 1.0,
83+
grpc_urls: &["https://grpc.rpc-node.union-testnet-10.union.build:443"],
84+
network_info: UNION_NET,
8085
lcd_url: None,
8186
fcd_url: None,
8287
};
83-
8488
fn main() {
8589
dotenv().ok();
8690
env_logger::init();
@@ -89,7 +93,7 @@ fn main() {
8993

9094
// let args = Arguments::parse();
9195

92-
let networks = vec![XION_TESTNET_2.into()];
96+
let networks = vec![UNION_TESTNET_10.into()];
9397

9498
if let Err(ref err) = full_deploy(networks) {
9599
log::error!("{}", err);

interchain/scripts/state.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"abstract:evm-note": 79,
7070
"abstract:ibc-client": 74,
7171
"abstract:ibc-host": 75,
72-
"abstract:ica-client": 80,
72+
"abstract:ica-client": 105,
7373
"abstract:module-factory": 72,
7474
"abstract:registry": 71,
7575
"cw:blob": 69,
@@ -81,7 +81,7 @@
8181
"abstract:evm-note": "union1uz8gd9z30thd8d8vxrch5m7s6ryeamfuxmh759tq53ww76lzj8dqkp97q5",
8282
"abstract:ibc-client": "union1pplxw9myj7tskvku0h2r5jzwwyyusseavzcndr7cqwen78dgku5q3gm2qr",
8383
"abstract:ibc-host": "union1v4zdknr2js7cngh4ut67uutdexcxlv2dnnuhp926c08m50aukqzs2f8eyx",
84-
"abstract:ica-client": "union1lt5dwzyqz3da08v8nsjx5a8qdlrdlqvgrd3svs55hzzcdgh43zyqaaejh7",
84+
"abstract:ica-client": "union1xq78p9vedrfm8mrme40ch35j6yxtp0kqfzjh99mn2nswkz66dxhsct3vkw",
8585
"abstract:module-factory": "union1vnj802lyyupfaez73w7axfs3xveraxen370vhcnumaufj29r5rxqf4t8dl",
8686
"abstract:registry": "union1cag6cwygef6fuddgq2l44py7crpscufrza4mt3rum2axueemenmq6jqp05",
8787
"test:ibc-callbacks": "union1vdrmaamhznn4ejvjwc9g9fx6cruaj36naaqtm4s40xeen07lgjsqnpmc0k",

0 commit comments

Comments
 (0)