-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add sei * update grpc * add local sei * fix gas * fix sei * update gas * fmt * run cargo fmt --------- Co-authored-by: cyberhoward <[email protected]>
- Loading branch information
1 parent
684a69b
commit 9a704e2
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
use crate::daemon::networks::{ChainInfo, ChainKind, NetworkInfo}; | ||
|
||
pub const SEI_NETWORK: NetworkInfo = NetworkInfo { | ||
id: "sei", | ||
pub_address_prefix: "sei", | ||
coin_type: 118u32, | ||
}; | ||
|
||
pub const LOCAL_SEI: ChainInfo = ChainInfo { | ||
kind: ChainKind::Local, | ||
chain_id: "sei-chain", | ||
gas_denom: "usei", | ||
gas_price: 0.1, | ||
grpc_urls: &["http://localhost:9090"], | ||
network_info: SEI_NETWORK, | ||
lcd_url: None, | ||
fcd_url: None, | ||
}; | ||
|
||
pub const SEI_DEVNET_3: ChainInfo = ChainInfo { | ||
kind: ChainKind::Testnet, | ||
chain_id: "sei-devnet-3", | ||
gas_denom: "usei", | ||
gas_price: 0.1, | ||
grpc_urls: &["http://sei_devnet-testnet-grpc.polkachu.com:11990"], | ||
network_info: SEI_NETWORK, | ||
lcd_url: None, | ||
fcd_url: None, | ||
}; | ||
|
||
pub const ATLANTIC_2: ChainInfo = ChainInfo { | ||
kind: ChainKind::Testnet, | ||
chain_id: "atlantic-2", | ||
gas_denom: "usei", | ||
gas_price: 0.1, | ||
grpc_urls: &["http://sei-testnet-grpc.polkachu.com:11990"], | ||
network_info: SEI_NETWORK, | ||
lcd_url: None, | ||
fcd_url: None, | ||
}; |