Skip to content

Commit 8cff430

Browse files
committed
Update injective network gas price
1 parent 13c11e4 commit 8cff430

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

cw-orch/src/daemon/networks/injective.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,21 @@ pub const INJECTIVE_NETWORK: NetworkInfo = NetworkInfo {
66
coin_type: 60u32,
77
};
88

9+
/// <https://docs.injective.network/develop/public-endpoints/#mainnet>
10+
/// <https://www.mintscan.io/injective/parameters>
11+
/// <https://status.injective.network/>
912
pub const INJECTIVE_1: ChainInfo = ChainInfo {
1013
kind: ChainKind::Mainnet,
1114
chain_id: "injective-1",
1215
gas_denom: "inj",
13-
gas_price: 0.025,
16+
gas_price: 500_000_000.0,
1417
grpc_urls: &["https://k8s.global.mainnet.chain.grpc.injective.network:443"],
1518
network_info: INJECTIVE_NETWORK,
1619
lcd_url: None,
1720
fcd_url: None,
1821
};
1922

20-
/// <https://docs.injective.network/develop/public-endpoints>
23+
/// <https://docs.injective.network/develop/public-endpoints/#testnet>
2124
/// <https://testnet.status.injective.network/>
2225
pub const INJECTIVE_888: ChainInfo = ChainInfo {
2326
kind: ChainKind::Testnet,

0 commit comments

Comments
 (0)