(slotIndex: bigint, address: Address)
| 142 | * The same as slotForUint256Map, but convert address to bigint first. |
| 143 | */ |
| 144 | export const slotForAddressMap = (slotIndex: bigint, address: Address): Bytes32 => |
| 145 | slotForUint256Map(slotIndex, addressToBigInt(address)) |
| 146 | |
| 147 | /** |
| 148 | * The same as slotForUint256Map, but convert bytes32 to bigint first. |
no test coverage detected