ETH Price: $2,913.78 (-8.83%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

ECOx (ECOx) (@$0.0504)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer217607572025-02-02 18:56:4733 mins ago1738522607IN
Eco: ECOx Token
0 ETH0.0017163431.86491983
Transfer217606342025-02-02 18:32:1157 mins ago1738521131IN
Eco: ECOx Token
0 ETH0.0008856124.082089
Transfer217605392025-02-02 18:13:111 hr ago1738519991IN
Eco: ECOx Token
0 ETH0.0010842326.08660221
Transfer217604182025-02-02 17:48:591 hr ago1738518539IN
Eco: ECOx Token
0 ETH0.0008302719.98195411
Transfer217604042025-02-02 17:46:111 hr ago1738518371IN
Eco: ECOx Token
0 ETH0.0007067717.00481064
Transfer217603262025-02-02 17:30:351 hr ago1738517435IN
Eco: ECOx Token
0 ETH0.0009554717.73508351
Transfer217588972025-02-02 12:42:356 hrs ago1738500155IN
Eco: ECOx Token
0 ETH0.000283494.83166392
Transfer217587962025-02-02 12:22:237 hrs ago1738498943IN
Eco: ECOx Token
0 ETH0.000223555.38027883
Transfer217587072025-02-02 12:04:237 hrs ago1738497863IN
Eco: ECOx Token
0 ETH0.000188523.5
Transfer217571162025-02-02 6:43:2312 hrs ago1738478603IN
Eco: ECOx Token
0 ETH0.000212653.62426701
Transfer217571162025-02-02 6:43:2312 hrs ago1738478603IN
Eco: ECOx Token
0 ETH0.000150633.62426701
Transfer217571162025-02-02 6:43:2312 hrs ago1738478603IN
Eco: ECOx Token
0 ETH0.000150633.62426701
Transfer217570872025-02-02 6:37:1112 hrs ago1738478231IN
Eco: ECOx Token
0 ETH0.000071861.72946018
Transfer217550202025-02-01 23:41:5919 hrs ago1738453319IN
Eco: ECOx Token
0 ETH0.000233265.614004
Transfer217549122025-02-01 23:20:2320 hrs ago1738452023IN
Eco: ECOx Token
0 ETH0.000209215.68899337
Transfer217548122025-02-01 23:00:2320 hrs ago1738450823IN
Eco: ECOx Token
0 ETH0.000212013.93528091
Transfer217543892025-02-01 21:35:1121 hrs ago1738445711IN
Eco: ECOx Token
0 ETH0.00017074.64187255
Transfer217543052025-02-01 21:18:1122 hrs ago1738444691IN
Eco: ECOx Token
0 ETH0.000230814.28426355
Approve217542932025-02-01 21:15:4722 hrs ago1738444547IN
Eco: ECOx Token
0 ETH0.000191783.73661623
Transfer217538982025-02-01 19:56:1123 hrs ago1738439771IN
Eco: ECOx Token
0 ETH0.000312765.33159872
Transfer217535432025-02-01 18:44:4724 hrs ago1738435487IN
Eco: ECOx Token
0 ETH0.000141973.86325972
Transfer217533192025-02-01 17:59:4725 hrs ago1738432787IN
Eco: ECOx Token
0 ETH0.000155824.23996855
Transfer217531442025-02-01 17:24:4726 hrs ago1738430687IN
Eco: ECOx Token
0 ETH0.000185285.04166424
Approve217531082025-02-01 17:17:3526 hrs ago1738430255IN
Eco: ECOx Token
0 ETH0.000259265.07268098
Transfer217530592025-02-01 17:07:3526 hrs ago1738429655IN
Eco: ECOx Token
0 ETH0.00021824.05202177
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
157780272022-10-18 22:37:59837 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 protocol for stablecoins and the apps that use them. Eco enables apps to unlock stablecoin liquidity from any connected chain and give users the simplest onchain experience

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.