(
client: PublicClient,
account: Address,
key: string
)
| 6 | |
| 7 | // Function to read module storage slot |
| 8 | export const readModuleStorageSlot = async ( |
| 9 | client: PublicClient, |
| 10 | account: Address, |
| 11 | key: string |
| 12 | ): Promise<Hex> => { |
| 13 | const moduleStorageSlot = 1n; |
| 14 | return await readMappingStorage(client, account, moduleStorageSlot, key); |
| 15 | }; |
| 16 | |
| 17 | // Function to read owner storage slot |
| 18 | export const readOwnerStorageSlot = async ( |
nothing calls this directly
no test coverage detected