ETH Price: $2,345.71 (-2.52%)

Contract

0xad3E3Fc59dff318BecEaAb7D00EB4F68b1EcF195
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve206288402024-08-28 18:20:598 days ago1724869259IN
Wrapped: wCUSD Token
0 ETH0.000120252.35602129
Transfer184157902023-10-23 21:55:59318 days ago1698098159IN
Wrapped: wCUSD Token
0 ETH0.0010260816.47061978
Approve183563172023-10-15 14:17:23326 days ago1697379443IN
Wrapped: wCUSD Token
0 ETH0.000217727.00789112
Approve174439012023-06-09 16:37:59454 days ago1686328679IN
Wrapped: wCUSD Token
0 ETH0.0010700820.8377753
Approve161480042022-12-09 15:21:47636 days ago1670599307IN
Wrapped: wCUSD Token
0 ETH0.0012100623.56372333
Approve157841992022-10-19 19:19:47687 days ago1666207187IN
Wrapped: wCUSD Token
0 ETH0.0018918137.03846438
Approve153169542022-08-10 22:14:54757 days ago1660169694IN
Wrapped: wCUSD Token
0 ETH0.0014584428.54715404
Approve153169462022-08-10 22:13:43757 days ago1660169623IN
Wrapped: wCUSD Token
0 ETH0.0010797237.14365579
Approve153127072022-08-10 6:14:21758 days ago1660112061IN
Wrapped: wCUSD Token
0 ETH0.000442368.66081008
Approve153127062022-08-10 6:14:07758 days ago1660112047IN
Wrapped: wCUSD Token
0 ETH0.000252798.6965408
Burn152254842022-07-27 15:58:52771 days ago1658937532IN
Wrapped: wCUSD Token
0 ETH0.0011112525.52435589
Approve151696392022-07-18 23:49:08780 days ago1658188148IN
Wrapped: wCUSD Token
0 ETH0.0010069519.70976735
Approve150407572022-06-28 17:20:14800 days ago1656436814IN
Wrapped: wCUSD Token
0 ETH0.0040260978.82397946
Approve149691472022-06-15 19:15:27813 days ago1655320527IN
Wrapped: wCUSD Token
0 ETH0.00612149119.82028111
Approve149508732022-06-12 15:23:10816 days ago1655047390IN
Wrapped: wCUSD Token
0 ETH0.0026652352.16837461
Transfer149508662022-06-12 15:21:44816 days ago1655047304IN
Wrapped: wCUSD Token
0 ETH0.0039286863.06273655
Transfer149260012022-06-08 9:38:21820 days ago1654681101IN
Wrapped: wCUSD Token
0 ETH0.0048761497.59697921
Approve148197602022-05-21 22:12:55838 days ago1653171175IN
Wrapped: wCUSD Token
0 ETH0.0013520426.46441385
Approve148197322022-05-21 22:05:36838 days ago1653170736IN
Wrapped: wCUSD Token
0 ETH0.0010649420.84480804
Approve148195712022-05-21 21:27:35838 days ago1653168455IN
Wrapped: wCUSD Token
0 ETH0.0010225420.01502755
Approve148083892022-05-20 1:52:28840 days ago1653011548IN
Wrapped: wCUSD Token
0 ETH0.0016993233.26203245
Remove Owner146606402022-04-26 14:22:44863 days ago1650982964IN
Wrapped: wCUSD Token
0 ETH0.0015102351.98733608
Add Burner146606372022-04-26 14:22:18863 days ago1650982938IN
Wrapped: wCUSD Token
0 ETH0.003079158.0339491
Add Minter146606332022-04-26 14:21:34863 days ago1650982894IN
Wrapped: wCUSD Token
0 ETH0.0031266458.97773615
Remove Burner146606282022-04-26 14:20:51863 days ago1650982851IN
Wrapped: wCUSD Token
0 ETH0.0021946970.63044995
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

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

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

Deployed Bytecode

0x60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf75460405136600082376000803683855af43d806000843e81600081146048578184f35b8184fdfea26469706673582212206f2ec33642412846b13f487f2c42c97e597937b4750c4ebeef6c021cb373ebc364736f6c634300060c0033

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 Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Wrapped Celo Dollars are a 1:1 equivalent of Celo Dollars. cUSD (Celo Dollars) is a stable asset that follows the US Dollar.

Validator Index Block Amount
View All Withdrawals

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