S Price: $0.780122 (-0.18%)

Contract

0x5f9a5CD0B77155AC1814EF6Cd9D82dA53d05E386

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exchange Opera T...43229352025-01-17 23:53:1612 mins ago1737157996IN
Beets: Beets Migrator
0 S0.0041213155
Exchange Opera T...43183132025-01-17 23:05:201 hr ago1737155120IN
Beets: Beets Migrator
0 S0.0041219755
Exchange Opera T...43180602025-01-17 23:02:521 hr ago1737154972IN
Beets: Beets Migrator
0 S0.0041213155
Exchange Opera T...43145122025-01-17 22:18:491 hr ago1737152329IN
Beets: Beets Migrator
0 S0.01123995150
Exchange Opera T...43126312025-01-17 21:57:022 hrs ago1737151022IN
Beets: Beets Migrator
0 S0.0031801555
Exchange Opera T...43105712025-01-17 21:34:152 hrs ago1737149655IN
Beets: Beets Migrator
0 S0.0031765255
Exchange Opera T...43104462025-01-17 21:32:492 hrs ago1737149569IN
Beets: Beets Migrator
0 S0.0041213155
Exchange Opera T...43094822025-01-17 21:21:132 hrs ago1737148873IN
Beets: Beets Migrator
0 S0.0041219755
Exchange Opera T...43088652025-01-17 21:13:022 hrs ago1737148382IN
Beets: Beets Migrator
0 S0.00824131110
Exchange Opera T...43083502025-01-17 21:06:412 hrs ago1737148001IN
Beets: Beets Migrator
0 S0.00873446110.01
Exchange Opera T...43080572025-01-17 21:03:163 hrs ago1737147796IN
Beets: Beets Migrator
0 S0.00824395110
Exchange Opera T...43079022025-01-17 21:01:123 hrs ago1737147672IN
Beets: Beets Migrator
0 S0.00824263110
Exchange Opera T...43071492025-01-17 20:51:583 hrs ago1737147118IN
Beets: Beets Migrator
0 S0.00636163110
Exchange Opera T...43050602025-01-17 20:32:063 hrs ago1737145926IN
Beets: Beets Migrator
0 S0.00824263110
Exchange Opera T...43040052025-01-17 20:21:523 hrs ago1737145312IN
Beets: Beets Migrator
0 S0.00824395110
Exchange Opera T...43036782025-01-17 20:19:093 hrs ago1737145149IN
Beets: Beets Migrator
0 S0.00824131110
Exchange Opera T...43027332025-01-17 20:09:093 hrs ago1737144549IN
Beets: Beets Migrator
0 S0.00873171110.01
Exchange Opera T...43007772025-01-17 19:43:554 hrs ago1737143035IN
Beets: Beets Migrator
0 S0.00824263110
Exchange Opera T...43000852025-01-17 19:33:544 hrs ago1737142434IN
Beets: Beets Migrator
0 S0.00873446110.01
Exchange Opera T...43000372025-01-17 19:33:254 hrs ago1737142405IN
Beets: Beets Migrator
0 S0.00881306111
Exchange Opera T...42975312025-01-17 19:03:095 hrs ago1737140589IN
Beets: Beets Migrator
0 S0.00824263110
Exchange Opera T...42974782025-01-17 19:02:185 hrs ago1737140538IN
Beets: Beets Migrator
0 S0.00873446110.01
Exchange Opera T...42966482025-01-17 18:51:055 hrs ago1737139865IN
Beets: Beets Migrator
0 S0.00824263110
Exchange Opera T...42955312025-01-17 18:35:435 hrs ago1737138943IN
Beets: Beets Migrator
0 S0.00636031110
Exchange Opera T...42952412025-01-17 18:32:005 hrs ago1737138720IN
Beets: Beets Migrator
0 S0.00824263110
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SonicBeetsMigrator

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion
File 1 of 3 : SonicBeetsMigrator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "openzeppelin-contracts/token/ERC20/IERC20.sol";
import {ReentrancyGuard} from "openzeppelin-contracts/utils/ReentrancyGuard.sol";

contract SonicBeetsMigrator is ReentrancyGuard {
    IERC20 public immutable OPERABEETS;
    IERC20 public immutable SONICBEETS;
    address public immutable TREASURY;

    bool public sonicToOperaEnabled = false;
    bool public operaToSonicEnabled = false;

    address public admin;

    error UserBalanceInsufficient();
    error MigratorBalanceInsufficient();
    error MigrationDisabled();
    error NotAdmin();

    constructor(IERC20 _OPERABEETS, IERC20 _SONICBEETS, address _TREASURY) {
        OPERABEETS = _OPERABEETS;
        SONICBEETS = _SONICBEETS;
        TREASURY = _TREASURY;
        admin = msg.sender;
    }

    modifier onlyAdmin() {
        require(msg.sender == admin, NotAdmin());
        _;
    }

    function exchangeOperaToSonic(uint256 amount) external nonReentrant {
        require(operaToSonicEnabled, MigrationDisabled());
        require(OPERABEETS.balanceOf(msg.sender) >= amount, UserBalanceInsufficient());
        require(SONICBEETS.balanceOf(address(this)) >= amount, MigratorBalanceInsufficient());
        OPERABEETS.transferFrom(msg.sender, address(this), amount);
        SONICBEETS.transfer(msg.sender, amount);
    }

    function exchangeSonicToOpera(uint256 amount) external nonReentrant {
        require(sonicToOperaEnabled, MigrationDisabled());
        require(SONICBEETS.balanceOf(msg.sender) >= amount, UserBalanceInsufficient());
        require(OPERABEETS.balanceOf(address(this)) >= amount, MigratorBalanceInsufficient());
        SONICBEETS.transferFrom(msg.sender, address(this), amount);
        OPERABEETS.transfer(msg.sender, amount);
    }

    function setAdmin(address _admin) external onlyAdmin {
        admin = _admin;
    }

    function enableOperaToSonic(bool _toggle) external onlyAdmin {
        operaToSonicEnabled = _toggle;
    }

    function enableSonicToOpera(bool _toggle) external onlyAdmin {
        sonicToOperaEnabled = _toggle;
    }

    function withdrawOperaBeets() external onlyAdmin {
        OPERABEETS.transfer(TREASURY, OPERABEETS.balanceOf(address(this)));
    }

    function withdrawSonicBeets() external onlyAdmin {
        SONICBEETS.transfer(TREASURY, SONICBEETS.balanceOf(address(this)));
    }
}

File 2 of 3 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

File 3 of 3 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,
 * consider using {ReentrancyGuardTransient} instead.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant NOT_ENTERED = 1;
    uint256 private constant ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

Settings
{
  "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "shanghai",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_OPERABEETS","type":"address"},{"internalType":"contract IERC20","name":"_SONICBEETS","type":"address"},{"internalType":"address","name":"_TREASURY","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MigrationDisabled","type":"error"},{"inputs":[],"name":"MigratorBalanceInsufficient","type":"error"},{"inputs":[],"name":"NotAdmin","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"UserBalanceInsufficient","type":"error"},{"inputs":[],"name":"OPERABEETS","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SONICBEETS","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_toggle","type":"bool"}],"name":"enableOperaToSonic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_toggle","type":"bool"}],"name":"enableSonicToOpera","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"exchangeOperaToSonic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"exchangeSonicToOpera","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operaToSonicEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sonicToOperaEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawOperaBeets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSonicBeets","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526001805461ffff1916905534801561001a575f5ffd5b50604051610c58380380610c588339810160408190526100399161008c565b60015f8190556001600160a01b0393841660805291831660a05290911660c052805462010000600160b01b0319163362010000021790556100d6565b6001600160a01b0381168114610089575f5ffd5b50565b5f5f5f6060848603121561009e575f5ffd5b83516100a981610075565b60208501519093506100ba81610075565b60408501519092506100cb81610075565b809150509250925092565b60805160a05160c051610b056101535f395f818160d401528181610291015261077801525f81816101b7015281816104ff0152818161064001528181610747015281816107ea015261094301525f81816101900152818161026001528181610458015281816105b10152818161089101526109d20152610b055ff3fe608060405234801561000f575f5ffd5b50600436106100cb575f3560e01c8063827e5e6f11610088578063c935802611610063578063c9358026146101d9578063f820dfc7146101e1578063f851a440146101ee578063f9826bea14610207575f5ffd5b8063827e5e6f146101785780638833d4981461018b578063a7598ba1146101b2575f5ffd5b80632d2c5565146100cf57806337e309e814610113578063583d1d7f1461013557806369e5980a1461013f578063704b6c021461015257806374caa70614610165575b5f5ffd5b6100f67f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b60015461012590610100900460ff1681565b604051901515815260200161010a565b61013d61021a565b005b61013d61014d366004610a3e565b61036b565b61013d610160366004610a60565b6103b6565b61013d610173366004610a86565b610411565b61013d610186366004610a3e565b6106bd565b6100f67f000000000000000000000000000000000000000000000000000000000000000081565b6100f67f000000000000000000000000000000000000000000000000000000000000000081565b61013d610701565b6001546101259060ff1681565b6001546100f6906201000090046001600160a01b031681565b61013d610215366004610a86565b6107a8565b6001546201000090046001600160a01b0316331461024b57604051637bfa4b9f60e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb907f00000000000000000000000000000000000000000000000000000000000000009083906370a08231906024015b602060405180830381865afa1580156102d8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102fc9190610a9d565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610344573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103689190610ab4565b50565b6001546201000090046001600160a01b0316331461039c57604051637bfa4b9f60e01b815260040160405180910390fd5b600180549115156101000261ff0019909216919091179055565b6001546201000090046001600160a01b031633146103e757604051637bfa4b9f60e01b815260040160405180910390fd5b600180546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b610419610a09565b600154610100900460ff1661044157604051631e6a33fb60e01b815260040160405180910390fd5b6040516370a0823160e01b815233600482015281907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156104a5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104c99190610a9d565b10156104e8576040516320c0be1160e01b815260040160405180910390fd5b6040516370a0823160e01b815230600482015281907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561054c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105709190610a9d565b101561058f57604051637e20dcdf60e11b815260040160405180910390fd5b6040516323b872dd60e01b8152336004820152306024820152604481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906323b872dd906064016020604051808303815f875af11580156105ff573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106239190610ab4565b5060405163a9059cbb60e01b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb906044015b6020604051808303815f875af115801561068f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106b39190610ab4565b5061036860015f55565b6001546201000090046001600160a01b031633146106ee57604051637bfa4b9f60e01b815260040160405180910390fd5b6001805460ff1916911515919091179055565b6001546201000090046001600160a01b0316331461073257604051637bfa4b9f60e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb907f00000000000000000000000000000000000000000000000000000000000000009083906370a08231906024016102bd565b6107b0610a09565b60015460ff166107d357604051631e6a33fb60e01b815260040160405180910390fd5b6040516370a0823160e01b815233600482015281907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610837573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085b9190610a9d565b101561087a576040516320c0be1160e01b815260040160405180910390fd5b6040516370a0823160e01b815230600482015281907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156108de573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109029190610a9d565b101561092157604051637e20dcdf60e11b815260040160405180910390fd5b6040516323b872dd60e01b8152336004820152306024820152604481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906323b872dd906064016020604051808303815f875af1158015610991573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b59190610ab4565b5060405163a9059cbb60e01b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb90604401610673565b60025f5403610a2b57604051633ee5aeb560e01b815260040160405180910390fd5b60025f55565b8015158114610368575f5ffd5b5f60208284031215610a4e575f5ffd5b8135610a5981610a31565b9392505050565b5f60208284031215610a70575f5ffd5b81356001600160a01b0381168114610a59575f5ffd5b5f60208284031215610a96575f5ffd5b5035919050565b5f60208284031215610aad575f5ffd5b5051919050565b5f60208284031215610ac4575f5ffd5b8151610a5981610a3156fea26469706673582212207059992ffadb82fa4da5b4094671465b1db9db97d39672af9cc49707b28cb86864736f6c634300081c00330000000000000000000000001e5fe95fb90ac0530f581c617272cd08646267950000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f00000000000000000000000008a81173fc726eedd1ad6036db6197027c77865c2

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106100cb575f3560e01c8063827e5e6f11610088578063c935802611610063578063c9358026146101d9578063f820dfc7146101e1578063f851a440146101ee578063f9826bea14610207575f5ffd5b8063827e5e6f146101785780638833d4981461018b578063a7598ba1146101b2575f5ffd5b80632d2c5565146100cf57806337e309e814610113578063583d1d7f1461013557806369e5980a1461013f578063704b6c021461015257806374caa70614610165575b5f5ffd5b6100f67f0000000000000000000000008a81173fc726eedd1ad6036db6197027c77865c281565b6040516001600160a01b0390911681526020015b60405180910390f35b60015461012590610100900460ff1681565b604051901515815260200161010a565b61013d61021a565b005b61013d61014d366004610a3e565b61036b565b61013d610160366004610a60565b6103b6565b61013d610173366004610a86565b610411565b61013d610186366004610a3e565b6106bd565b6100f67f0000000000000000000000001e5fe95fb90ac0530f581c617272cd086462679581565b6100f67f0000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f081565b61013d610701565b6001546101259060ff1681565b6001546100f6906201000090046001600160a01b031681565b61013d610215366004610a86565b6107a8565b6001546201000090046001600160a01b0316331461024b57604051637bfa4b9f60e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201527f0000000000000000000000001e5fe95fb90ac0530f581c617272cd08646267956001600160a01b03169063a9059cbb907f0000000000000000000000008a81173fc726eedd1ad6036db6197027c77865c29083906370a08231906024015b602060405180830381865afa1580156102d8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102fc9190610a9d565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610344573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103689190610ab4565b50565b6001546201000090046001600160a01b0316331461039c57604051637bfa4b9f60e01b815260040160405180910390fd5b600180549115156101000261ff0019909216919091179055565b6001546201000090046001600160a01b031633146103e757604051637bfa4b9f60e01b815260040160405180910390fd5b600180546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b610419610a09565b600154610100900460ff1661044157604051631e6a33fb60e01b815260040160405180910390fd5b6040516370a0823160e01b815233600482015281907f0000000000000000000000001e5fe95fb90ac0530f581c617272cd08646267956001600160a01b0316906370a0823190602401602060405180830381865afa1580156104a5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104c99190610a9d565b10156104e8576040516320c0be1160e01b815260040160405180910390fd5b6040516370a0823160e01b815230600482015281907f0000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f06001600160a01b0316906370a0823190602401602060405180830381865afa15801561054c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105709190610a9d565b101561058f57604051637e20dcdf60e11b815260040160405180910390fd5b6040516323b872dd60e01b8152336004820152306024820152604481018290527f0000000000000000000000001e5fe95fb90ac0530f581c617272cd08646267956001600160a01b0316906323b872dd906064016020604051808303815f875af11580156105ff573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106239190610ab4565b5060405163a9059cbb60e01b8152336004820152602481018290527f0000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f06001600160a01b03169063a9059cbb906044015b6020604051808303815f875af115801561068f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106b39190610ab4565b5061036860015f55565b6001546201000090046001600160a01b031633146106ee57604051637bfa4b9f60e01b815260040160405180910390fd5b6001805460ff1916911515919091179055565b6001546201000090046001600160a01b0316331461073257604051637bfa4b9f60e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201527f0000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f06001600160a01b03169063a9059cbb907f0000000000000000000000008a81173fc726eedd1ad6036db6197027c77865c29083906370a08231906024016102bd565b6107b0610a09565b60015460ff166107d357604051631e6a33fb60e01b815260040160405180910390fd5b6040516370a0823160e01b815233600482015281907f0000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f06001600160a01b0316906370a0823190602401602060405180830381865afa158015610837573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085b9190610a9d565b101561087a576040516320c0be1160e01b815260040160405180910390fd5b6040516370a0823160e01b815230600482015281907f0000000000000000000000001e5fe95fb90ac0530f581c617272cd08646267956001600160a01b0316906370a0823190602401602060405180830381865afa1580156108de573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109029190610a9d565b101561092157604051637e20dcdf60e11b815260040160405180910390fd5b6040516323b872dd60e01b8152336004820152306024820152604481018290527f0000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f06001600160a01b0316906323b872dd906064016020604051808303815f875af1158015610991573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b59190610ab4565b5060405163a9059cbb60e01b8152336004820152602481018290527f0000000000000000000000001e5fe95fb90ac0530f581c617272cd08646267956001600160a01b03169063a9059cbb90604401610673565b60025f5403610a2b57604051633ee5aeb560e01b815260040160405180910390fd5b60025f55565b8015158114610368575f5ffd5b5f60208284031215610a4e575f5ffd5b8135610a5981610a31565b9392505050565b5f60208284031215610a70575f5ffd5b81356001600160a01b0381168114610a59575f5ffd5b5f60208284031215610a96575f5ffd5b5035919050565b5f60208284031215610aad575f5ffd5b5051919050565b5f60208284031215610ac4575f5ffd5b8151610a5981610a3156fea26469706673582212207059992ffadb82fa4da5b4094671465b1db9db97d39672af9cc49707b28cb86864736f6c634300081c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000001e5fe95fb90ac0530f581c617272cd08646267950000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f00000000000000000000000008a81173fc726eedd1ad6036db6197027c77865c2

-----Decoded View---------------
Arg [0] : _OPERABEETS (address): 0x1E5fe95fB90ac0530F581C617272cd0864626795
Arg [1] : _SONICBEETS (address): 0x2D0E0814E62D80056181F5cd932274405966e4f0
Arg [2] : _TREASURY (address): 0x8a81173FC726eEDd1ad6036dB6197027C77865C2

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000001e5fe95fb90ac0530f581c617272cd0864626795
Arg [1] : 0000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f0
Arg [2] : 0000000000000000000000008a81173fc726eedd1ad6036db6197027c77865c2


Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.