@ixily/activ
Version:
Alpha Capture Trade Idea Verification. Blockchain ownership proven trade ideas and strategies.
15 lines (14 loc) • 542 B
TypeScript
import { CHAIN_IDS_OPTS, IContract, ISupportedBlockchainNetwork } from '../..';
export interface IBlockchainNetwork {
name: string;
contracts: {
[key: string]: IContract;
};
errorKeywords?: {
tooFewGasUnits?: string[];
tooMuchGasUnits?: string[];
};
}
export type IWalletNetworkChain = keyof typeof CHAIN_IDS_OPTS;
export declare const WALLET_NETWORK_CHAIN_IDS: (index: ISupportedBlockchainNetwork) => number;
export declare const WALLET_NETWORK_CHAIN_NAME: (index: number) => IWalletNetworkChain;