(data: BytesLike, length: number)
| 181 | * (e.g. ``uint128``). |
| 182 | */ |
| 183 | export function zeroPadValue(data: BytesLike, length: number): string { |
| 184 | return zeroPad(data, length, true); |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Return the [[DataHexString]] of %%data%% padded on the **right** |