-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into stabilization/cw-orch…
…-core
- Loading branch information
Showing
6 changed files
with
60 additions
and
2 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
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,20 @@ | ||
# XION | ||
|
||
XION empowers developers and brands to create frictionless Web3 experiences, with a Generalized Abstraction layer that removes technical barriers for all users. | ||
|
||
|
||
|
||
[Visit XION's Website](https://xion.burnt.com/) | ||
|
||
```rust,ignore | ||
{{#include ../../../packages/cw-orch-networks/src/networks/xion.rs:xion}} | ||
``` | ||
|
||
## Usage | ||
|
||
See how to setup your main function in the [main function](../contracts/scripting.md#main-function) section. Update the network passed into the `Daemon` builder to be `networks::XION_TESTNET_1`. | ||
|
||
## References | ||
|
||
- [XION Documentation](https://docs.burnt.com/xion) | ||
- [XION Discord](https://discord.com/invite/burnt) |
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
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,21 @@ | ||
use cw_orch_core::environment::{ChainInfo, ChainKind, NetworkInfo}; | ||
|
||
// ANCHOR: xion | ||
pub const XION_NETWORK: NetworkInfo = NetworkInfo { | ||
id: "xion", | ||
Check failure on line 5 in packages/cw-orch-networks/src/networks/xion.rs GitHub Actions / clippystruct `cw_orch_core::environment::chain_info::NetworkInfoBase<&'static str>` has no field named `id`
|
||
pub_address_prefix: "xion", | ||
coin_type: 118u32, | ||
}; | ||
|
||
pub const XION_TESTNET_1: ChainInfo = ChainInfo { | ||
kind: ChainKind::Testnet, | ||
chain_id: "xion-testnet-1", | ||
gas_denom: "uxion", | ||
gas_price: 0.025, | ||
grpc_urls: &["http://xion-testnet-grpc.polkachu.com:22390"], | ||
network_info: XION_NETWORK, | ||
lcd_url: None, | ||
fcd_url: None, | ||
}; | ||
|
||
// ANCHOR_END: xion |