ETH Price: $2,134.25 (+3.35%)

Contract Diff Checker

Contract Name:
Migrations

Contract Source Code:

File 1 of 1 : Migrations

// 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,
      "This function is restricted to the contract's owner"
    );
    _;
  }

  function setCompleted(uint completed) public restricted {
    last_completed_migration = completed;
  }
}

Please enter a contract address above to load the contract details and source code.

Context size (optional):