Contract 0xabd9f9ab95804a6d22a485094bb4c3b544a2a831

 
Txn Hash Method
Block
From
To
Value [Txn Fee]
0xb390ed6ea8f6a82c9e6cbf32fbdb9226f3b62b1dc4883f23cb63979c883bf0cbAccept Admin491182442022-10-14 1:36:02160 days 18 hrs ago0xb1eafc8c60f68646f4efbd3806875fe468933749 IN  0xabd9f9ab95804a6d22a485094bb4c3b544a2a8310 FTM0.064620428867
0x5e94fe30a026ec3040fe3dad0f6980f899ae3c5e9cd41c338056d50282230889Set Pending Admi...486561982022-10-07 21:08:03166 days 22 hrs agoDark Matter DeFi: Deployer IN  0xabd9f9ab95804a6d22a485094bb4c3b544a2a8310 FTM0.00072895
0x0ca9d965eae946749a97f8d501b0c26a17552bd0ccf0d1ef7afdfdb435e5c3920x60806040220534472021-11-14 19:20:47494 days 40 mins agoDark Matter DeFi: Deployer IN  Create: Timelock0 FTM0.217375832451
[ Download CSV Export 
Latest 1 internal transaction
Parent Txn Hash Block From To Value
0x0ca9d965eae946749a97f8d501b0c26a17552bd0ccf0d1ef7afdfdb435e5c392220534472021-11-14 19:20:47494 days 40 mins ago Dark Matter DeFi: Deployer  Contract Creation0 FTM
[ Download CSV Export 
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Timelock

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 8500 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at FtmScan.com on 2021-11-14
*/

// COPIED FROM https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/GovernorAlpha.sol
// Copyright 2020 Compound Labs, Inc.
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
// 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

// SPDX-License-Identifier: GPL-3.0-or-later Or MIT

pragma solidity >=0.8.0 <0.9.0;

contract Timelock {
    event NewAdmin(address indexed newAdmin);
    event NewPendingAdmin(address indexed newPendingAdmin);
    event NewDelay(uint indexed newDelay);
    event CancelTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature,  bytes data, uint eta);
    event ExecuteTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature,  bytes data, uint eta);
    event QueueTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta);

    uint public constant GRACE_PERIOD = 24 days;
    uint public constant MINIMUM_DELAY = 20 days;
    uint public constant MAXIMUM_DELAY = 30 days;

    address public admin;
    address public pendingAdmin;
    uint public delay;
    bool public admin_initialized;

    mapping (bytes32 => bool) public queuedTransactions;

    constructor(address admin_, uint delay_) {
        require(delay_ >= MINIMUM_DELAY, "Timelock::constructor: Delay must exceed minimum delay.");
        require(delay_ <= MAXIMUM_DELAY, "Timelock::constructor: Delay must not exceed maximum delay.");

        admin = admin_;
        delay = delay_;
        admin_initialized = false;
    }

    receive() external payable { }

    function setDelay(uint delay_) public {
        require(msg.sender == address(this), "Timelock::setDelay: Call must come from Timelock.");
        require(delay_ >= MINIMUM_DELAY, "Timelock::setDelay: Delay must exceed minimum delay.");
        require(delay_ <= MAXIMUM_DELAY, "Timelock::setDelay: Delay must not exceed maximum delay.");
        delay = delay_;

        emit NewDelay(delay);
    }

    function acceptAdmin() public {
        require(msg.sender == pendingAdmin, "Timelock::acceptAdmin: Call must come from pendingAdmin.");
        admin = msg.sender;
        pendingAdmin = address(0);

        emit NewAdmin(admin);
    }

    function setPendingAdmin(address pendingAdmin_) public {
        // allows one time setting of admin for deployment purposes
        if (admin_initialized) {
            require(msg.sender == address(this), "Timelock::setPendingAdmin: Call must come from Timelock.");
        } else {
            require(msg.sender == admin, "Timelock::setPendingAdmin: First call must come from admin.");
            admin_initialized = true;
        }
        pendingAdmin = pendingAdmin_;

        emit NewPendingAdmin(pendingAdmin);
    }

    function queueTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public returns (bytes32) {
        require(msg.sender == admin, "Timelock::queueTransaction: Call must come from admin.");
        require(eta >= getBlockTimestamp() + delay, "Timelock::queueTransaction: Estimated execution block must satisfy delay.");

        bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta));
        queuedTransactions[txHash] = true;

        emit QueueTransaction(txHash, target, value, signature, data, eta);
        return txHash;
    }

    function cancelTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public {
        require(msg.sender == admin, "Timelock::cancelTransaction: Call must come from admin.");

        bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta));
        queuedTransactions[txHash] = false;

        emit CancelTransaction(txHash, target, value, signature, data, eta);
    }

    function executeTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public payable returns (bytes memory) {
        require(msg.sender == admin, "Timelock::executeTransaction: Call must come from admin.");

        bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta));
        require(queuedTransactions[txHash], "Timelock::executeTransaction: Transaction hasn't been queued.");
        require(getBlockTimestamp() >= eta, "Timelock::executeTransaction: Transaction hasn't surpassed time lock.");
        require(getBlockTimestamp() <= eta + GRACE_PERIOD, "Timelock::executeTransaction: Transaction is stale.");

        queuedTransactions[txHash] = false;

        bytes memory callData;

        if (bytes(signature).length == 0) {
            callData = data;
        } else {
            callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data);
        }

        // solium-disable-next-line security/no-call-value
        (bool success, bytes memory returnData) = target.call{value: value}(callData);
        require(success, "Timelock::executeTransaction: Transaction execution reverted.");

        emit ExecuteTransaction(txHash, target, value, signature, data, eta);

        return returnData;
    }

    function getBlockTimestamp() internal view returns (uint) {
        // solium-disable-next-line security/no-block-members
        return block.timestamp;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"admin_","type":"address"},{"internalType":"uint256","name":"delay_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"CancelTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"ExecuteTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"NewDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"QueueTransaction","type":"event"},{"inputs":[],"name":"GRACE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINIMUM_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin_initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"cancelTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"executeTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"queueTransaction","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"queuedTransactions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"delay_","type":"uint256"}],"name":"setDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingAdmin_","type":"address"}],"name":"setPendingAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b506040516113cd3803806113cd83398101604081905261002f91610135565b621a5e0081101561009b5760405162461bcd60e51b815260206004820152603760248201526000805160206113ad83398151915260448201527f7420657863656564206d696e696d756d2064656c61792e00000000000000000060648201526084015b60405180910390fd5b62278d008111156101025760405162461bcd60e51b815260206004820152603b60248201526000805160206113ad83398151915260448201527f74206e6f7420657863656564206d6178696d756d2064656c61792e00000000006064820152608401610092565b600080546001600160a01b0319166001600160a01b0393909316929092179091556002556003805460ff1916905561016f565b6000806040838503121561014857600080fd5b82516001600160a01b038116811461015f57600080fd5b6020939093015192949293505050565b61122f8061017e6000396000f3fe6080604052600436106100e15760003560e01c80636fc1f57e1161007f578063c1a287e211610059578063c1a287e21461025b578063e177246e14610272578063f2b0653714610292578063f851a440146102c257600080fd5b80636fc1f57e146102035780637d645fab1461022d578063b1b43ae51461024457600080fd5b80633a66f901116100bb5780633a66f9011461017f5780634dd18bf5146101ad578063591fcdfe146101cd5780636a42b8f8146101ed57600080fd5b80630825f38f146100ed5780630e18b68114610116578063267822471461012d57600080fd5b366100e857005b600080fd5b6101006100fb366004610f64565b6102ef565b60405161010d9190611071565b60405180910390f35b34801561012257600080fd5b5061012b61070f565b005b34801561013957600080fd5b5060015461015a9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161010d565b34801561018b57600080fd5b5061019f61019a366004610f64565b6107fd565b60405190815260200161010d565b3480156101b957600080fd5b5061012b6101c836600461108b565b6109fd565b3480156101d957600080fd5b5061012b6101e8366004610f64565b610baa565b3480156101f957600080fd5b5061019f60025481565b34801561020f57600080fd5b5060035461021d9060ff1681565b604051901515815260200161010d565b34801561023957600080fd5b5061019f62278d0081565b34801561025057600080fd5b5061019f621a5e0081565b34801561026757600080fd5b5061019f621fa40081565b34801561027e57600080fd5b5061012b61028d3660046110a6565b610cfc565b34801561029e57600080fd5b5061021d6102ad3660046110a6565b60046020526000908152604090205460ff1681565b3480156102ce57600080fd5b5060005461015a9073ffffffffffffffffffffffffffffffffffffffff1681565b60005460609073ffffffffffffffffffffffffffffffffffffffff1633146103845760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20436160448201527f6c6c206d75737420636f6d652066726f6d2061646d696e2e000000000000000060648201526084015b60405180910390fd5b6000868686868660405160200161039f9594939291906110bf565b60408051601f1981840301815291815281516020928301206000818152600490935291205490915060ff1661043c5760405162461bcd60e51b815260206004820152603d60248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e206861736e2774206265656e207175657565642e000000606482015260840161037b565b824210156104d85760405162461bcd60e51b815260206004820152604560248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e206861736e2774207375727061737365642074696d652060648201527f6c6f636b2e000000000000000000000000000000000000000000000000000000608482015260a40161037b565b6104e5621fa40084611119565b42111561055a5760405162461bcd60e51b815260206004820152603360248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e206973207374616c652e00000000000000000000000000606482015260840161037b565b600081815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055845160609061059e5750836105ca565b8580519060200120856040516020016105b8929190611158565b60405160208183030381529060405290505b6000808973ffffffffffffffffffffffffffffffffffffffff1689846040516105f391906111a0565b60006040518083038185875af1925050503d8060008114610630576040519150601f19603f3d011682016040523d82523d6000602084013e610635565b606091505b5091509150816106ad5760405162461bcd60e51b815260206004820152603d60248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e20657865637574696f6e2072657665727465642e000000606482015260840161037b565b8973ffffffffffffffffffffffffffffffffffffffff16847fa560e3198060a2f10670c1ec5b403077ea6ae93ca8de1c32b451dc1a943cd6e78b8b8b8b6040516106fa94939291906111bc565b60405180910390a39998505050505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff16331461079c5760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a61636365707441646d696e3a2043616c6c206d75737460448201527f20636f6d652066726f6d2070656e64696e6741646d696e2e0000000000000000606482015260840161037b565b60008054337fffffffffffffffffffffffff0000000000000000000000000000000000000000918216811783556001805490921690915560405190917f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c91a2565b6000805473ffffffffffffffffffffffffffffffffffffffff16331461088b5760405162461bcd60e51b815260206004820152603660248201527f54696d656c6f636b3a3a71756575655472616e73616374696f6e3a2043616c6c60448201527f206d75737420636f6d652066726f6d2061646d696e2e00000000000000000000606482015260840161037b565b6002546108989042611119565b8210156109335760405162461bcd60e51b815260206004820152604960248201527f54696d656c6f636b3a3a71756575655472616e73616374696f6e3a204573746960448201527f6d6174656420657865637574696f6e20626c6f636b206d75737420736174697360648201527f66792064656c61792e0000000000000000000000000000000000000000000000608482015260a40161037b565b6000868686868660405160200161094e9594939291906110bf565b60408051601f1981840301815282825280516020918201206000818152600490925291902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055915073ffffffffffffffffffffffffffffffffffffffff88169082907f76e2796dc3a81d57b0e8504b647febcbeeb5f4af818e164f11eef8131a6a763f906109eb908a908a908a908a906111bc565b60405180910390a39695505050505050565b60035460ff1615610a8257333014610a7d5760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a73657450656e64696e6741646d696e3a2043616c6c2060448201527f6d75737420636f6d652066726f6d2054696d656c6f636b2e0000000000000000606482015260840161037b565b610b3b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b0f5760405162461bcd60e51b815260206004820152603b60248201527f54696d656c6f636b3a3a73657450656e64696e6741646d696e3a20466972737460448201527f2063616c6c206d75737420636f6d652066726f6d2061646d696e2e0000000000606482015260840161037b565b600380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f69d78e38a01985fbb1462961809b4b2d65531bc93b2b94037f3334b82ca4a75690600090a250565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c375760405162461bcd60e51b815260206004820152603760248201527f54696d656c6f636b3a3a63616e63656c5472616e73616374696f6e3a2043616c60448201527f6c206d75737420636f6d652066726f6d2061646d696e2e000000000000000000606482015260840161037b565b60008585858585604051602001610c529594939291906110bf565b60408051601f1981840301815282825280516020918201206000818152600490925291902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055915073ffffffffffffffffffffffffffffffffffffffff87169082907f2fffc091a501fd91bfbff27141450d3acb40fb8e6d8382b243ec7a812a3aaf8790610cec9089908990899089906111bc565b60405180910390a3505050505050565b333014610d715760405162461bcd60e51b815260206004820152603160248201527f54696d656c6f636b3a3a73657444656c61793a2043616c6c206d75737420636f60448201527f6d652066726f6d2054696d656c6f636b2e000000000000000000000000000000606482015260840161037b565b621a5e00811015610dea5760405162461bcd60e51b815260206004820152603460248201527f54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206560448201527f7863656564206d696e696d756d2064656c61792e000000000000000000000000606482015260840161037b565b62278d00811115610e635760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206e60448201527f6f7420657863656564206d6178696d756d2064656c61792e0000000000000000606482015260840161037b565b600281905560405181907f948b1f6a42ee138b7e34058ba85a37f716d55ff25ff05a763f15bed6a04c8d2c90600090a250565b803573ffffffffffffffffffffffffffffffffffffffff81168114610eba57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115610f0957610f09610ebf565b604051601f8501601f19908116603f01168101908282118183101715610f3157610f31610ebf565b81604052809350858152868686011115610f4a57600080fd5b858560208301376000602087830101525050509392505050565b600080600080600060a08688031215610f7c57600080fd5b610f8586610e96565b945060208601359350604086013567ffffffffffffffff80821115610fa957600080fd5b818801915088601f830112610fbd57600080fd5b610fcc89833560208501610eee565b94506060880135915080821115610fe257600080fd5b508601601f81018813610ff457600080fd5b61100388823560208401610eee565b95989497509295608001359392505050565b60005b83811015611030578181015183820152602001611018565b8381111561103f576000848401525b50505050565b6000815180845261105d816020860160208601611015565b601f01601f19169290920160200192915050565b6020815260006110846020830184611045565b9392505050565b60006020828403121561109d57600080fd5b61108482610e96565b6000602082840312156110b857600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8616815284602082015260a0604082015260006110f460a0830186611045565b82810360608401526111068186611045565b9150508260808301529695505050505050565b60008219821115611153577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b7fffffffff000000000000000000000000000000000000000000000000000000008316815260008251611192816004850160208701611015565b919091016004019392505050565b600082516111b2818460208701611015565b9190910192915050565b8481526080602082015260006111d56080830186611045565b82810360408401526111e78186611045565b9150508260608301529594505050505056fea2646970667358221220de8e7424675607730a1dfef1af291dff9c0fbbee269b70b364559d899d0b544d64736f6c634300080a003354696d656c6f636b3a3a636f6e7374727563746f723a2044656c6179206d7573000000000000000000000000365e82adad2c86d38bec033be04768c8ecd108e400000000000000000000000000000000000000000000000000000000001a5e00

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

000000000000000000000000365e82adad2c86d38bec033be04768c8ecd108e400000000000000000000000000000000000000000000000000000000001a5e00

-----Decoded View---------------
Arg [0] : admin_ (address): 0x365e82adad2c86d38bec033be04768c8ecd108e4
Arg [1] : delay_ (uint256): 1728000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000365e82adad2c86d38bec033be04768c8ecd108e4
Arg [1] : 00000000000000000000000000000000000000000000000000000000001a5e00


Deployed ByteCode Sourcemap

1696:5050:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5259:1314;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3409:242;;;;;;;;;;;;;:::i;:::-;;2448:27;;;;;;;;;;-1:-1:-1;2448:27:0;;;;;;;;;;;3099:42:1;3087:55;;;3069:74;;3057:2;3042:18;2448:27:0;2923:226:1;4204:604:0;;;;;;;;;;-1:-1:-1;4204:604:0;;;;;:::i;:::-;;:::i;:::-;;;3300:25:1;;;3288:2;3273:18;4204:604:0;3154:177:1;3659:537:0;;;;;;;;;;-1:-1:-1;3659:537:0;;;;;:::i;:::-;;:::i;4816:435::-;;;;;;;;;;-1:-1:-1;4816:435:0;;;;;:::i;:::-;;:::i;2482:17::-;;;;;;;;;;;;;;;;2506:29;;;;;;;;;;-1:-1:-1;2506:29:0;;;;;;;;;;;3874:14:1;;3867:22;3849:41;;3837:2;3822:18;2506:29:0;3709:187:1;2368:44:0;;;;;;;;;;;;2405:7;2368:44;;2317;;;;;;;;;;;;2354:7;2317:44;;2267:43;;;;;;;;;;;;2303:7;2267:43;;2995:406;;;;;;;;;;-1:-1:-1;2995:406:0;;;;;:::i;:::-;;:::i;2544:51::-;;;;;;;;;;-1:-1:-1;2544:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;2421:20;;;;;;;;;;-1:-1:-1;2421:20:0;;;;;;;;5259:1314;5440:5;;5393:12;;5440:5;;5426:10;:19;5418:88;;;;-1:-1:-1;;;5418:88:0;;4473:2:1;5418:88:0;;;4455:21:1;4512:2;4492:18;;;4485:30;4551:34;4531:18;;;4524:62;4622:26;4602:18;;;4595:54;4666:19;;5418:88:0;;;;;;;;;5519:14;5557:6;5565:5;5572:9;5583:4;5589:3;5546:47;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;5546:47:0;;;;;;;;;5536:58;;5546:47;5536:58;;;;5613:26;;;;:18;:26;;;;;;5536:58;;-1:-1:-1;5613:26:0;;5605:100;;;;-1:-1:-1;;;5605:100:0;;5547:2:1;5605:100:0;;;5529:21:1;5586:2;5566:18;;;5559:30;5625:34;5605:18;;;5598:62;5696:31;5676:18;;;5669:59;5745:19;;5605:100:0;5345:425:1;5605:100:0;5747:3;6720:15;5724:26;;5716:108;;;;-1:-1:-1;;;5716:108:0;;5977:2:1;5716:108:0;;;5959:21:1;6016:2;5996:18;;;5989:30;6055:34;6035:18;;;6028:62;6126:34;6106:18;;;6099:62;6198:7;6177:19;;;6170:36;6223:19;;5716:108:0;5775:473:1;5716:108:0;5866:18;2303:7;5866:3;:18;:::i;:::-;6720:15;5843:41;;5835:105;;;;-1:-1:-1;;;5835:105:0;;6742:2:1;5835:105:0;;;6724:21:1;6781:2;6761:18;;;6754:30;6820:34;6800:18;;;6793:62;6891:21;6871:18;;;6864:49;6930:19;;5835:105:0;6540:415:1;5835:105:0;5982:5;5953:26;;;:18;:26;;;;;:34;;;;;;6038:23;;6000:21;;6034:179;;-1:-1:-1;6094:4:0;6034:179;;;6182:9;6166:27;;;;;;6196:4;6142:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6131:70;;6034:179;6286:12;6300:23;6327:6;:11;;6346:5;6353:8;6327:35;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6285:77;;;;6381:7;6373:81;;;;-1:-1:-1;;;6373:81:0;;7863:2:1;6373:81:0;;;7845:21:1;7902:2;7882:18;;;7875:30;7941:34;7921:18;;;7914:62;8012:31;7992:18;;;7985:59;8061:19;;6373:81:0;7661:425:1;6373:81:0;6499:6;6472:63;;6491:6;6472:63;6507:5;6514:9;6525:4;6531:3;6472:63;;;;;;;;;:::i;:::-;;;;;;;;6555:10;5259:1314;-1:-1:-1;;;;;;;;;5259:1314:0:o;3409:242::-;3472:12;;;;3458:10;:26;3450:95;;;;-1:-1:-1;;;3450:95:0;;8821:2:1;3450:95:0;;;8803:21:1;8860:2;8840:18;;;8833:30;8899:34;8879:18;;;8872:62;8970:26;8950:18;;;8943:54;9014:19;;3450:95:0;8619:420:1;3450:95:0;3556:5;:18;;3564:10;3556:18;;;;;;;;-1:-1:-1;3585:25:0;;;;;;;;3628:15;;3564:10;;3628:15;;;3409:242::o;4204:604::-;4328:7;4370:5;;;;4356:10;:19;4348:86;;;;-1:-1:-1;;;4348:86:0;;9246:2:1;4348:86:0;;;9228:21:1;9285:2;9265:18;;;9258:30;9324:34;9304:18;;;9297:62;9395:24;9375:18;;;9368:52;9437:19;;4348:86:0;9044:418:1;4348:86:0;4482:5;;4460:27;;6720:15;4460:27;:::i;:::-;4453:3;:34;;4445:120;;;;-1:-1:-1;;;4445:120:0;;9669:2:1;4445:120:0;;;9651:21:1;9708:2;9688:18;;;9681:30;9747:34;9727:18;;;9720:62;9818:34;9798:18;;;9791:62;9890:11;9869:19;;;9862:40;9919:19;;4445:120:0;9467:477:1;4445:120:0;4578:14;4616:6;4624:5;4631:9;4642:4;4648:3;4605:47;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;4605:47:0;;;;;;;;;4595:58;;4605:47;4595:58;;;;4664:26;;;;:18;:26;;;;;;:33;;;;4693:4;4664:33;;;4595:58;-1:-1:-1;4715:61:0;;;;4595:58;;4715:61;;;;4748:5;;4755:9;;4766:4;;4772:3;;4715:61;:::i;:::-;;;;;;;;4794:6;4204:604;-1:-1:-1;;;;;;4204:604:0:o;3659:537::-;3798:17;;;;3794:309;;;3840:10;3862:4;3840:27;3832:96;;;;-1:-1:-1;;;3832:96:0;;10151:2:1;3832:96:0;;;10133:21:1;10190:2;10170:18;;;10163:30;10229:34;10209:18;;;10202:62;10300:26;10280:18;;;10273:54;10344:19;;3832:96:0;9949:420:1;3832:96:0;3794:309;;;3983:5;;;;3969:10;:19;3961:91;;;;-1:-1:-1;;;3961:91:0;;10576:2:1;3961:91:0;;;10558:21:1;10615:2;10595:18;;;10588:30;10654:34;10634:18;;;10627:62;10725:29;10705:18;;;10698:57;10772:19;;3961:91:0;10374:423:1;3961:91:0;4067:17;:24;;;;4087:4;4067:24;;;3794:309;4113:12;:28;;;;;;;;;;;;;4159:29;;;;-1:-1:-1;;4159:29:0;3659:537;:::o;4816:435::-;4965:5;;;;4951:10;:19;4943:87;;;;-1:-1:-1;;;4943:87:0;;11004:2:1;4943:87:0;;;10986:21:1;11043:2;11023:18;;;11016:30;11082:34;11062:18;;;11055:62;11153:25;11133:18;;;11126:53;11196:19;;4943:87:0;10802:419:1;4943:87:0;5043:14;5081:6;5089:5;5096:9;5107:4;5113:3;5070:47;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;5070:47:0;;;;;;;;;5060:58;;5070:47;5060:58;;;;5158:5;5129:26;;;:18;:26;;;;;;:34;;;;;;5060:58;-1:-1:-1;5181:62:0;;;;5060:58;;5181:62;;;;5215:5;;5222:9;;5233:4;;5239:3;;5181:62;:::i;:::-;;;;;;;;4932:319;4816:435;;;;;:::o;2995:406::-;3052:10;3074:4;3052:27;3044:89;;;;-1:-1:-1;;;3044:89:0;;11428:2:1;3044:89:0;;;11410:21:1;11467:2;11447:18;;;11440:30;11506:34;11486:18;;;11479:62;11577:19;11557:18;;;11550:47;11614:19;;3044:89:0;11226:413:1;3044:89:0;2354:7;3152:6;:23;;3144:88;;;;-1:-1:-1;;;3144:88:0;;11846:2:1;3144:88:0;;;11828:21:1;11885:2;11865:18;;;11858:30;11924:34;11904:18;;;11897:62;11995:22;11975:18;;;11968:50;12035:19;;3144:88:0;11644:416:1;3144:88:0;2405:7;3251:6;:23;;3243:92;;;;-1:-1:-1;;;3243:92:0;;12267:2:1;3243:92:0;;;12249:21:1;12306:2;12286:18;;;12279:30;12345:34;12325:18;;;12318:62;12416:26;12396:18;;;12389:54;12460:19;;3243:92:0;12065:420:1;3243:92:0;3346:5;:14;;;3378:15;;3354:6;;3378:15;;;;;2995:406;:::o;14:196:1:-;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:184::-;267:77;264:1;257:88;364:4;361:1;354:15;388:4;385:1;378:15;404:691;469:5;499:18;540:2;532:6;529:14;526:40;;;546:18;;:::i;:::-;680:2;674:9;746:2;734:15;;-1:-1:-1;;730:24:1;;;756:2;726:33;722:42;710:55;;;780:18;;;800:22;;;777:46;774:72;;;826:18;;:::i;:::-;866:10;862:2;855:22;895:6;886:15;;925:6;917;910:22;965:3;956:6;951:3;947:16;944:25;941:45;;;982:1;979;972:12;941:45;1032:6;1027:3;1020:4;1012:6;1008:17;995:44;1087:1;1080:4;1071:6;1063;1059:19;1055:30;1048:41;;;;404:691;;;;;:::o;1100:1012::-;1214:6;1222;1230;1238;1246;1299:3;1287:9;1278:7;1274:23;1270:33;1267:53;;;1316:1;1313;1306:12;1267:53;1339:29;1358:9;1339:29;:::i;:::-;1329:39;;1415:2;1404:9;1400:18;1387:32;1377:42;;1470:2;1459:9;1455:18;1442:32;1493:18;1534:2;1526:6;1523:14;1520:34;;;1550:1;1547;1540:12;1520:34;1588:6;1577:9;1573:22;1563:32;;1633:7;1626:4;1622:2;1618:13;1614:27;1604:55;;1655:1;1652;1645:12;1604:55;1678:74;1744:7;1739:2;1726:16;1721:2;1717;1713:11;1678:74;:::i;:::-;1668:84;;1805:2;1794:9;1790:18;1777:32;1761:48;;1834:2;1824:8;1821:16;1818:36;;;1850:1;1847;1840:12;1818:36;-1:-1:-1;1873:24:1;;1928:4;1920:13;;1916:27;-1:-1:-1;1906:55:1;;1957:1;1954;1947:12;1906:55;1980:74;2046:7;2041:2;2028:16;2023:2;2019;2015:11;1980:74;:::i;:::-;1100:1012;;;;-1:-1:-1;1100:1012:1;;2101:3;2086:19;2073:33;;1100:1012;-1:-1:-1;;;1100:1012:1:o;2117:258::-;2189:1;2199:113;2213:6;2210:1;2207:13;2199:113;;;2289:11;;;2283:18;2270:11;;;2263:39;2235:2;2228:10;2199:113;;;2330:6;2327:1;2324:13;2321:48;;;2365:1;2356:6;2351:3;2347:16;2340:27;2321:48;;2117:258;;;:::o;2380:316::-;2421:3;2459:5;2453:12;2486:6;2481:3;2474:19;2502:63;2558:6;2551:4;2546:3;2542:14;2535:4;2528:5;2524:16;2502:63;:::i;:::-;2610:2;2598:15;-1:-1:-1;;2594:88:1;2585:98;;;;2685:4;2581:109;;2380:316;-1:-1:-1;;2380:316:1:o;2701:217::-;2848:2;2837:9;2830:21;2811:4;2868:44;2908:2;2897:9;2893:18;2885:6;2868:44;:::i;:::-;2860:52;2701:217;-1:-1:-1;;;2701:217:1:o;3336:186::-;3395:6;3448:2;3436:9;3427:7;3423:23;3419:32;3416:52;;;3464:1;3461;3454:12;3416:52;3487:29;3506:9;3487:29;:::i;3901:180::-;3960:6;4013:2;4001:9;3992:7;3988:23;3984:32;3981:52;;;4029:1;4026;4019:12;3981:52;-1:-1:-1;4052:23:1;;3901:180;-1:-1:-1;3901:180:1:o;4696:644::-;4987:42;4979:6;4975:55;4964:9;4957:74;5067:6;5062:2;5051:9;5047:18;5040:34;5110:3;5105:2;5094:9;5090:18;5083:31;4938:4;5137:45;5177:3;5166:9;5162:19;5154:6;5137:45;:::i;:::-;5230:9;5222:6;5218:22;5213:2;5202:9;5198:18;5191:50;5258:32;5283:6;5275;5258:32;:::i;:::-;5250:40;;;5327:6;5321:3;5310:9;5306:19;5299:35;4696:644;;;;;;;;:::o;6253:282::-;6293:3;6324:1;6320:6;6317:1;6314:13;6311:193;;;6360:77;6357:1;6350:88;6461:4;6458:1;6451:15;6489:4;6486:1;6479:15;6311:193;-1:-1:-1;6520:9:1;;6253:282::o;6960:417::-;7157:66;7149:6;7145:79;7140:3;7133:92;7115:3;7254:6;7248:13;7270:61;7324:6;7320:1;7315:3;7311:11;7304:4;7296:6;7292:17;7270:61;:::i;:::-;7351:16;;;;7369:1;7347:24;;6960:417;-1:-1:-1;;;6960:417:1:o;7382:274::-;7511:3;7549:6;7543:13;7565:53;7611:6;7606:3;7599:4;7591:6;7587:17;7565:53;:::i;:::-;7634:16;;;;;7382:274;-1:-1:-1;;7382:274:1:o;8091:523::-;8342:6;8331:9;8324:25;8385:3;8380:2;8369:9;8365:18;8358:31;8305:4;8412:45;8452:3;8441:9;8437:19;8429:6;8412:45;:::i;:::-;8505:9;8497:6;8493:22;8488:2;8477:9;8473:18;8466:50;8533:32;8558:6;8550;8533:32;:::i;:::-;8525:40;;;8601:6;8596:2;8585:9;8581:18;8574:34;8091:523;;;;;;;:::o

Swarm Source

ipfs://de8e7424675607730a1dfef1af291dff9c0fbbee269b70b364559d899d0b544d
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Validator ID :
0 FTM

Amount Staked
0

Amount Delegated
0

Staking Total
0

Staking Start Epoch
0

Staking Start Time
0

Proof of Importance
0

Origination Score
0

Validation Score
0

Active
0

Online
0

Downtime
0 s
Address Amount claimed Rewards Created On Epoch Created On
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.