(address: Address)
| 109 | |
| 110 | export const addressToBigInt = (address: Address): bigint => fromHex(address, 'bigint') |
| 111 | export const addressToBytes32 = (address: Address): Bytes32 => toHex(addressToBigInt(address), { size: 32 }) |
| 112 | |
| 113 | /** |
| 114 | * Convert a value to a bytes32 value. |