()
| 163 | const getCallIndexOffset = () => maybeUpgrade().length |
| 164 | |
| 165 | const clients = async () => { |
| 166 | const client = await hre.viem.getPublicClient({ |
| 167 | chain: getChain(hre), |
| 168 | }) |
| 169 | const usdc = USDC.attach(client) |
| 170 | const randomWallet = privateKeyToAccount(generatePrivateKey()) |
| 171 | const extraAbi = parseAbi([ |
| 172 | 'function upgradeTo(address newImplementation)', |
| 173 | 'function initializeV2(string calldata newName)', |
| 174 | 'function initializeV2_1(address lostAndFound)', |
| 175 | 'function initializeV2_2(address[] accountsToBlacklist, string calldata newSymbol)', |
| 176 | ]) |
| 177 | |
| 178 | return { client, usdc, newAddress: randomWallet.address, extraAbi } |
| 179 | } |
| 180 | |
| 181 | describe('mint', () => { |
| 182 | it('add minter by masterMinter', async () => { |
no test coverage detected