ETH Price: $2,052.68 (+0.71%)

Contract

0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Approve244701812026-02-16 15:08:4723 days ago1771254527IN
Wrapped: wCELO Token
0 ETH0.0000551.07233184
Approve244630462026-02-15 15:17:1124 days ago1771168631IN
Wrapped: wCELO Token
0 ETH0.000002250.04384285
Approve244630462026-02-15 15:17:1124 days ago1771168631IN
Wrapped: wCELO Token
0 ETH0.000003570.06964799
Approve244630462026-02-15 15:17:1124 days ago1771168631IN
Wrapped: wCELO Token
0 ETH0.00000520.10142312
Approve244630312026-02-15 15:14:1124 days ago1771168451IN
Wrapped: wCELO Token
0 ETH0.000104062.03697127
Approve243263132026-01-27 12:57:1143 days ago1769518631IN
Wrapped: wCELO Token
0 ETH0.000115192.24324329
Transfer241751342026-01-06 10:47:2364 days ago1767696443IN
Wrapped: wCELO Token
0 ETH0.000130392.0934545
Approve238835362025-11-26 14:33:11105 days ago1764167591IN
Wrapped: wCELO Token
0 ETH0.000025380.49482444
Approve238097722025-11-16 5:51:35115 days ago1763272295IN
Wrapped: wCELO Token
0 ETH0.000005130.1
Approve238084162025-11-16 1:18:47115 days ago1763255927IN
Wrapped: wCELO Token
0 ETH0.000002540.0499
Approve238084162025-11-16 1:18:47115 days ago1763255927IN
Wrapped: wCELO Token
0 ETH0.000002550.0499
Approve237992942025-11-14 18:43:23117 days ago1763145803IN
Wrapped: wCELO Token
0 ETH0.000126112.47091615
Approve237627432025-11-09 15:58:11122 days ago1762703891IN
Wrapped: wCELO Token
0 ETH0.000108962.12431079
Approve236934942025-10-30 23:33:11132 days ago1761867191IN
Wrapped: wCELO Token
0 ETH0.000108142.1059545
Transfer233515612025-09-13 3:48:35179 days ago1757735315IN
Wrapped: wCELO Token
0 ETH0.00008161.31019711
Approve233050332025-09-06 15:45:23186 days ago1757173523IN
Wrapped: wCELO Token
0 ETH0.000007330.14351808
Approve227857872025-06-26 2:59:35258 days ago1750906775IN
Wrapped: wCELO Token
0 ETH0.000180323.51558753
Approve226768922025-06-10 21:36:35274 days ago1749591395IN
Wrapped: wCELO Token
0 ETH0.00013452.62230805
Approve226753132025-06-10 16:18:59274 days ago1749572339IN
Wrapped: wCELO Token
0 ETH0.00031016.03874837
Transfer226743482025-06-10 13:05:35274 days ago1749560735IN
Wrapped: wCELO Token
0 ETH0.000497.86702689
Burn226490372025-06-07 0:09:59278 days ago1749254999IN
Wrapped: wCELO Token
0 ETH0.000039461.23213781
Burn226490282025-06-07 0:08:11278 days ago1749254891IN
Wrapped: wCELO Token
0 ETH0.000058321.34002067
Approve224059462025-05-03 21:29:23312 days ago1746307763IN
Wrapped: wCELO Token
0 ETH0.000068061.32732914
Approve223097532025-04-20 10:55:35325 days ago1745146535IN
Wrapped: wCELO Token
0 ETH0.000023150.45098377
Approve220214032025-03-11 4:59:47365 days ago1741669187IN
Wrapped: wCELO Token
0 ETH0.000086521.68736752
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
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

Contract Source Code Verified (Exact Match)

Contract Name:
Proxy

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-12-15
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

contract Proxy {
    // Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7"
    uint256 constant PROXIABLE_MEM_SLOT = 0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7;
    // constructor(bytes memory constructData, address contractLogic) public {
    constructor(address contractLogic) public {
        // Verify a valid address was passed in
        require(contractLogic != address(0), "Contract Logic cannot be 0x0");

        // save the code address
        assembly { // solium-disable-line
            sstore(PROXIABLE_MEM_SLOT, contractLogic)
        }
    }

    fallback() external payable {
        assembly { // solium-disable-line
            let contractLogic := sload(PROXIABLE_MEM_SLOT)
            let ptr := mload(0x40)
            calldatacopy(ptr, 0x0, calldatasize())
            let success := delegatecall(gas(), contractLogic, ptr, calldatasize(), 0, 0)
            let retSz := returndatasize()
            returndatacopy(ptr, 0, retSz)
            switch success
            case 0 {
                revert(ptr, retSz)
            }
            default {
                return(ptr, retSz)
            }
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"contractLogic","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

608060405234801561001057600080fd5b5060405161019b38038061019b8339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e7472616374204c6f6769632063616e6e6f74206265203078300000000081525060200191505060405180910390fd5b807fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf755506082806101196000396000f3fe60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf75460405136600082376000803683855af43d806000843e81600081146048578184f35b8184fdfea26469706673582212206f2ec33642412846b13f487f2c42c97e597937b4750c4ebeef6c021cb373ebc364736f6c634300060c00330000000000000000000000007aac67b8cb7f39e080672ca6a32f5a6a964c26a4

Deployed Bytecode

0x60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf75460405136600082376000803683855af43d806000843e81600081146048578184f35b8184fdfea26469706673582212206f2ec33642412846b13f487f2c42c97e597937b4750c4ebeef6c021cb373ebc364736f6c634300060c0033

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

0000000000000000000000007aac67b8cb7f39e080672ca6a32f5a6a964c26a4

-----Decoded View---------------
Arg [0] : contractLogic (address): 0x7AAc67b8cB7f39E080672ca6a32f5a6A964c26A4

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007aac67b8cb7f39e080672ca6a32f5a6a964c26a4


Deployed Bytecode Sourcemap

62:1266:0:-:0;;;849:18;843:25;899:4;893:11;941:14;936:3;931;918:38;1044:1;1041;1025:14;1020:3;1005:13;998:5;985:61;1073:16;1126:5;1123:1;1118:3;1103:29;1153:7;1179:1;1174:59;;;;1286:5;1281:3;1274:18;1174:59;1212:5;1207:3;1200:18

Swarm Source

ipfs://6f2ec33642412846b13f487f2c42c97e597937b4750c4ebeef6c021cb373ebc3

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

OVERVIEW

Wrapped Celo is a 1:1 equivalent of Celo. Celo is a utility and governance asset for the Celo community, which has a fixed supply and variable value. With Celo, you can help shape the direction of the Celo Platform.

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.