mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
10 lines
471 B
TypeScript
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();
|