(addr: string)
| 284 | } |
| 285 | |
| 286 | export async function isDeployed (addr: string): Promise<boolean> { |
| 287 | const code = await ethers.provider.getCode(addr) |
| 288 | return code.length > 2 |
| 289 | } |
| 290 | |
| 291 | // Deploys an implementation and a proxy pointing to this implementation |
| 292 | export async function createAccount ( |