(from: Address, to: Address, amount: bigint)
| 409 | const amount = USDC.toNative(amountERC20) |
| 410 | |
| 411 | const transferERC20 = (from: Address, to: Address, amount: bigint) => |
| 412 | ({ account: from, to: USDC.address, abi: usdc.abi, functionName: 'transfer', args: [to, amount] }) as const |
| 413 | |
| 414 | const res = await client.simulateBlocks({ |
| 415 | blocks: [ |
no outgoing calls
no test coverage detected