ethers.js/src.ts/utils/maths.ts

226 lines
7.1 KiB
TypeScript
Raw Normal View History

2022-11-28 05:50:34 +03:00
/**
* Some mathematic operations.
*
* @_subsection: api/utils:Math Helpers [maths]
*/
2022-09-05 23:14:43 +03:00
import { hexlify, isBytesLike } from "./data.js";
2022-11-30 21:46:26 +03:00
import { assert, assertArgument } from "./errors.js";
2022-09-05 23:14:43 +03:00
import type { BytesLike } from "./data.js";
2022-09-09 10:37:38 +03:00
/**
* Any type that can be used where a numeric value is needed.
*/
2022-09-05 23:14:43 +03:00
export type Numeric = number | bigint;
2022-09-09 10:37:38 +03:00
/**
* Any type that can be used where a big number is needed.
*/
2022-09-05 23:14:43 +03:00
export type BigNumberish = string | Numeric;
const BN_0 = BigInt(0);
const BN_1 = BigInt(1);
// IEEE 754 support 53-bits of mantissa
const maxValue = 0x1fffffffffffff;
2022-09-05 23:14:43 +03:00
/**
2022-11-28 05:50:34 +03:00
* Convert %%value%% from a twos-compliment representation of %%width%%
* bits to its value.
*
* If the highest bit is ``1``, the result will be negative.
2022-09-05 23:14:43 +03:00
*/
export function fromTwos(_value: BigNumberish, _width: Numeric): bigint {
const value = getBigInt(_value, "value");
const width = BigInt(getNumber(_width, "width"));
2022-09-05 23:14:43 +03:00
2022-11-30 21:46:26 +03:00
assertArgument(value >= BN_0, "invalid twos complement value", "value", value);
assert((value >> width) === BN_0, "overflow", "NUMERIC_FAULT", {
operation: "fromTwos", fault: "overflow", value: _value
});
2022-09-05 23:14:43 +03:00
// Top bit set; treat as a negative value
if (value >> (width - BN_1)) {
const mask = (BN_1 << width) - BN_1;
return -(((~value) & mask) + BN_1);
}
return value;
}
/**
2022-11-28 05:50:34 +03:00
* Convert %%value%% to a twos-compliment representation of
* %%width%% bits.
*
* The result will always be positive.
2022-09-05 23:14:43 +03:00
*/
export function toTwos(_value: BigNumberish, _width: Numeric): bigint {
2022-11-30 21:46:26 +03:00
let value = getBigInt(_value, "value");
const width = BigInt(getNumber(_width, "width"));
2022-09-05 23:14:43 +03:00
2022-11-30 21:46:26 +03:00
const limit = (BN_1 << (width - BN_1));
2022-09-05 23:14:43 +03:00
if (value < BN_0) {
2022-11-30 21:46:26 +03:00
value = -value;
assert(value <= limit, "too low", "NUMERIC_FAULT", {
operation: "toTwos", fault: "overflow", value: _value
});
2022-09-05 23:14:43 +03:00
const mask = (BN_1 << width) - BN_1;
2022-11-30 21:46:26 +03:00
return ((~value) & mask) + BN_1;
} else {
assert(value < limit, "too high", "NUMERIC_FAULT", {
operation: "toTwos", fault: "overflow", value: _value
});
2022-09-05 23:14:43 +03:00
}
return value;
}
/**
* Mask %%value%% with a bitmask of %%bits%% ones.
*/
export function mask(_value: BigNumberish, _bits: Numeric): bigint {
const value = getBigInt(_value, "value");
const bits = BigInt(getNumber(_bits, "bits"));
2022-09-05 23:14:43 +03:00
return value & ((BN_1 << bits) - BN_1);
}
2022-09-09 10:37:38 +03:00
/**
* Gets a [[BigInt]] from %%value%%. If it is an invalid value for
* a BigInt, then an ArgumentError will be thrown for %%name%%.
*/
export function getBigInt(value: BigNumberish, name?: string): bigint {
switch (typeof(value)) {
case "bigint": return value;
case "number":
assertArgument(Number.isInteger(value), "underflow", name || "value", value);
assertArgument(value >= -maxValue && value <= maxValue, "overflow", name || "value", value);
return BigInt(value);
case "string":
try {
2022-11-28 05:50:34 +03:00
if (value === "") { throw new Error("empty string"); }
if (value[0] === "-" && value[1] !== "-") {
return -BigInt(value.substring(1));
}
return BigInt(value);
} catch(e: any) {
assertArgument(false, `invalid BigNumberish string: ${ e.message }`, name || "value", value);
}
}
assertArgument(false, "invalid BigNumberish value", name || "value", value);
}
2022-09-05 23:14:43 +03:00
2022-09-09 10:37:38 +03:00
const Nibbles = "0123456789abcdef";
2022-09-05 23:14:43 +03:00
/*
* Converts %%value%% to a BigInt. If %%value%% is a Uint8Array, it
* is treated as Big Endian data.
*/
export function toBigInt(value: BigNumberish | Uint8Array): bigint {
if (value instanceof Uint8Array) {
let result = "0x0";
for (const v of value) {
result += Nibbles[v >> 4];
result += Nibbles[v & 0x0f];
}
return BigInt(result);
}
return getBigInt(value);
2022-09-05 23:14:43 +03:00
}
2022-09-09 10:37:38 +03:00
/**
* Gets a //number// from %%value%%. If it is an invalid value for
* a //number//, then an ArgumentError will be thrown for %%name%%.
*/
export function getNumber(value: BigNumberish, name?: string): number {
switch (typeof(value)) {
case "bigint":
assertArgument(value >= -maxValue && value <= maxValue, "overflow", name || "value", value);
return Number(value);
case "number":
assertArgument(Number.isInteger(value), "underflow", name || "value", value);
assertArgument(value >= -maxValue && value <= maxValue, "overflow", name || "value", value);
return value;
case "string":
try {
2022-11-28 05:50:34 +03:00
if (value === "") { throw new Error("empty string"); }
return getNumber(BigInt(value), name);
} catch(e: any) {
assertArgument(false, `invalid numeric string: ${ e.message }`, name || "value", value);
}
}
assertArgument(false, "invalid numeric value", name || "value", value);
}
2022-11-28 05:50:34 +03:00
/**
* Converts %%value%% to a number. If %%value%% is a Uint8Array, it
* is treated as Big Endian data. Throws if the value is not safe.
2022-09-05 23:14:43 +03:00
*/
export function toNumber(value: BigNumberish | Uint8Array): number {
return getNumber(toBigInt(value));
2022-09-05 23:14:43 +03:00
}
/**
* Converts %%value%% to a Big Endian hexstring, optionally padded to
* %%width%% bytes.
*/
export function toHex(_value: BigNumberish, _width?: Numeric): string {
const value = getBigInt(_value, "value");
2022-11-28 05:50:34 +03:00
assertArgument(value >= 0, "cannot toHex negative value", "value", _value);
2022-09-05 23:14:43 +03:00
let result = value.toString(16);
if (_width == null) {
// Ensure the value is of even length
if (result.length % 2) { result = "0" + result; }
} else {
const width = getNumber(_width, "width");
2022-11-28 05:50:34 +03:00
assertArgument(width * 2 >= result.length, `value exceeds width`, "[ value, width ]", [ _value, _width ]);
2022-09-05 23:14:43 +03:00
// Pad the value to the required width
while (result.length < (width * 2)) { result = "0" + result; }
}
return "0x" + result;
}
/**
* Converts %%value%% to a Big Endian Uint8Array.
*/
export function toArray(_value: BigNumberish): Uint8Array {
const value = getBigInt(_value, "value");
2022-11-28 05:50:34 +03:00
assertArgument(value >= 0, "cannot toArray negative value", "value", _value);
2022-09-05 23:14:43 +03:00
if (value === BN_0) { return new Uint8Array([ ]); }
let hex = value.toString(16);
if (hex.length % 2) { hex = "0" + hex; }
const result = new Uint8Array(hex.length / 2);
for (let i = 0; i < result.length; i++) {
const offset = i * 2;
result[i] = parseInt(hex.substring(offset, offset + 2), 16);
}
return result;
}
2022-09-09 10:37:38 +03:00
/**
* Returns a [[HexString]] for %%value%% safe to use as a //Quantity//.
*
* A //Quantity// does not have and leading 0 values unless the value is
* the literal value `0x0`. This is most commonly used for JSSON-RPC
* numeric values.
*/
2022-09-05 23:14:43 +03:00
export function toQuantity(value: BytesLike | BigNumberish): string {
let result = hexlify(isBytesLike(value) ? value: toArray(value)).substring(2);
while (result.substring(0, 1) === "0") { result = result.substring(1); }
if (result === "") { result = "0"; }
return "0x" + result;
}