wallet_adapter_common/
chains.rs

1/// Used as a helper struct to contain all the chains supported by a wallet
2/// as defined by the wallet standard
3#[derive(Debug, Default, PartialEq, Eq, PartialOrd, Ord, Clone, Hash)]
4pub struct ChainSupport {
5    /// Main Net cluster
6    pub mainnet: bool,
7    /// Dev Net cluster
8    pub devnet: bool,
9    /// Test Net cluster
10    pub testnet: bool,
11    /// Local Net cluster
12    pub localnet: bool,
13}