aave-protocol-v2/helpers/constants.ts
2020-05-29 16:55:31 +02:00

10 lines
471 B
TypeScript

import { eEthereumNetwork, tEthereumAddress } from "./types";
export const ZERO_ADDRESS: tEthereumAddress =
"0x0000000000000000000000000000000000000000";
export const ONE_ADDRESS = "0x0000000000000000000000000000000000000001";
export const MAX_UINT_AMOUNT =
"115792089237316195423570985008687907853269984665640564039457584007913129639935";
export const MOCK_ETH_ADDRESS = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE";
export const WAD = Math.pow(10, 18).toString();