diff --git a/config/rinkeby-config.js b/config/rinkeby-config.js index 64f37b7..2a38623 100644 --- a/config/rinkeby-config.js +++ b/config/rinkeby-config.js @@ -61,7 +61,7 @@ module.exports = { CpProxyV2: "0x89D1C1ec29549470f033Cda5854b507ab488eb9F", DPPProxy: "0x45136c2455Dd2631E31ab884cf167eC618CCf39a", RouteProxy: "0xe2b538a781eB5a115a1359B8f363B9703Fd19dE6", - DODOMineV3Proxy: "0xcb15BBb59AC8a4B64A4db9B8d9F66c397d89Bd22", + DODOMineV3Proxy: "0x5776C34652Ba1Bb2E0fb678923452285A24C9Be6", //vDODO DODOCirculationHelper: "0xe4Aec985debDDbbCB2358e8C8F9384DD6421d163", diff --git a/contracts/SmartRoute/proxies/DODOMineV3Proxy.sol b/contracts/SmartRoute/proxies/DODOMineV3Proxy.sol index ec23d39..f4725fd 100644 --- a/contracts/SmartRoute/proxies/DODOMineV3Proxy.sol +++ b/contracts/SmartRoute/proxies/DODOMineV3Proxy.sol @@ -131,4 +131,8 @@ contract DODOMineV3Proxy is InitializableOwnable { _MINEV3_TEMPLATE_ = _newMineV3Template; emit ChangeMineV3Template(_newMineV3Template); } + + function version() virtual external pure returns (string memory) { + return "MineV3Proxy 0.0.1"; + } }