9 lines
551 B
JavaScript
9 lines
551 B
JavaScript
import { BigNumber } from "@ethersproject/bignumber";
|
|
const NegativeOne = ( /*#__PURE__*/BigNumber.from(-1));
|
|
const Zero = ( /*#__PURE__*/BigNumber.from(0));
|
|
const One = ( /*#__PURE__*/BigNumber.from(1));
|
|
const Two = ( /*#__PURE__*/BigNumber.from(2));
|
|
const WeiPerEther = ( /*#__PURE__*/BigNumber.from("1000000000000000000"));
|
|
const MaxUint256 = ( /*#__PURE__*/BigNumber.from("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"));
|
|
export { NegativeOne, Zero, One, Two, WeiPerEther, MaxUint256 };
|
|
//# sourceMappingURL=bignumbers.js.map
|