()
| 37 | }; |
| 38 | |
| 39 | export const getSafeModuleSetup = async () => { |
| 40 | const safeModuleSetup = await hre.deployments.get("SafeModuleSetup"); |
| 41 | return ethers.getContractAt("SafeModuleSetup", safeModuleSetup.address); |
| 42 | }; |
| 43 | |
| 44 | export const getSafeEIP7702ProxyFactory = async () => { |
| 45 | const safeEIP7702ProxyFactory = await hre.deployments.get("SafeEIP7702ProxyFactory"); |
no outgoing calls
no test coverage detected