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";
|
|
|
|
import { RootChainManagerInterface } from "./interface.sol";
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|