import type { Address, Hex } from "viem"; export type TokenChanged = { address: Address; amount: Hex; chainId: number; }; export type Token = { address: Address; amount: bigint; chainId: number; }; //# sourceMappingURL=simulation.d.ts.map