rubic-sdk
Version:
Simplify dApp creation
11 lines (10 loc) • 593 B
TypeScript
import { BLOCKCHAIN_NAME } from "../../../../../../core/blockchain/models/blockchain-name";
import { ArchonBridgeSupportedBlockchain } from "./archon-bridge-supported-blockchain";
type EonContract = {
wrapRouter: string;
originRouter: string;
rubicRouter: string;
};
export declare const archonBridgeOutContractAddress: Record<Exclude<ArchonBridgeSupportedBlockchain, typeof BLOCKCHAIN_NAME.HORIZEN_EON>, EonContract>;
export declare const archonBridgeInContractAddress: Record<Exclude<ArchonBridgeSupportedBlockchain, typeof BLOCKCHAIN_NAME.HORIZEN_EON>, EonContract>;
export {};