Contract

0x2eDf18b640A705F16947A7B95Fc338fde340Dd48

Overview

SOPH Balance

Sophon LogoSophon LogoSophon Logo0 SOPH

SOPH Value

-

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer Ownersh...8626102024-12-28 4:43:467 days ago1735361026IN
0x2eDf18b6...de340Dd48
0 SOPH0.276502172,441.77901015
Set Stork Feeds ...8263712024-12-27 18:29:227 days ago1735324162IN
0x2eDf18b6...de340Dd48
0 SOPH1.114862763,139.96317303

Latest 1 internal transaction

Parent Transaction Hash Block From To
8115472024-12-27 14:17:597 days ago1735309079  Contract Creation0 SOPH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PriceFeedsProxy

Compiler Version
v0.8.26+commit.8a97fa7a

ZkSolc Version
v1.5.6

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion, None license
File 1 of 6 : PriceFeedsProxy.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.26;

import "contracts/proxies/Proxy2Step.sol";

contract PriceFeedsProxy is Proxy2Step {

    constructor(address impl_) Proxy2Step(impl_) {}

    receive() external override payable {
        (bool success,) = implementation.delegatecall("");
        require(success, "subcall failed");
    }
}

File 2 of 6 : Proxy2Step.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.26;

import "contracts/proxies/Upgradeable2Step.sol";

contract Proxy2Step is Upgradeable2Step {

    constructor(address impl_) {
        implementation = impl_;
    }

    fallback() external virtual payable {
        assembly {
            calldatacopy(0, 0, calldatasize())
            let result := delegatecall(gas(), sload(implementation.slot), 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            switch result
            case 0 { revert(0, returndatasize()) }
            default { return(0, returndatasize()) }
        }
    }

    receive() external virtual payable {}
}

File 3 of 6 : Upgradeable2Step.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.26;

import "contracts/access/Ownable2Step.sol";

event ReplaceImplementationStarted(address indexed previousImplementation, address indexed newImplementation);
event ReplaceImplementation(address indexed previousImplementation, address indexed newImplementation);
error Unauthorized();

contract Upgradeable2Step is Ownable2Step {
    address public pendingImplementation;
    address public implementation;

    constructor() Ownable(msg.sender) {}

    // called on an inheriting proxy contract
    function replaceImplementation(address impl_) public onlyOwner {
        pendingImplementation = impl_;
        emit ReplaceImplementationStarted(implementation, impl_);
    }

    // called from an inheriting implementation contract
    function acceptImplementation() public {
        if (msg.sender != pendingImplementation) {
            revert OwnableUnauthorizedAccount(msg.sender);
        }
        emit ReplaceImplementation(implementation, msg.sender);
        delete pendingImplementation;
        implementation = msg.sender;
    }

    // called on an inheriting implementation contract
    function becomeImplementation(Upgradeable2Step proxy) public {
        if (msg.sender != proxy.owner()) {
            revert Unauthorized();
        }
        proxy.acceptImplementation();
    }
}

File 4 of 6 : Ownable2Step.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.20;

import {Ownable} from "contracts/access/Ownable.sol";

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is specified at deployment time in the constructor for `Ownable`. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

    event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Returns the address of the pending owner.
     */
    function pendingOwner() public view virtual returns (address) {
        return _pendingOwner;
    }

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        if (pendingOwner() != sender) {
            revert OwnableUnauthorizedAccount(sender);
        }
        _transferOwnership(sender);
    }
}

File 5 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "contracts/utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

Settings
{
  "evmVersion": "shanghai",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "libraries": {
    "PriceFeedsProxy.sol": {}
  },
  "remappings": [
    "@erc721a=./node_modules/erc721a/contracts",
    "@chainlink=./node_modules/@chainlink/contracts/src/v0.8",
    "@openzeppelin=./node_modules/@openzeppelin",
    "OpenZeppelin=C:/Users/tomcb/.brownie/packages/OpenZeppelin",
    "paulrberg=C:/Users/tomcb/.brownie/packages/paulrberg"
  ],
  "metadata": {
    "appendCBOR": false,
    "bytecodeHash": "none"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"impl_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousImplementation","type":"address"},{"indexed":true,"internalType":"address","name":"newImplementation","type":"address"}],"name":"ReplaceImplementation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousImplementation","type":"address"},{"indexed":true,"internalType":"address","name":"newImplementation","type":"address"}],"name":"ReplaceImplementationStarted","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"acceptImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Upgradeable2Step","name":"proxy","type":"address"}],"name":"becomeImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"impl_","type":"address"}],"name":"replaceImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010000cff73d7ce226045d5e2a4ce6b355da3b43da40cd4b76b1a0b9406052010000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000036dcd5466c3299633c317a78a7237c2ebae2dca2

Deployed Bytecode

0x00010000000000020001000000000002000000000301034f0000006001100270000000a5041001970000000100200190000000310000c13d000000000143034f0000008002000039000000400020043f000000040040008c0000005c0000413d000000000203043b000000e002200270000000b30020009c000000690000213d000000ba0020009c000000cf0000a13d000000bb0020009c000001740000613d000000bc0020009c000001790000613d000000bd0020009c000000fa0000c13d0000000001000416000000000001004b000002170000c13d0000000101000039000000000201041a000000a8032001970000000006000411000000000063004b000001d90000c13d000000a902200197000000000021041b000000000100041a000000a902100197000000000262019f000000000020041b0000000002000414000000a805100197000000a50020009c000000a502008041000000c001200210000000aa011001c70000800d020000390000000303000039000000ab04000041000001900000013d0000000001000416000000000001004b000002170000c13d0000001f01400039000000a6011001970000008001100039000000400010043f0000001f0240018f000000a7054001980000008001500039000000420000613d0000008006000039000000000703034f000000007807043c0000000006860436000000000016004b0000003e0000c13d000000000002004b0000004f0000613d000000000353034f0000000302200210000000000501043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000210435000000200040008c000002170000413d000000800200043d000000a80020009c000002170000213d0000000006000411000000000006004b000001540000c13d000000ad01000041000000000010043f000000040000043f000000ae010000410000029000010430000000000004004b000000fa0000c13d0000000302000039000000000202041a0000000003000414000000a802200197000000040020008c0000008d0000c13d00000001020000390000000003000031000000000003004b000000970000c13d000000bc0000013d000000b40020009c000000d80000a13d000000b50020009c000001950000613d000000b60020009c0000019b0000613d000000b70020009c000000fa0000c13d000000240040008c000002170000413d0000000001000416000000000001004b000002170000c13d0000000401300370000000000601043b000000a80060009c000002170000213d000000000100041a000000a8011001970000000005000411000000000051004b000001de0000c13d0000000101000039000000000201041a000000a902200197000000000262019f000000000021041b0000000001000414000000a50010009c000000a501008041000000c001100210000000aa011001c70000800d020000390000000303000039000000c104000041000001900000013d000000a50030009c000000a503008041000000c001300210028e02890000040f000000010220018f0000006003100270000000a50030019d000000a503300197000000000003004b000000bc0000613d0000001f05300039000000cd055001970000003f05500039000000cd06500197000000400500043d0000000006650019000000000056004b00000000070000390000000107004039000000af0060009c000002630000213d0000000100700190000002630000c13d000000400060043f0000000006350436000000cd043001980000001f0530018f0000000003460019000000af0000613d000000000701034f000000007807043c0000000006860436000000000036004b000000ab0000c13d000000000005004b000000bc0000613d000000000141034f0000000304500210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000000002004b000001930000c13d000000400100043d0000004402100039000000b003000041000000000032043500000024021000390000000e030000390000000000320435000000b1020000410000000000210435000000040210003900000020030000390000000000320435000000a50010009c000000a5010080410000004001100210000000b2011001c70000029000010430000000be0020009c000001ae0000613d000000bf0020009c000000fa0000c13d0000000001000416000000000001004b000002170000c13d0000000201000039000001990000013d000000b80020009c000001d10000613d000000b90020009c000000fa0000c13d000000240040008c000002170000413d0000000001000416000000000001004b000002170000c13d0000000401300370000000000601043b000000a80060009c000002170000213d000000000100041a000000a8021001970000000001000411000000000012004b000001e30000c13d0000000201000039000000000201041a000000a902200197000000000262019f000000000021041b0000000303000039000000000103041a0000000002000414000000a805100197000000a50020009c000000a502008041000000c001200210000000aa011001c70000800d02000039000000cb04000041000001900000013d0000001f0540018f000000a702400198000001030000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000027004b000000ff0000c13d000000000005004b000001100000613d000000000323034f0000000305500210000000000602043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003204350000000302000039000000000202041a0000000003000414000000040020008c0000012d0000c13d0000000003000031000000cd023001980000001f0430018f0000011f0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b0000011b0000c13d000000000004004b0000014e0000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000014e0000013d0000006001400210000000a50030009c000000a503008041000000c003300210000000000113019f028e02890000040f00000060031002700000001f0530018f000000a50030019d000000a7043001980000013e0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000013a0000c13d000000000005004b0000014b0000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000a5033001970000000100200190000001520000613d000000a50030009c000000a50300804100000060013002100000028f0001042e000000600130021000000290000104300000000101000039000100000002001d000000000201041a000000a902200197000000000021041b000000000100041a000000a902100197000000000262019f000000000020041b0000000002000414000000a805100197000000a50020009c000000a502008041000000c001200210000000aa011001c70000800d020000390000000303000039000000ab04000041028e027f0000040f00000001002001900000000102000029000002170000613d0000000303000039000000000103041a000000a901100197000000000121019f000000000013041b000000200100003900000100001004430000012000000443000000ac010000410000028f0001042e0000000001000416000000000001004b000002170000c13d0000000301000039000001990000013d0000000001000416000000000001004b000002170000c13d000000000100041a000000a8021001970000000005000411000000000052004b000001de0000c13d0000000102000039000000000302041a000000a903300197000000000032041b000000a901100197000000000010041b0000000001000414000000a50010009c000000a501008041000000c001100210000000aa011001c70000800d020000390000000303000039000000ab040000410000000006000019028e027f0000040f0000000100200190000002170000613d00000000010000190000028f0001042e0000000001000416000000000001004b000002170000c13d0000000101000039000000000101041a000001d50000013d000000240040008c000002170000413d0000000001000416000000000001004b000002170000c13d0000000401300370000000000201043b000000a80020009c000002170000213d000000c201000041000000800010043f0000000001000414000000040020008c000001e80000c13d0000000003000031000000200030008c000000200400003900000000040340190000020e0000013d0000000001000416000000000001004b000002170000c13d0000000201000039000000000201041a000000a8012001970000000006000411000000000016004b000001d90000c13d000100000002001d0000000303000039000000000103041a0000000002000414000000a805100197000000a50020009c000000a502008041000000c001200210000000aa011001c70000800d02000039000000cc04000041028e027f0000040f0000000100200190000002170000613d0000000101000029000000a9011001970000000202000039000000000012041b0000000303000039000000000103041a000000a9011001970000000002000411000000000121019f000000000013041b00000000010000190000028f0001042e0000000001000416000000000001004b000002170000c13d000000000100041a000000a801100197000000800010043f000000ca010000410000028f0001042e000000c001000041000000000010043f000000040060043f000000ae010000410000029000010430000000c001000041000000000010043f000000040050043f000000ae010000410000029000010430000000c002000041000000000020043f000000040010043f000000ae010000410000029000010430000000a50010009c000000a501008041000000c001100210000000c3011001c7000100000002001d028e02840000040f000000800a0000390000006003100270000000a503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000001fd0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000001f90000c13d000000000006004b0000020a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000002190000613d00000001020000290000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000002170000413d000000800100043d000000a80010009c000002370000a13d000000000100001900000290000104300000001f0530018f000000a706300198000000400200043d0000000004620019000002240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000002200000c13d000000000005004b000002310000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000000a50020009c000000a5020080410000004002200210000000000112019f00000290000104300000000003000411000000000013004b000002690000c13d000000c6010000410000000000100443000100000002001d00000004002004430000000001000414000000a50010009c000000a501008041000000c001100210000000c7011001c70000800202000039028e02840000040f00000001002001900000026d0000613d000000000101043b000000000001004b0000000102000029000002170000613d000000400400043d000000c80100004100000000001404350000000001000414000000040020008c000002610000613d000000a50040009c000000a50300004100000000030440190000004003300210000000a50010009c000000a501008041000000c001100210000000000131019f000000c5011001c7000100000004001d028e027f0000040f00000001040000290000006003100270000000a50030019d0000000100200190000002710000613d000000af0040009c0000026e0000a13d000000c901000041000000000010043f0000004101000039000000040010043f000000ae010000410000029000010430000000c401000041000000000010043f000000c5010000410000029000010430000000000001042f000000400040043f00000000010000190000028f0001042e000000a5033001970000001f0530018f000000a706300198000000400200043d0000000004620019000002240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000002790000c13d000002240000013d000000000001042f00000282002104210000000102000039000000000001042d0000000002000019000000000001042d00000287002104230000000102000039000000000001042d0000000002000019000000000001042d0000028c002104250000000102000039000000000001042d0000000002000019000000000001042d0000028e000004320000028f0001042e000002900001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000002000000000000000000000000000000400000010000000000000000001e4fbdf7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff73756263616c6c206661696c656400000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000008da5cb5a00000000000000000000000000000000000000000000000000000000e30c397700000000000000000000000000000000000000000000000000000000e30c397800000000000000000000000000000000000000000000000000000000eaac8c3200000000000000000000000000000000000000000000000000000000f2fde38b000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000d69efdc5000000000000000000000000000000000000000000000000000000005c60da1a000000000000000000000000000000000000000000000000000000005c60da1b00000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000079ba50970000000000000000000000000000000000000000000000000000000015ba56e500000000000000000000000000000000000000000000000000000000396f7b23118cdaa70000000000000000000000000000000000000000000000000000000038d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227008da5cb5b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000080000000000000000082b429000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000015ba56e5000000000000000000000000000000000000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000080000000000000000067f679e13fe9dca16f3079221965ec41838cb8881cbc0f440bc13507c6b214c2eb7a7d62743daf8cf4055aea544d0a89e2011279ed4105567d010759e6fa4de2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00000000000000000000000000000000000000000000000000000000000000000

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

00000000000000000000000036dcd5466c3299633c317a78a7237c2ebae2dca2

-----Decoded View---------------
Arg [0] : impl_ (address): 0x36DCD5466C3299633c317a78A7237c2ebAE2DCA2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000036dcd5466c3299633c317a78a7237c2ebae2dca2


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  ]
[ 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.