ETH Price: $3,443.28 (+3.26%)

Contract

0x30AFb94c1f6FB0fC4B566e098ab847249D7C478E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Initialize139992352022-01-13 20:11:151392 days ago1642104675IN
0x30AFb94c...49D7C478E
0 ETH0.00455706146.59083703
Transfer Ownersh...139989222022-01-13 19:00:511392 days ago1642100451IN
0x30AFb94c...49D7C478E
0 ETH0.00555177163.24913299
Stake139954962022-01-13 6:12:281392 days ago1642054348IN
0x30AFb94c...49D7C478E
0 ETH0.0037103135.87394155
Stake139954942022-01-13 6:11:591392 days ago1642054319IN
0x30AFb94c...49D7C478E
0 ETH0.00359013131.47323967
Claim And Unstak...139943142022-01-13 1:49:071393 days ago1642038547IN
0x30AFb94c...49D7C478E
0 ETH0.09250358133.65445038
Claim And Unstak...139942672022-01-13 1:38:521393 days ago1642037932IN
0x30AFb94c...49D7C478E
0 ETH0.03881015101
Claim And Unstak...139938612022-01-13 0:08:301393 days ago1642032510IN
0x30AFb94c...49D7C478E
0 ETH0.1038367200.25708523
Claim And Unstak...139937052022-01-12 23:31:301393 days ago1642030290IN
0x30AFb94c...49D7C478E
0 ETH0.09330415117.00108602
Stake139934262022-01-12 22:29:541393 days ago1642026594IN
0x30AFb94c...49D7C478E
0 ETH0.04423592154.42538564
Initialize139933682022-01-12 22:17:011393 days ago1642025821IN
0x30AFb94c...49D7C478E
0 ETH0.03081682220.56284725
Initialize139933372022-01-12 22:09:231393 days ago1642025363IN
0x30AFb94c...49D7C478E
0 ETH0.03602089258.25315005
Initialize139932512022-01-12 21:48:111393 days ago1642024091IN
0x30AFb94c...49D7C478E
0 ETH0.02533479215.91115383
Stake139931912022-01-12 21:35:531393 days ago1642023353IN
0x30AFb94c...49D7C478E
0 ETH0.00469006171.75307227
Stake139931732022-01-12 21:32:011393 days ago1642023121IN
0x30AFb94c...49D7C478E
0 ETH0.00563434206.33322308
Claim And Unstak...139931672022-01-12 21:29:481393 days ago1642022988IN
0x30AFb94c...49D7C478E
0 ETH0.01169695173.08567418
Stake139931672022-01-12 21:29:481393 days ago1642022988IN
0x30AFb94c...49D7C478E
0 ETH0.00937778173.08567418
Initialize139931662022-01-12 21:29:441393 days ago1642022984IN
0x30AFb94c...49D7C478E
0 ETH0.02190885186.33305053
Stake139931632022-01-12 21:28:491393 days ago1642022929IN
0x30AFb94c...49D7C478E
0 ETH0.09932949140.9758848
Claim And Unstak...139931542022-01-12 21:27:401393 days ago1642022860IN
0x30AFb94c...49D7C478E
0 ETH0.12316934153.88800282
Claim And Unstak...139931492022-01-12 21:26:591393 days ago1642022819IN
0x30AFb94c...49D7C478E
0 ETH0.03926565184.85260218
Claim And Unstak...139931402022-01-12 21:24:251393 days ago1642022665IN
0x30AFb94c...49D7C478E
0 ETH0.02433967186.95936939
Claim And Unstak...139931402022-01-12 21:24:251393 days ago1642022665IN
0x30AFb94c...49D7C478E
0 ETH0.03971316186.95936939
Claim And Unstak...139931252022-01-12 21:21:131393 days ago1642022473IN
0x30AFb94c...49D7C478E
0 ETH0.03959762186.4154384
Claim And Unstak...139931172022-01-12 21:19:011393 days ago1642022341IN
0x30AFb94c...49D7C478E
0 ETH0.05003463145.79705388
Claim And Unstak...139931062022-01-12 21:17:251393 days ago1642022245IN
0x30AFb94c...49D7C478E
0 ETH0.04191318197.31650695
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-12
*/

// File: TestContracts/Proxy.sol

pragma solidity 0.8.7;

/// @dev Proxy for NFT Factory
contract Proxy {

    // Storage for this proxy
    bytes32 private constant IMPLEMENTATION_SLOT = bytes32(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc);
    bytes32 private constant ADMIN_SLOT          = bytes32(0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103);

    constructor(address impl) {
        require(impl != address(0));

        _setSlotValue(IMPLEMENTATION_SLOT, bytes32(uint256(uint160(impl))));
        _setSlotValue(ADMIN_SLOT, bytes32(uint256(uint160(msg.sender))));
    }

    function setImplementation(address newImpl) public {
        require(msg.sender == _getAddress(ADMIN_SLOT));
        _setSlotValue(IMPLEMENTATION_SLOT, bytes32(uint256(uint160(newImpl))));
    }
    
    function implementation() public view returns (address impl) {
        impl = address(uint160(uint256(_getSlotValue(IMPLEMENTATION_SLOT))));
    }

    function _getAddress(bytes32 key) internal view returns (address add) {
        add = address(uint160(uint256(_getSlotValue(key))));
    }

    function _getSlotValue(bytes32 slot_) internal view returns (bytes32 value_) {
        assembly {
            value_ := sload(slot_)
        }
    }

    function _setSlotValue(bytes32 slot_, bytes32 value_) internal {
        assembly {
            sstore(slot_, value_)
        }
    }

    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation__) internal virtual {
        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 Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _delegate(_getAddress(IMPLEMENTATION_SLOT));
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImpl","type":"address"}],"name":"setImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"}]

0x608060405234801561001057600080fd5b5060405161048738038061048783398181016040528101906100329190610126565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561006c57600080fd5b6100b87f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8273ffffffffffffffffffffffffffffffffffffffff1660001b61010a60201b60201c565b6101047fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b3373ffffffffffffffffffffffffffffffffffffffff1660001b61010a60201b60201c565b506101a1565b8082555050565b6000815190506101208161018a565b92915050565b60006020828403121561013c5761013b610185565b5b600061014a84828501610111565b91505092915050565b600061015e82610165565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b61019381610153565b811461019e57600080fd5b50565b6102d7806101b06000396000f3fe60806040526004361061002d5760003560e01c80635c60da1b14610064578063d784d4261461008f5761002e565b5b61006261005d7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6100b8565b6100cd565b005b34801561007057600080fd5b506100796100f3565b6040516100869190610238565b60405180910390f35b34801561009b57600080fd5b506100b660048036038101906100b191906101fc565b610129565b005b60006100c3826101d5565b60001c9050919050565b3660008037600080366000845af43d6000803e80600081146100ee573d6000f35b3d6000fd5b60006101217f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6101d5565b60001c905090565b6101557fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b6100b8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461018c57600080fd5b6101d27f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8273ffffffffffffffffffffffffffffffffffffffff1660001b6101e0565b50565b600081549050919050565b8082555050565b6000813590506101f68161028a565b92915050565b60006020828403121561021257610211610285565b5b6000610220848285016101e7565b91505092915050565b61023281610253565b82525050565b600060208201905061024d6000830184610229565b92915050565b600061025e82610265565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b61029381610253565b811461029e57600080fd5b5056fea2646970667358221220248d11a3fde11665845c4dc288385c5eeda3ee4e694ae94949913a89afcbdb8d64736f6c63430008070033000000000000000000000000a210aa164bfe631dc987842534b14f1f4f7fc8b6

Deployed Bytecode

0x60806040526004361061002d5760003560e01c80635c60da1b14610064578063d784d4261461008f5761002e565b5b61006261005d7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6100b8565b6100cd565b005b34801561007057600080fd5b506100796100f3565b6040516100869190610238565b60405180910390f35b34801561009b57600080fd5b506100b660048036038101906100b191906101fc565b610129565b005b60006100c3826101d5565b60001c9050919050565b3660008037600080366000845af43d6000803e80600081146100ee573d6000f35b3d6000fd5b60006101217f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6101d5565b60001c905090565b6101557fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b6100b8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461018c57600080fd5b6101d27f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8273ffffffffffffffffffffffffffffffffffffffff1660001b6101e0565b50565b600081549050919050565b8082555050565b6000813590506101f68161028a565b92915050565b60006020828403121561021257610211610285565b5b6000610220848285016101e7565b91505092915050565b61023281610253565b82525050565b600060208201905061024d6000830184610229565b92915050565b600061025e82610265565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b61029381610253565b811461029e57600080fd5b5056fea2646970667358221220248d11a3fde11665845c4dc288385c5eeda3ee4e694ae94949913a89afcbdb8d64736f6c63430008070033

Deployed Bytecode Sourcemap

94:2799:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;2837:43;2847:32;204:66;196:75;;2847:11;:32::i;:::-;2837:9;:43::i;:::-;94:2799;853:148;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;644:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1009:140;1066:11;1120:18;1134:3;1120:13;:18::i;:::-;1112:27;;1090:51;;1009:140;;;:::o;1663:922::-;2008:14;2005:1;2002;1989:34;2228:1;2225;2209:14;2206:1;2188:16;2181:5;2168:62;2307:16;2304:1;2301;2286:38;2347:6;2421:1;2416:68;;;;2535:16;2532:1;2525:27;2416:68;2452:16;2449:1;2442:27;853:148;900:12;956:34;204:66;196:75;;956:13;:34::i;:::-;948:43;;925:68;;853:148;:::o;644:197::-;728:23;333:66;325:75;;728:11;:23::i;:::-;714:37;;:10;:37;;;706:46;;;;;;763:70;204:66;196:75;;822:7;806:25;;798:34;;763:13;:70::i;:::-;644:197;:::o;1157:152::-;1218:14;1285:5;1279:12;1269:22;;1157:152;;;:::o;1317:137::-;1429:6;1422:5;1415:21;1317:137;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:222::-;704:4;742:2;731:9;727:18;719:26;;755:71;823:1;812:9;808:17;799:6;755:71;:::i;:::-;611:222;;;;:::o;920:96::-;957:7;986:24;1004:5;986:24;:::i;:::-;975:35;;920:96;;;:::o;1022:126::-;1059:7;1099:42;1092:5;1088:54;1077:65;;1022:126;;;:::o;1277:117::-;1386:1;1383;1376:12;1400:122;1473:24;1491:5;1473:24;:::i;:::-;1466:5;1463:35;1453:63;;1512:1;1509;1502:12;1453:63;1400:122;:::o

Swarm Source

ipfs://248d11a3fde11665845c4dc288385c5eeda3ee4e694ae94949913a89afcbdb8d

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.