UNPKG

@hethers/constants

Version:

Common EVM & Hedera Hashgraph constants used for hethers.

25 lines (21 loc) 990 B
import { BigNumber } from "@ethersproject/bignumber"; const NegativeOne: BigNumber = (/*#__PURE__*/BigNumber.from(-1)); const Zero: BigNumber = (/*#__PURE__*/BigNumber.from(0)); const One: BigNumber = (/*#__PURE__*/BigNumber.from(1)); const Two: BigNumber = (/*#__PURE__*/BigNumber.from(2)); const WeiPerEther: BigNumber = (/*#__PURE__*/BigNumber.from("1000000000000000000")); const MaxUint256: BigNumber = (/*#__PURE__*/BigNumber.from("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")); const TinybarPerHbar: BigNumber = (/*#__PURE__*/BigNumber.from("100000000")); const MinInt256: BigNumber = (/*#__PURE__*/BigNumber.from("-0x8000000000000000000000000000000000000000000000000000000000000000")); const MaxInt256: BigNumber = (/*#__PURE__*/BigNumber.from("0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")); export { NegativeOne, Zero, One, Two, WeiPerEther, MaxUint256, MinInt256, MaxInt256, TinybarPerHbar, };