This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.7.0; | |
// SPDX-License-Identifier: MIT | |
// ---------------------------------------------------------------------------- | |
// 'METAGOL' token contract | |
// | |
// Deployed to : 0x4f7C10bC925d95fcb5284eEf4e524C8ad642e8Cb | |
// Symbol : METAGOL | |
// Name : METAGOL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.4.22 <0.9.0; | |
contract Migrations { | |
address public owner = msg.sender; | |
uint public last_completed_migration; | |
modifier restricted() { | |
require( | |
msg.sender == owner, |