bounce-sdk-beta
Version:
Bounce finance quick building applications
11 lines (10 loc) • 422 B
TypeScript
import { SupportChain } from "../types";
type LogicContractType = 'BounceFixedSwap';
export declare const LogicContractAddr: Record<SupportChain, {
[key in LogicContractType]: string;
}>;
type TokenContracType = 'AUCTION' | "USDT" | 'USDC' | "DAI" | 'BUSD' | 'ARB' | 'ETH' | 'WBTC' | 'WETH' | 'UNI';
export declare const TokenContractAddr: Record<SupportChain, {
[key in TokenContracType]?: string;
}>;
export {};