import type { Address } from "viem"; export type TokenMigration = "pt"; export interface TokenMigrationConfigPayload { chainId: number; network: string; type: TokenMigration; source: Address; expired: number; target: Address; }