rubic-sdk
Version:
Simplify dApp creation
9 lines (8 loc) • 488 B
TypeScript
import { UniswapV3RouterConfiguration } from '../../../../common/uniswap-v3-abstract/models/uniswap-v3-router-configuration';
/**
* Most popular tokens in uni v3 to use in a route.
*/
declare const tokensSymbols: readonly ["eUSDT", "WFLR", "sFLR", "eETH", "eQNT", "HLN", "APS", "BNZ", "USDC.e", "USDT", "cUSDX"];
type TokenSymbol = (typeof tokensSymbols)[number];
export declare const UNI_SWAP_V3_ENOSYS_FLARE_ROUTER_CONFIGURATION: UniswapV3RouterConfiguration<TokenSymbol>;
export {};