Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 6311719x 6311719x 3484973x 3449961x 3449961x 2826746x 6311719x 2826742x 2826742x 2826742x 157502854x 157502854x 157502854x 2826742x 2826742x 4x 6311719x 6311719x 1x 1x 1x 1x 1x 1x 1x 1x 1x 6066535x 6066535x 1x 1x 1x 1x 1x 1x 1x 1x 1x 245184x 245184x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 635200x 3737x 3737x 631463x 635200x 635200x 631443x 631443x 631443x 1x 1x 1x 1x 1x 1x 3374x 3374x 1x 1x 1x 1x 1x 1x 1x 2272025x 2272025x 2272025x 2272025x 100410071x 100410071x 100410071x 2272025x 2272025x 1x 1x 1x 1x 1x 1x 309403x 309403x 1x 1x 1x 1x 1x 120988x 2400x 2400x 1x 1x 1x 1x 1x 1x 1x 1x 48252x 48252x 48252x 48252x 1x 1x 1x 1x 1x 1x 1x 112201x 112201x 112201x 112201x 112201x 112201x 112201x 112201x 112201x 112201x 112201x 110436x 112201x 1765x 1765x 112201x 112201x 112201x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 110436x 110436x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1765x 1765x | /** * Some data helpers. * * * @_subsection api/utils:Data Helpers [about-data] */ import { assert, assertArgument } from "./errors.js"; /** * A [[HexString]] whose length is even, which ensures it is a valid * representation of binary data. */ export type DataHexString = string; /** * A string which is prefixed with ``0x`` and followed by any number * of case-agnostic hexadecimal characters. * * It must match the regular expression ``/0x[0-9A-Fa-f]*\/``. */ export type HexString = string; /** * An object that can be used to represent binary data. */ export type BytesLike = DataHexString | Uint8Array; function _getBytes(value: BytesLike, name?: string, copy?: boolean): Uint8Array { if (value instanceof Uint8Array) { if (copy) { return new Uint8Array(value); } return value; } if (typeof(value) === "string" && value.match(/^0x(?:[0-9a-f][0-9a-f])*$/i)) { const result = new Uint8Array((value.length - 2) / 2); let offset = 2; for (let i = 0; i < result.length; i++) { result[i] = parseInt(value.substring(offset, offset + 2), 16); offset += 2; } return result; } assertArgument(false, "invalid BytesLike value", name || "value", value); } /** * Get a typed Uint8Array for %%value%%. If already a Uint8Array * the original %%value%% is returned; if a copy is required use * [[getBytesCopy]]. * * @see: getBytesCopy */ export function getBytes(value: BytesLike, name?: string): Uint8Array { return _getBytes(value, name, false); } /** * Get a typed Uint8Array for %%value%%, creating a copy if necessary * to prevent any modifications of the returned value from being * reflected elsewhere. * * @see: getBytes */ export function getBytesCopy(value: BytesLike, name?: string): Uint8Array { return _getBytes(value, name, true); } /** * Returns true if %%value%% is a valid [[HexString]]. * * If %%length%% is ``true`` or a //number//, it also checks that * %%value%% is a valid [[DataHexString]] of %%length%% (if a //number//) * bytes of data (e.g. ``0x1234`` is 2 bytes). */ export function isHexString(value: any, length?: number | boolean): value is `0x${ string }` { if (typeof(value) !== "string" || !value.match(/^0x[0-9A-Fa-f]*$/)) { return false } if (typeof(length) === "number" && value.length !== 2 + 2 * length) { return false; } if (length === true && (value.length % 2) !== 0) { return false; } return true; } /** * Returns true if %%value%% is a valid representation of arbitrary * data (i.e. a valid [[DataHexString]] or a Uint8Array). */ export function isBytesLike(value: any): value is BytesLike { return (isHexString(value, true) || (value instanceof Uint8Array)); } const HexCharacters: string = "0123456789abcdef"; /** * Returns a [[DataHexString]] representation of %%data%%. */ export function hexlify(data: BytesLike): string { const bytes = getBytes(data); let result = "0x"; for (let i = 0; i < bytes.length; i++) { const v = bytes[i]; result += HexCharacters[(v & 0xf0) >> 4] + HexCharacters[v & 0x0f]; } return result; } /** * Returns a [[DataHexString]] by concatenating all values * within %%data%%. */ export function concat(datas: ReadonlyArray<BytesLike>): string { return "0x" + datas.map((d) => hexlify(d).substring(2)).join(""); } /** * Returns the length of %%data%%, in bytes. */ export function dataLength(data: BytesLike): number { if (isHexString(data, true)) { return (data.length - 2) / 2; } return getBytes(data).length; } /** * Returns a [[DataHexString]] by slicing %%data%% from the %%start%% * offset to the %%end%% offset. * * By default %%start%% is 0 and %%end%% is the length of %%data%%. */ export function dataSlice(data: BytesLike, start?: number, end?: number): string { const bytes = getBytes(data); if (end != null && end > bytes.length) { assert(false, "cannot slice beyond data bounds", "BUFFER_OVERRUN", { buffer: bytes, length: bytes.length, offset: end }); } return hexlify(bytes.slice((start == null) ? 0: start, (end == null) ? bytes.length: end)); } /** * Return the [[DataHexString]] result by stripping all **leading** ** zero bytes from %%data%%. */ export function stripZerosLeft(data: BytesLike): string { let bytes = hexlify(data).substring(2); while (bytes.startsWith("00")) { bytes = bytes.substring(2); } return "0x" + bytes; } function zeroPad(data: BytesLike, length: number, left: boolean): string { const bytes = getBytes(data); assert(length >= bytes.length, "padding exceeds data length", "BUFFER_OVERRUN", { buffer: new Uint8Array(bytes), length: length, offset: length + 1 }); const result = new Uint8Array(length); result.fill(0); if (left) { result.set(bytes, length - bytes.length); } else { result.set(bytes, 0); } return hexlify(result); } /** * Return the [[DataHexString]] of %%data%% padded on the **left** * to %%length%% bytes. * * If %%data%% already exceeds %%length%%, a [[BufferOverrunError]] is * thrown. * * This pads data the same as **values** are in Solidity * (e.g. ``uint128``). */ export function zeroPadValue(data: BytesLike, length: number): string { return zeroPad(data, length, true); } /** * Return the [[DataHexString]] of %%data%% padded on the **right** * to %%length%% bytes. * * If %%data%% already exceeds %%length%%, a [[BufferOverrunError]] is * thrown. * * This pads data the same as **bytes** are in Solidity * (e.g. ``bytes16``). */ export function zeroPadBytes(data: BytesLike, length: number): string { return zeroPad(data, length, false); } |