UNPKG

@polycity/sdk

Version:

🛠 An SDK for building applications on top of PolyCityDex Protocol.

10 lines (9 loc) • 297 B
import { Fee } from '../enums'; import { Token } from '../entities'; export declare const computeConstantProductPoolAddress: ({ factoryAddress, tokenA, tokenB, fee, twap }: { factoryAddress: string; tokenA: Token; tokenB: Token; fee: Fee; twap: boolean; }) => string;