rubic-sdk
Version:
Simplify dApp creation
5 lines (4 loc) • 420 B
TypeScript
import { BLOCKCHAIN_NAME } from "../../../../../../core/blockchain/models/blockchain-name";
export declare const archonBridgeSupportedBlockchains: readonly ["ETH", "AVALANCHE", "HORIZEN_EON"];
export type ArchonBridgeSupportedBlockchain = (typeof archonBridgeSupportedBlockchains)[number];
export type ArchonBridgeNonEonSupportedBlockchain = Exclude<ArchonBridgeSupportedBlockchain, typeof BLOCKCHAIN_NAME.HORIZEN_EON>;