(slotIndex: bigint, key: Bytes32)
| 148 | * The same as slotForUint256Map, but convert bytes32 to bigint first. |
| 149 | */ |
| 150 | export const slotForBytes32Map = (slotIndex: bigint, key: Bytes32): Bytes32 => |
| 151 | slotForUint256Map(slotIndex, fromHex(schemaBytes32.parse(key), 'bigint')) |
| 152 | |
| 153 | /** |
| 154 | * Emit a zod issue for any operator that collides with the contract's proxy admin. |
no test coverage detected