2023-03-04 04:25:07 +03:00
|
|
|
/**
|
|
|
|
* A constant for the order N for the secp256k1 curve.
|
|
|
|
*
|
|
|
|
* (**i.e.** ``0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141n``)
|
|
|
|
*/
|
|
|
|
export declare const N: bigint;
|
|
|
|
/**
|
|
|
|
* A constant for the number of wei in a single ether.
|
|
|
|
*
|
|
|
|
* (**i.e.** ``1000000000000000000n``)
|
|
|
|
*/
|
|
|
|
export declare const WeiPerEther: bigint;
|
|
|
|
/**
|
|
|
|
* A constant for the maximum value for a ``uint256``.
|
|
|
|
*
|
|
|
|
* (**i.e.** ``0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffn``)
|
|
|
|
*/
|
|
|
|
export declare const MaxUint256: bigint;
|
|
|
|
/**
|
|
|
|
* A constant for the minimum value for an ``int256``.
|
|
|
|
*
|
|
|
|
* (**i.e.** ``-8000000000000000000000000000000000000000000000000000000000000000n``)
|
|
|
|
*/
|
|
|
|
export declare const MinInt256: bigint;
|
|
|
|
/**
|
|
|
|
* A constant for the maximum value for an ``int256``.
|
|
|
|
*
|
|
|
|
* (**i.e.** ``0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffn``)
|
|
|
|
*/
|
|
|
|
export declare const MaxInt256: bigint;
|
2023-04-27 15:19:55 +03:00
|
|
|
//# sourceMappingURL=numbers.d.ts.map
|