Get supported tokens and chains

circle-info

See all our supported chains and tokens at https://v2.app.squidrouter.comarrow-up-right

// access using squid.tokens
const fromToken = squid.tokens.find(
  (t) =>
    t.symbol.toLocaleLowerCase() === "USDC" && t.chainId === "1"
);

// access using squid.chains
const fromChain = squid.chains.find(
  (c) =>
    c.chainId === "1"
);

Last updated