()
| 75 | encodeFunctionData({ abi: USDC.abi, functionName: 'mint', args: [to, amount] }) |
| 76 | |
| 77 | const clients = async () => { |
| 78 | const { client, ...rest } = await getClients() |
| 79 | const usdc = USDC.attach(client).read |
| 80 | const totalSupply = async () => NativeCoinAuthority.totalSupply(client) |
| 81 | return { ...rest, client, totalSupply, usdc } |
| 82 | } |
| 83 | |
| 84 | before(async () => { |
| 85 | const { client, admin } = await clients() |
no test coverage detected