import { BytesLike } from 'ethers'; import { xapps } from 'optics-ts-interface'; import wellKnown from './wellKnown'; import testnetWellKnown from './testnetWellKnown'; export interface TokenIdentifier { domain: string | number; id: BytesLike; } export type ResolvedTokenInfo = { // The canonical domain domain: number; // The canonical identifier id: BytesLike; // The contract on each chain tokens: Map; }; export const tokens = wellKnown; export const testnetTokens = testnetWellKnown;