(uuid: string)
| 9 | const FORK_BLOCK_NAMESPACE = '6f1c0e2a-9b3d-5e47-8a1c-2d4f6b8e0c13' |
| 10 | |
| 11 | function uuidToBytes(uuid: string): Buffer { |
| 12 | return Buffer.from(uuid.replace(/-/g, ''), 'hex') |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Deterministic UUIDv5 (SHA-1) of `name` within `namespace`. The same inputs |