2021-04-12 10:48:42 +00:00
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
|
|
|
|
import { DSMath } from "../../common/math.sol";
|
|
|
|
import { Basic } from "../../common/basic.sol";
|
2021-06-02 17:13:15 +00:00
|
|
|
import { RootChainManagerInterface, DepositManagerProxyInterface } from "./interface.sol";
|
2021-04-12 10:48:42 +00:00
|
|
|
|
|
|
|
abstract contract Helpers is DSMath, Basic {
|
|
|
|
/**
|
2021-04-12 21:57:20 +00:00
|
|
|
* @dev Polygon POS Bridge ERC20 Predicate
|
2021-04-12 10:48:42 +00:00
|
|
|
*/
|
|
|
|
address internal constant erc20Predicate = 0x40ec5B33f54e0E8A33A975908C5BA1c14e5BbbDf;
|
|
|
|
|
|
|
|
/**
|
2021-04-12 21:57:20 +00:00
|
|
|
* @dev Polygon POS Bridge Manager
|
2021-04-12 10:48:42 +00:00
|
|
|
*/
|
|
|
|
RootChainManagerInterface internal constant migrator = RootChainManagerInterface(0xA0c68C638235ee32657e8f720a23ceC1bFc77C77);
|
2021-06-02 17:13:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Polygon Plasma Bridge Manager
|
|
|
|
*/
|
|
|
|
DepositManagerProxyInterface internal constant migratorPlasma = DepositManagerProxyInterface(0x401F6c983eA34274ec46f84D70b31C151321188b);
|
2021-04-12 10:48:42 +00:00
|
|
|
}
|