21 lines
831 B
JavaScript
21 lines
831 B
JavaScript
/**
|
|
* A constant for the order N for the secp256k1 curve.
|
|
*/
|
|
export const N = BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141");
|
|
/**
|
|
* A constant for the number of wei in a single ether.
|
|
*/
|
|
export const WeiPerEther = BigInt("1000000000000000000");
|
|
/**
|
|
* A constant for the maximum value for a ``uint256``.
|
|
*/
|
|
export const MaxUint256 = BigInt("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
|
|
/**
|
|
* A constant for the minimum value for an ``int256``.
|
|
*/
|
|
export const MinInt256 = BigInt("0x8000000000000000000000000000000000000000000000000000000000000000") * BigInt(-1);
|
|
/**
|
|
* A constant for the maximum value for an ``int256``.
|
|
*/
|
|
export const MaxInt256 = BigInt("0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
|
|
//# sourceMappingURL=numbers.js.map
|