rubic-sdk
Version:
Simplify dApp creation
11 lines (10 loc) • 339 B
TypeScript
import BigNumber from 'bignumber.js';
import { BlockchainName } from "../../../../../../core/blockchain/models/blockchain-name";
interface EddySupportedChainLimit {
min: BigNumber;
max: BigNumber;
blockchain: BlockchainName;
address: string;
}
export declare const EDDY_BRIDGE_LIMITS: EddySupportedChainLimit[];
export {};