FTM Price: $1.03 (-0.90%)
Gas: 110 GWei

Contract

0xf824717E5e7cefd7Aa78112Fb7e62dd9422488D3
 

Overview

FTM Balance

Fantom LogoFantom LogoFantom Logo0 FTM

FTM Value

$0.00

Token Holdings

Sponsored

Transaction Hash
Method
Block
From
To
Value
List Item780757902024-03-23 22:36:484 days ago1711233408IN
0xf824717E...9422488D3
0 FTM0.0056823538.3603255
Update Listing777338202024-03-19 20:19:488 days ago1710879588IN
0xf824717E...9422488D3
0 FTM0.075522531,095.13258091
Update Listing777176532024-03-19 16:23:458 days ago1710865425IN
0xf824717E...9422488D3
0 FTM0.085324461,128.82460678
Update Listing774957742024-03-16 17:30:2311 days ago1710610223IN
0xf824717E...9422488D3
0 FTM0.00956145126.90064855
Update Listing774956192024-03-16 17:27:4411 days ago1710610064IN
0xf824717E...9422488D3
0 FTM0.00878306126.90820026
Update Listing774955782024-03-16 17:27:0111 days ago1710610021IN
0xf824717E...9422488D3
0 FTM0.00956003126.90201033
List Item768788502024-03-06 21:48:1421 days ago1709761694IN
0xf824717E...9422488D3
0 FTM0.0123715773.26832365
List Item768788202024-03-06 21:47:4621 days ago1709761666IN
0xf824717E...9422488D3
0 FTM0.0123742373.28404457
List Item768787752024-03-06 21:46:5021 days ago1709761610IN
0xf824717E...9422488D3
0 FTM0.0123787773.3109845
List Item768768062024-03-06 21:11:4921 days ago1709759509IN
0xf824717E...9422488D3
0 FTM0.0127225475.34687101
Update Listing766673152024-03-03 20:42:2324 days ago1709498543IN
0xf824717E...9422488D3
0 FTM0.0071365994.71762634
Buy Item747161162024-01-24 7:33:0464 days ago1706081584IN
0xf824717E...9422488D3
0 FTM0.02853864124.31670511
List Item729340942023-12-21 18:00:0697 days ago1703181606IN
0xf824717E...9422488D3
0 FTM0.0107697872.20487254
Buy Item724012542023-12-11 19:10:28107 days ago1702321828IN
0xf824717E...9422488D3
0 FTM0.0186755571
Create Offer723617562023-12-10 20:43:55108 days ago1702241035IN
0xf824717E...9422488D3
0 FTM0.0123129176
Buy Item718360442023-12-03 19:29:16115 days ago1701631756IN
0xf824717E...9422488D3
0 FTM0.0098159937.5160323
Create Offer705788292023-11-13 20:29:16135 days ago1699907356IN
0xf824717E...9422488D3
0 FTM0.0047902830.88156331
Create Offer705785482023-11-13 20:22:30135 days ago1699906950IN
0xf824717E...9422488D3
0 FTM0.0049235131.62300721
Cancel Offer694599012023-10-18 7:39:19162 days ago1697614759IN
0xf824717E...9422488D3
0 FTM0.0017287739.52107363
Cancel Listing694598592023-10-18 7:37:52162 days ago1697614672IN
0xf824717E...9422488D3
0 FTM0.0021375138.84277899
List Item694597522023-10-18 7:34:29162 days ago1697614469IN
0xf824717E...9422488D3
0 FTM0.0060015938.53399001
Create Offer694596802023-10-18 7:31:48162 days ago1697614308IN
0xf824717E...9422488D3
0 FTM0.005969238.43435349
Buy Item694594522023-10-18 7:23:11162 days ago1697613791IN
0xf824717E...9422488D3
0 FTM0.0056802131.16234668
Cancel Listing682904912023-09-17 22:08:28192 days ago1694988508IN
0xf824717E...9422488D3
0 FTM0.0045536175.39225969
Cancel Listing677455172023-09-02 15:49:54207 days ago1693669794IN
0xf824717E...9422488D3
0 FTM0.02606704431.3735767
View all transactions

Latest 1 internal transaction

Parent Txn Hash Block From To Value
275430202022-01-10 10:00:08808 days ago1641808808  Contract Creation0 FTM
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x793970a6...5E894a80e
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
AdminUpgradeabilityProxy

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at ftmscan.com on 2021-11-23
*/

pragma solidity ^0.8.0;


// SPDX-License-Identifier: MIT
/**
 * @title Proxy
 * @dev Implements delegation of calls to other contracts, with proper
 * forwarding of return values and bubbling of failures.
 * It defines a fallback function that delegates all calls to the address
 * returned by the abstract _implementation() internal function.
 */
abstract contract Proxy {
    /**
     * @dev Fallback function.
     * Implemented entirely in `_fallback`.
     */
    fallback() external payable {
        _fallback();
    }

    /**
     * @dev Receive function.
     * Implemented entirely in `_fallback`.
     */
    receive() external payable {
        _fallback();
    }

    /**
     * @return The Address of the implementation.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates execution to an implementation contract.
     * This is a low level function that doesn't return to its internal call site.
     * It will return to the external caller whatever the implementation returns.
     * @param implementation Address to delegate.
     */
    function _delegate(address implementation) internal {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(
                gas(),
                implementation,
                0,
                calldatasize(),
                0,
                0
            )

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev Function that is run as the first thing in the fallback function.
     * Can be redefined in derived contracts to add functionality.
     * Redefinitions must call super._willFallback().
     */
    function _willFallback() internal virtual {}

    /**
     * @dev fallback implementation.
     * Extracted to enable manual triggering.
     */
    function _fallback() internal {
        _willFallback();
        _delegate(_implementation());
    }
}

// File: @openzeppelin/contracts/utils/Address.sol
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: contracts/proxy/UpgradeabilityProxy.sol
/**
 * @title UpgradeabilityProxy
 * @dev This contract implements a proxy that allows to change the
 * implementation address to which it will delegate.
 * Such a change is called an implementation upgrade.
 */
contract UpgradeabilityProxy is Proxy {
    /**
     * @dev Contract constructor.
     * @param _logic Address of the initial implementation.
     * @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
     * It should include the signature and the parameters of the function to be called, as described in
     * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
     * This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
     */
    constructor(address _logic, bytes memory _data) public payable {
        assert(
            IMPLEMENTATION_SLOT ==
                bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1)
        );
        _setImplementation(_logic);
        if (_data.length > 0) {
            (bool success, ) = _logic.delegatecall(_data);
            require(success);
        }
    }

    /**
     * @dev Emitted when the implementation is upgraded.
     * @param implementation Address of the new implementation.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant IMPLEMENTATION_SLOT =
        0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Returns the current implementation.
     * @return impl Address of the current implementation
     */
    function _implementation() internal view override returns (address impl) {
        bytes32 slot = IMPLEMENTATION_SLOT;
        assembly {
            impl := sload(slot)
        }
    }

    /**
     * @dev Upgrades the proxy to a new implementation.
     * @param newImplementation Address of the new implementation.
     */
    function _upgradeTo(address newImplementation) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Sets the implementation address of the proxy.
     * @param newImplementation Address of the new implementation.
     */
    function _setImplementation(address newImplementation) internal {
        require(
            Address.isContract(newImplementation),
            "Cannot set a proxy implementation to a non-contract address"
        );

        bytes32 slot = IMPLEMENTATION_SLOT;

        assembly {
            sstore(slot, newImplementation)
        }
    }
}

// File: contracts/proxy/AdminUpgradeabilityProxy.sol
/**
 * @title AdminUpgradeabilityProxy
 * @dev This contract combines an upgradeability proxy with an authorization
 * mechanism for administrative tasks.
 * All external functions in this contract must be guarded by the
 * `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity
 * feature proposal that would enable this to be done automatically.
 */
contract AdminUpgradeabilityProxy is UpgradeabilityProxy {
    /**
     * Contract constructor.
     * @param _logic address of the initial implementation.
     * @param _admin Address of the proxy administrator.
     * @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
     * It should include the signature and the parameters of the function to be called, as described in
     * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
     * This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
     */
    constructor(
        address _logic,
        address _admin,
        bytes memory _data
    ) public payable UpgradeabilityProxy(_logic, _data) {
        assert(
            ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1)
        );
        _setAdmin(_admin);
    }

    /**
     * @dev Emitted when the administration has been transferred.
     * @param previousAdmin Address of the previous admin.
     * @param newAdmin Address of the new admin.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
     * validated in the constructor.
     */

    bytes32 internal constant ADMIN_SLOT =
        0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Modifier to check whether the `msg.sender` is the admin.
     * If it is, it will run the function. Otherwise, it will delegate the call
     * to the implementation.
     */
    modifier ifAdmin() {
        if (msg.sender == _admin()) {
            _;
        } else {
            _fallback();
        }
    }

    /**
     * @return The address of the proxy admin.
     */
    function admin() external ifAdmin returns (address) {
        return _admin();
    }

    /**
     * @return The address of the implementation.
     */
    function implementation() external ifAdmin returns (address) {
        return _implementation();
    }

    /**
     * @dev Changes the admin of the proxy.
     * Only the current admin can call this function.
     * @param newAdmin Address to transfer proxy administration to.
     */
    function changeAdmin(address newAdmin) external ifAdmin {
        require(
            newAdmin != address(0),
            "Cannot change the admin of a proxy to the zero address"
        );
        emit AdminChanged(_admin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev Upgrade the backing implementation of the proxy.
     * Only the admin can call this function.
     * @param newImplementation Address of the new implementation.
     */
    function upgradeTo(address newImplementation) external ifAdmin {
        _upgradeTo(newImplementation);
    }

    /**
     * @dev Upgrade the backing implementation of the proxy and call a function
     * on the new implementation.
     * This is useful to initialize the proxied contract.
     * @param newImplementation Address of the new implementation.
     * @param data Data to send as msg.data in the low level call.
     * It should include the signature and the parameters of the function to be called, as described in
     * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
     */
    function upgradeToAndCall(address newImplementation, bytes calldata data)
        external
        payable
        ifAdmin
    {
        _upgradeTo(newImplementation);
        (bool success, ) = newImplementation.delegatecall(data);
        require(success);
    }

    /**
     * @return adm The admin slot.
     */
    function _admin() internal view returns (address adm) {
        bytes32 slot = ADMIN_SLOT;
        assembly {
            adm := sload(slot)
        }
    }

    /**
     * @dev Sets the address of the proxy admin.
     * @param newAdmin Address of the new proxy admin.
     */
    function _setAdmin(address newAdmin) internal {
        bytes32 slot = ADMIN_SLOT;

        assembly {
            sstore(slot, newAdmin)
        }
    }

    /**
     * @dev Only fall back when the sender is not the admin.
     */
    function _willFallback() internal virtual override {
        require(
            msg.sender != _admin(),
            "Cannot call fallback function from the proxy admin"
        );
        super._willFallback();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x60806040526004361061004e5760003560e01c80633659cfe6146100655780634f1ef286146100855780635c60da1b146100985780638f283970146100c3578063f851a440146100e35761005d565b3661005d5761005b6100f8565b005b61005b6100f8565b34801561007157600080fd5b5061005b610080366004610471565b610112565b61005b610093366004610492565b61014c565b3480156100a457600080fd5b506100ad6101f3565b6040516100ba9190610520565b60405180910390f35b3480156100cf57600080fd5b5061005b6100de366004610471565b610230565b3480156100ef57600080fd5b506100ad6102c9565b6101006102fe565b61011061010b61033f565b610364565b565b61011a610388565b6001600160a01b0316336001600160a01b031614156101415761013c816103ad565b610149565b6101496100f8565b50565b610154610388565b6001600160a01b0316336001600160a01b031614156101e657610176836103ad565b6000836001600160a01b03168383604051610192929190610510565b600060405180830381855af49150503d80600081146101cd576040519150601f19603f3d011682016040523d82523d6000602084013e6101d2565b606091505b50509050806101e057600080fd5b506101ee565b6101ee6100f8565b505050565b60006101fd610388565b6001600160a01b0316336001600160a01b031614156102255761021e61033f565b905061022d565b61022d6100f8565b90565b610238610388565b6001600160a01b0316336001600160a01b03161415610141576001600160a01b0381166102805760405162461bcd60e51b8152600401610277906105a0565b60405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6102a9610388565b826040516102b8929190610534565b60405180910390a161013c816103ed565b60006102d3610388565b6001600160a01b0316336001600160a01b031614156102255761021e610388565b803b15155b919050565b610306610388565b6001600160a01b0316336001600160a01b031614156103375760405162461bcd60e51b81526004016102779061054e565b610110610110565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b3660008037600080366000845af43d6000803e808015610383573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6103b681610411565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b61041a816102f4565b6104365760405162461bcd60e51b8152600401610277906105f6565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b80356001600160a01b03811681146102f957600080fd5b600060208284031215610482578081fd5b61048b8261045a565b9392505050565b6000806000604084860312156104a6578182fd5b6104af8461045a565b9250602084013567ffffffffffffffff808211156104cb578384fd5b818601915086601f8301126104de578384fd5b8135818111156104ec578485fd5b8760208285010111156104fd578485fd5b6020830194508093505050509250925092565b6000828483379101908152919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b60208082526032908201527f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667260408201527137b6903a343290383937bc3c9030b236b4b760711b606082015260800190565b60208082526036908201527f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f604082015275787920746f20746865207a65726f206164647265737360501b606082015260800190565b6020808252603b908201527f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f60408201527f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000060608201526080019056fea2646970667358221220a6ce59160d63acd90393148b5fac9bc009464a139b9c31895c37ad48c220154e64736f6c63430008000033

Deployed Bytecode Sourcemap

12483:4668:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684:11;:9;:11::i;:::-;12483:4668;;525:11;:9;:11::i;15391:111::-;;;;;;;;;;-1:-1:-1;15391:111:0;;;;;:::i;:::-;;:::i;16050:272::-;;;;;;:::i;:::-;;:::i;14610:104::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14909:279;;;;;;;;;;-1:-1:-1;14909:279:0;;;;;:::i;:::-;;:::i;14447:86::-;;;;;;;;;;;;;:::i;2565:103::-;2606:15;:13;:15::i;:::-;2632:28;2642:17;:15;:17::i;:::-;2632:9;:28::i;:::-;2565:103::o;15391:111::-;14284:8;:6;:8::i;:::-;-1:-1:-1;;;;;14270:22:0;:10;-1:-1:-1;;;;;14270:22:0;;14266:100;;;15465:29:::1;15476:17;15465:10;:29::i;:::-;14266:100:::0;;;14343:11;:9;:11::i;:::-;15391:111;:::o;16050:272::-;14284:8;:6;:8::i;:::-;-1:-1:-1;;;;;14270:22:0;:10;-1:-1:-1;;;;;14270:22:0;;14266:100;;;16192:29:::1;16203:17;16192:10;:29::i;:::-;16233:12;16251:17;-1:-1:-1::0;;;;;16251:30:0::1;16282:4;;16251:36;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16232:55;;;16306:7;16298:16;;;::::0;::::1;;14309:1;14266:100:::0;;;14343:11;:9;:11::i;:::-;16050:272;;;:::o;14610:104::-;14662:7;14284:8;:6;:8::i;:::-;-1:-1:-1;;;;;14270:22:0;:10;-1:-1:-1;;;;;14270:22:0;;14266:100;;;14689:17:::1;:15;:17::i;:::-;14682:24;;14266:100:::0;;;14343:11;:9;:11::i;:::-;14610:104;:::o;14909:279::-;14284:8;:6;:8::i;:::-;-1:-1:-1;;;;;14270:22:0;:10;-1:-1:-1;;;;;14270:22:0;;14266:100;;;-1:-1:-1;;;;;14998:22:0;::::1;14976:126;;;;-1:-1:-1::0;;;14976:126:0::1;;;;;;;:::i;:::-;;;;;;;;;15118:32;15131:8;:6;:8::i;:::-;15141;15118:32;;;;;;;:::i;:::-;;;;;;;;15161:19;15171:8;15161:9;:19::i;14447:86::-:0;14490:7;14284:8;:6;:8::i;:::-;-1:-1:-1;;;;;14270:22:0;:10;-1:-1:-1;;;;;14270:22:0;;14266:100;;;14517:8:::1;:6;:8::i;3408:444::-:0;3788:20;;3836:8;;3408:444;;;;:::o;16924:224::-;17022:8;:6;:8::i;:::-;-1:-1:-1;;;;;17008:22:0;:10;-1:-1:-1;;;;;17008:22:0;;;16986:122;;;;-1:-1:-1;;;16986:122:0;;;;;;;:::i;:::-;17119:21;:19;:21::i;11051:190::-;10850:66;11212:11;;11189:45::o;1155:1027::-;1490:14;1487:1;1484;1471:34;1811:1;1791;1758:14;1738:1;1705:14;1681:5;1650:177;1904:16;1901:1;1898;1883:38;1944:6;2013:68;;;;2132:16;2129:1;2122:27;2013:68;2049:16;2046:1;2039:27;16384:161;13961:66;16516:11;;16494:44::o;11392:155::-;11459:37;11478:17;11459:18;:37::i;:::-;11512:27;;-1:-1:-1;;;;;11512:27:0;;;;;;;;11392:155;:::o;16677:159::-;13961:66;16796:22;16781:48::o;11700:354::-;11797:37;11816:17;11797:18;:37::i;:::-;11775:146;;;;-1:-1:-1;;;11775:146:0;;;;;;;:::i;:::-;10850:66;12005:31;11990:57::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:717::-;;;;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:31;615:9;594:31;:::i;:::-;584:41;;676:2;665:9;661:18;648:32;699:18;740:2;732:6;729:14;726:2;;;761:6;753;746:22;726:2;804:6;793:9;789:22;779:32;;849:7;842:4;838:2;834:13;830:27;820:2;;876:6;868;861:22;820:2;921;908:16;947:2;939:6;936:14;933:2;;;968:6;960;953:22;933:2;1018:7;1013:2;1004:6;1000:2;996:15;992:24;989:37;986:2;;;1044:6;1036;1029:22;986:2;1080;1076;1072:11;1062:21;;1102:6;1092:16;;;;;503:611;;;;;:::o;1119:273::-;;1302:6;1294;1289:3;1276:33;1328:16;;1353:15;;;1328:16;1266:126;-1:-1:-1;1266:126:1:o;1397:203::-;-1:-1:-1;;;;;1561:32:1;;;;1543:51;;1531:2;1516:18;;1498:102::o;1605:304::-;-1:-1:-1;;;;;1835:15:1;;;1817:34;;1887:15;;1882:2;1867:18;;1860:43;1767:2;1752:18;;1734:175::o;1914:414::-;2116:2;2098:21;;;2155:2;2135:18;;;2128:30;2194:34;2189:2;2174:18;;2167:62;-1:-1:-1;;;2260:2:1;2245:18;;2238:48;2318:3;2303:19;;2088:240::o;2333:418::-;2535:2;2517:21;;;2574:2;2554:18;;;2547:30;2613:34;2608:2;2593:18;;2586:62;-1:-1:-1;;;2679:2:1;2664:18;;2657:52;2741:3;2726:19;;2507:244::o;2756:423::-;2958:2;2940:21;;;2997:2;2977:18;;;2970:30;3036:34;3031:2;3016:18;;3009:62;3107:29;3102:2;3087:18;;3080:57;3169:3;3154:19;;2930:249::o

Swarm Source

ipfs://a6ce59160d63acd90393148b5fac9bc009464a139b9c31895c37ad48c220154e

Block Transaction Difficulty 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

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ 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.