ETH Price: $3,458.39 (-0.71%)
Gas: 2 Gwei

Contract

0xC84cC1111aDacE071e2a57a61c42450d4e133F16
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Set Approval For...191296352024-01-31 23:08:23152 days ago1706742503IN
Defenders of Dogewood: Doges Token
0 ETH0.0008630429.50072961
Set Approval For...190692492024-01-23 12:03:59160 days ago1706011439IN
Defenders of Dogewood: Doges Token
0 ETH0.0005273618.0265214
Set Approval For...190508052024-01-20 21:37:35163 days ago1705786655IN
Defenders of Dogewood: Doges Token
0 ETH0.0005042117.23500752
Set Approval For...189883472024-01-12 4:10:35172 days ago1705032635IN
Defenders of Dogewood: Doges Token
0 ETH0.000475716.26742836
Set Approval For...189436522024-01-05 21:11:11178 days ago1704489071IN
Defenders of Dogewood: Doges Token
0 ETH0.0006340921.67492575
Set Approval For...188988322023-12-30 14:09:47184 days ago1703945387IN
Defenders of Dogewood: Doges Token
0 ETH0.0007867115.37547733
Approve188987192023-12-30 13:47:11184 days ago1703944031IN
Defenders of Dogewood: Doges Token
0 ETH0.0008342515.64380769
Set Approval For...188575792023-12-24 19:03:11190 days ago1703444591IN
Defenders of Dogewood: Doges Token
0 ETH0.0008958417.50818831
Set Approval For...188560852023-12-24 14:01:35190 days ago1703426495IN
Defenders of Dogewood: Doges Token
0 ETH0.001133938.87107749
Set Approval For...187317582023-12-07 3:32:35208 days ago1701919955IN
Defenders of Dogewood: Doges Token
0 ETH0.00205440.14314007
Set Approval For...187211062023-12-05 15:42:23209 days ago1701790943IN
Defenders of Dogewood: Doges Token
0 ETH0.001568253.60456442
Do Action With M...187175322023-12-05 3:41:23210 days ago1701747683IN
Defenders of Dogewood: Doges Token
0 ETH0.0076545842.30288836
Set Approval For...184232882023-10-24 23:07:35251 days ago1698188855IN
Defenders of Dogewood: Doges Token
0 ETH0.0006776923.16495463
Set Approval For...175186092023-06-20 4:43:35377 days ago1687236215IN
Defenders of Dogewood: Doges Token
0 ETH0.0004669615.96193256
Set Approval For...171837062023-05-04 0:20:11425 days ago1683159611IN
Defenders of Dogewood: Doges Token
0 ETH0.0030093158.82736399
Set Approval For...171643222023-05-01 6:53:35427 days ago1682924015IN
Defenders of Dogewood: Doges Token
0 ETH0.0023019745
Set Approval For...171627692023-05-01 1:37:59428 days ago1682905079IN
Defenders of Dogewood: Doges Token
0 ETH0.0014157748.41401366
Set Approval For...171627302023-05-01 1:30:11428 days ago1682904611IN
Defenders of Dogewood: Doges Token
0 ETH0.0020537740.14805184
Set Approval For...171315012023-04-26 16:09:35432 days ago1682525375IN
Defenders of Dogewood: Doges Token
0 ETH0.0014469649.46052856
Set Approval For...170494892023-04-15 2:29:23444 days ago1681525763IN
Defenders of Dogewood: Doges Token
0 ETH0.0006617422.68516773
Set Approval For...170122812023-04-09 17:43:59449 days ago1681062239IN
Defenders of Dogewood: Doges Token
0 ETH0.000624121.33335974
Set Approval For...170108632023-04-09 12:52:47449 days ago1681044767IN
Defenders of Dogewood: Doges Token
0 ETH0.0006070520.75050063
Set Approval For...169672412023-04-03 8:12:11455 days ago1680509531IN
Defenders of Dogewood: Doges Token
0 ETH0.0005475418.71617465
Transfer From169365982023-03-30 0:48:35460 days ago1680137315IN
Defenders of Dogewood: Doges Token
0 ETH0.0016889228.27646342
Set Approval For...168574452023-03-18 21:54:23471 days ago1679176463IN
Defenders of Dogewood: Doges Token
0 ETH0.000409713.13868453
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To Value
137903822021-12-12 12:44:00932 days ago1639313040
Defenders of Dogewood: Doges Token
0.79 ETH
137301232021-12-02 23:11:48942 days ago1638486708
Defenders of Dogewood: Doges Token
157.085 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Proxy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Proxy.sol
pragma solidity ^0.8.7;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
contract Proxy {

    address implementation_;
    address public admin;

    constructor(address impl) {
        implementation_ = impl;
        admin = msg.sender;
    }

    receive() external payable {}

    function setImplementation(address newImpl) public {
        require(msg.sender == admin);
        implementation_ = newImpl;
    }
    
    function implementation() public view returns (address impl) {
        impl = implementation_;
    }

    /**
     * @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 This is a virtual function that should be overriden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view returns (address) {
        return implementation_;
    }


    /**
     * @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(_implementation());
    }

}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b5060405161023038038061023083398101604081905261002f9161005d565b600080546001600160a01b039092166001600160a01b0319928316179055600180549091163317905561008d565b60006020828403121561006f57600080fd5b81516001600160a01b038116811461008657600080fd5b9392505050565b6101948061009c6000396000f3fe6080604052600436106100385760003560e01c80635c60da1b1461005b578063d784d42614610091578063f851a440146100b15761003f565b3661003f57005b6100596100546000546001600160a01b031690565b6100d1565b005b34801561006757600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200160405180910390f35b34801561009d57600080fd5b506100596100ac36600461012e565b6100f5565b3480156100bd57600080fd5b50600154610075906001600160a01b031681565b3660008037600080366000845af43d6000803e8080156100f0573d6000f35b3d6000fd5b6001546001600160a01b0316331461010c57600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006020828403121561014057600080fd5b81356001600160a01b038116811461015757600080fd5b939250505056fea2646970667358221220001de39dde5e7ae91a3354c2a773b0bb0ace15287bf25bdcfe0a0bfa11b586b764736f6c6343000807003300000000000000000000000019330e05464f8c6e671e7be24a8b220874ee082b

Deployed Bytecode

0x6080604052600436106100385760003560e01c80635c60da1b1461005b578063d784d42614610091578063f851a440146100b15761003f565b3661003f57005b6100596100546000546001600160a01b031690565b6100d1565b005b34801561006757600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200160405180910390f35b34801561009d57600080fd5b506100596100ac36600461012e565b6100f5565b3480156100bd57600080fd5b50600154610075906001600160a01b031681565b3660008037600080366000845af43d6000803e8080156100f0573d6000f35b3d6000fd5b6001546001600160a01b0316331461010c57600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006020828403121561014057600080fd5b81356001600160a01b038116811461015757600080fd5b939250505056fea2646970667358221220001de39dde5e7ae91a3354c2a773b0bb0ace15287bf25bdcfe0a0bfa11b586b764736f6c63430008070033

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

00000000000000000000000019330e05464f8c6e671e7be24a8b220874ee082b

-----Decoded View---------------
Arg [0] : impl (address): 0x19330e05464f8c6E671E7bE24a8B220874Ee082B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000019330e05464f8c6e671e7be24a8b220874ee082b


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Dogewood is an RPG that takes place 100% on-chain - with the metadata and images generated and stored fully on-chain.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.