Skip to content

Commit 91af78f

Browse files
committed
Merge remote-tracking branch 'origin/main' into nicolas/abs-569-create-a-deposit-helper-for-depositing-funds-on-the-account
2 parents 1eeceb8 + 26f10dc commit 91af78f

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22

33
## Unpublished
44

5+
- [networks] Replaced union testnet-8 by union-testnet-9
6+
57
### Breaking
68

7-
- [interchain-core] Modify the structure and the names of the IBC analysis and following structure.
9+
- [interchain-core] Modify the structure and the names of the IBC analysis and following structure.
10+
- [osmosis-test-tube] Update `osmosis-test-tube` to "v27.0.0"
811
- [daemon]: Move the bank_send method from the Wallet to the TxSender trait.
912

1013
### Added

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cw-multi-test = { package = "abstract-cw-multi-test", version = "2.0.2", feature
3838
cw20 = { version = "2.0.0" }
3939
cw20-base = { version = "2.0.0" }
4040

41-
osmosis-test-tube = { version = "26.0.0" }
41+
osmosis-test-tube = { version = "27.0.0" }
4242
neutron-test-tube = { version = "=5.0.1" }
4343

4444
anyhow = "1.0"

packages/cw-orch-networks/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch-networks"
3-
version = "0.24.6"
3+
version = "0.24.7"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
license = { workspace = true }

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

+13-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ pub const UNION_NETWORK: NetworkInfo = NetworkInfo {
77
coin_type: 118,
88
};
99

10-
pub const UNION_TESTNET: ChainInfo = UNION_TESTNET_8;
10+
pub const UNION_TESTNET: ChainInfo = UNION_TESTNET_9;
1111

12+
#[deprecated]
1213
pub const UNION_TESTNET_8: ChainInfo = ChainInfo {
1314
kind: ChainKind::Testnet,
1415
chain_id: "union-testnet-8",
@@ -20,4 +21,15 @@ pub const UNION_TESTNET_8: ChainInfo = ChainInfo {
2021
fcd_url: None,
2122
};
2223

24+
pub const UNION_TESTNET_9: ChainInfo = ChainInfo {
25+
kind: ChainKind::Testnet,
26+
chain_id: "union-testnet-9",
27+
gas_denom: "muno",
28+
gas_price: 0.000025,
29+
grpc_urls: &["https://grpc.union-testnet-9.cor.systems:443"],
30+
network_info: UNION_NETWORK,
31+
lcd_url: None,
32+
fcd_url: None,
33+
};
34+
2335
// ANCHOR_END: union

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub const XION_TESTNET_1: ChainInfo = ChainInfo {
1111
kind: ChainKind::Testnet,
1212
chain_id: "xion-testnet-1",
1313
gas_denom: "uxion",
14-
gas_price: 0.0,
14+
gas_price: 0.001,
1515
grpc_urls: &["http://xion-testnet-grpc.polkachu.com:22390"],
1616
network_info: XION_NETWORK,
1717
lcd_url: None,

packages/cw-orch-osmosis-test-tube/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch-osmosis-test-tube"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Cw-orch environment adapter for osmosis-test-tube"
55
authors.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)