Skip to content

Commit 02fadd9

Browse files
authored
Merge pull request #175 from AbstractSDK/update/injectiveNetwork
Update injective network gas price
2 parents fb72780 + 8cff430 commit 02fadd9

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
@@ -7,18 +7,21 @@ pub const INJECTIVE_NETWORK: NetworkInfo = NetworkInfo {
77
};
88
// ANCHOR: injective
99

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

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

0 commit comments

Comments
 (0)