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

Contract

0x8dBF9A4c99580fC7Fd4024ee08f3994420035727
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

ECO (ECO) (@$0.0091)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve202140692024-07-01 20:30:357 hrs ago1719865835IN
Eco: ECO Token
0 ETH0.00047779.34841233
Approve202090552024-07-01 3:42:4724 hrs ago1719805367IN
Eco: ECO Token
0 ETH0.000209684.08616077
Approve201978102024-06-29 14:03:112 days ago1719669791IN
Eco: ECO Token
0 ETH0.000227294.42940372
Approve201920502024-06-28 18:43:233 days ago1719600203IN
Eco: ECO Token
0 ETH0.000247224.81201406
Approve201894292024-06-28 9:56:233 days ago1719568583IN
Eco: ECO Token
0 ETH0.000189033.68368816
Approve201746052024-06-26 8:15:475 days ago1719389747IN
Eco: ECO Token
0 ETH0.000135672.64389538
Approve201601542024-06-24 7:48:357 days ago1719215315IN
Eco: ECO Token
0 ETH0.000310186.07719608
Approve201568012024-06-23 20:33:358 days ago1719174815IN
Eco: ECO Token
0 ETH0.000168443.27868124
Transfer201566722024-06-23 20:07:358 days ago1719173255IN
Eco: ECO Token
0 ETH0.000144922.3166183
Approve201484572024-06-22 16:32:599 days ago1719073979IN
Eco: ECO Token
0 ETH0.000218144.25094613
Approve201472552024-06-22 12:30:239 days ago1719059423IN
Eco: ECO Token
0 ETH0.00010872.11580474
Approve201420932024-06-21 19:10:2310 days ago1718997023IN
Eco: ECO Token
0 ETH0.000299885.83708878
Transfer200859242024-06-13 22:38:3518 days ago1718318315IN
Eco: ECO Token
0 ETH0.000550878.80367406
Approve200846182024-06-13 18:14:4718 days ago1718302487IN
Eco: ECO Token
0 ETH0.0007187313.98966982
Approve200844542024-06-13 17:41:2318 days ago1718300483IN
Eco: ECO Token
0 ETH0.0007630314.86940227
Enable Voting200746802024-06-12 8:53:3519 days ago1718182415IN
Eco: ECO Token
0 ETH0.0010928613.6715188
Approve200653592024-06-11 1:39:1121 days ago1718069951IN
Eco: ECO Token
0 ETH0.000252614.9435933
Approve200619552024-06-10 14:13:4721 days ago1718028827IN
Eco: ECO Token
0 ETH0.0008652216.95181035
Transfer200609542024-06-10 10:51:4721 days ago1718016707IN
Eco: ECO Token
0 ETH0.000341865.46349597
Approve200607962024-06-10 10:19:5921 days ago1718014799IN
Eco: ECO Token
0 ETH0.000207666.06916019
Approve200607852024-06-10 10:17:4721 days ago1718014667IN
Eco: ECO Token
0 ETH0.000139314.47382186
Approve200607812024-06-10 10:16:5921 days ago1718014619IN
Eco: ECO Token
0 ETH0.000142524.57694446
Approve200607752024-06-10 10:15:4721 days ago1718014547IN
Eco: ECO Token
0 ETH0.000134144.30788678
Approve200607642024-06-10 10:13:3521 days ago1718014415IN
Eco: ECO Token
0 ETH0.000147074.72307664
Approve200607602024-06-10 10:12:4721 days ago1718014367IN
Eco: ECO Token
0 ETH0.000157384.63727605
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
157780272022-10-18 22:37:59622 days ago1666132679  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
ForwardProxy

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion
File 1 of 2 : ForwardProxy.sol
/* -*- c-basic-offset: 4 -*- */
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ForwardTarget.sol";

/* solhint-disable avoid-low-level-calls, no-inline-assembly */

/** @title Upgradable proxy */
contract ForwardProxy {
    // this is the storage slot to hold the target of the proxy
    // keccak256("com.eco.ForwardProxy.target")
    uint256 private constant IMPLEMENTATION_SLOT =
        0xf86c915dad5894faca0dfa067c58fdf4307406d255ed0a65db394f82b77f53d4;

    /** Construct a new proxy.
     *
     * @param _impl The default target address.
     */
    constructor(ForwardTarget _impl) {
        (bool _success, ) = address(_impl).delegatecall(
            abi.encodeWithSelector(_impl.initialize.selector, _impl)
        );
        require(_success, "initialize call failed");

        // Store forwarding target address at specified storage slot, copied
        // from ForwardTarget#IMPLEMENTATION_SLOT
        assembly {
            sstore(IMPLEMENTATION_SLOT, _impl)
        }
    }

    /** @notice Default function that forwards call to proxy target
     */
    fallback() external payable {
        /* This default-function is optimized for minimum gas cost, to make the
         * proxy overhead as small as possible. As such, the entire function is
         * structured to optimize gas cost in the case of successful function
         * calls. As such, calls to e.g. calldatasize and calldatasize are
         * repeated, since calling them again is no more expensive than
         * duplicating them on stack.
         * This is also the only function in this contract, which avoids the
         * function dispatch overhead.
         */

        assembly {
            // Copy all call arguments to memory starting at 0x0
            calldatacopy(0x0, 0, calldatasize())

            // Forward to proxy target (loaded from IMPLEMENTATION_SLOT), using
            // arguments from memory 0x0 and having results written to
            // memory 0x0.
            let delegate_result := delegatecall(
                gas(),
                sload(IMPLEMENTATION_SLOT),
                0x0,
                calldatasize(),
                0x0,
                0
            )

            let result_size := returndatasize()

            //copy result into return buffer
            returndatacopy(0x0, 0, result_size)

            if delegate_result {
                // If the call was successful, return
                return(0x0, result_size)
            }

            // If the call was not successful, revert
            revert(0x0, result_size)
        }
    }
}

File 2 of 2 : ForwardTarget.sol
/* -*- c-basic-offset: 4 -*- */
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/* solhint-disable no-inline-assembly */

/** @title Target for ForwardProxy and EcoInitializable */
abstract contract ForwardTarget {
    // Must match definition in ForwardProxy
    // keccak256("com.eco.ForwardProxy.target")
    uint256 private constant IMPLEMENTATION_SLOT =
        0xf86c915dad5894faca0dfa067c58fdf4307406d255ed0a65db394f82b77f53d4;

    modifier onlyConstruction() {
        require(
            implementation() == address(0),
            "Can only be called during initialization"
        );
        _;
    }

    constructor() {
        setImplementation(address(this));
    }

    /** @notice Storage initialization of cloned contract
     *
     * This is used to initialize the storage of the forwarded contract, and
     * should (typically) copy or repeat any work that would normally be
     * done in the constructor of the proxied contract.
     *
     * Implementations of ForwardTarget should override this function,
     * and chain to super.initialize(_self).
     *
     * @param _self The address of the original contract instance (the one being
     *              forwarded to).
     */
    function initialize(address _self) public virtual onlyConstruction {
        address _implAddress = address(ForwardTarget(_self).implementation());
        require(
            _implAddress != address(0),
            "initialization failure: nothing to implement"
        );
        setImplementation(_implAddress);
    }

    /** Get the address of the proxy target contract.
     */
    function implementation() public view returns (address _impl) {
        assembly {
            _impl := sload(IMPLEMENTATION_SLOT)
        }
    }

    /** @notice Set new implementation */
    function setImplementation(address _impl) internal {
        require(implementation() != _impl, "Implementation already matching");
        assembly {
            sstore(IMPLEMENTATION_SLOT, _impl)
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ForwardTarget","name":"_impl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x608060405236600080376000803660007ff86c915dad5894faca0dfa067c58fdf4307406d255ed0a65db394f82b77f53d4545af43d806000803e8115604357806000f35b806000fdfea164736f6c6343000809000a

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

ECO is a currency with independent monetary policy, designed to enable an independently governed payment economy.

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.