Type alias InferSymbols<TTokens>

InferSymbols<TTokens>: TTokens extends undefined
    ? "USDC" | "WETH"
    : NonNullable<TTokens>[number]["symbol"]

Infers the symbols from the provided token array.

Type Parameters

Generated using TypeDoc