@hashgraph/hedera-wallet-connect
Version:
A library to facilitate integrating Hedera with WalletConnect
12 lines (11 loc) • 373 B
TypeScript
/**
* Enum representing different Hedera network chain IDs.
*
* @see {@link https://github.com/hashgraph/hedera-improvement-proposal/blob/main/HIP/hip-820.md#specification | HIP-820 Specification}
*/
export declare enum HederaChainId {
Mainnet = "hedera:mainnet",
Testnet = "hedera:testnet",
Previewnet = "hedera:previewnet",
Devnet = "hedera:devnet"
}