(to: Address, amount: bigint)
| 72 | const encodeUSDCTransfer = (to: Address, amount: bigint) => |
| 73 | encodeFunctionData({ abi: USDC.abi, functionName: 'transfer', args: [to, amount] }) |
| 74 | const encodeUSDCMint = (to: Address, amount: bigint) => |
| 75 | encodeFunctionData({ abi: USDC.abi, functionName: 'mint', args: [to, amount] }) |
| 76 | |
| 77 | const clients = async () => { |
| 78 | const { client, ...rest } = await getClients() |
no outgoing calls
no test coverage detected