ETH Price: $3,264.15 (-4.29%)
Gas: 17 Gwei

Contract

0x86f2A193b116d1f9C53Ed26d97F77cDC8BcF4c2b
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve200561112024-06-09 18:39:2324 days ago1717958363IN
p00ls: EHTAGA Token
0 ETH0.000348896.39271716
Transfer200378012024-06-07 5:16:4726 days ago1717737407IN
p00ls: EHTAGA Token
0 ETH0.000462687.79273866
Permit199965512024-06-01 11:04:3532 days ago1717239875IN
p00ls: EHTAGA Token
0 ETH0.000344774.95540252
Permit197238572024-04-24 7:49:5970 days ago1713944999IN
p00ls: EHTAGA Token
0 ETH0.000603628.67885867
Permit197162902024-04-23 6:24:4771 days ago1713853487IN
p00ls: EHTAGA Token
0 ETH0.0008354712.00694661
Permit190975562024-01-27 11:15:59158 days ago1706354159IN
p00ls: EHTAGA Token
0 ETH0.0007724711.10272904
Transfer189761732024-01-10 11:12:35175 days ago1704885155IN
p00ls: EHTAGA Token
0 ETH0.0014529524.47124331
Permit189098262024-01-01 3:09:11184 days ago1704078551IN
p00ls: EHTAGA Token
0 ETH0.000630199.05674335
Transfer189010472023-12-30 21:36:59185 days ago1703972219IN
p00ls: EHTAGA Token
0 ETH0.0008668714.60314353
Permit188249972023-12-20 5:18:59196 days ago1703049539IN
p00ls: EHTAGA Token
0 ETH0.001695432.31629083
Transfer186694132023-11-28 10:05:23218 days ago1701165923IN
p00ls: EHTAGA Token
0 ETH0.0009694525.86994078
Permit183199762023-10-10 12:12:35267 days ago1696939955IN
p00ls: EHTAGA Token
0 ETH0.000460916.62467548
Permit182926572023-10-06 16:29:35271 days ago1696609775IN
p00ls: EHTAGA Token
0 ETH0.0008351412.00348108
Approve182731782023-10-03 23:08:11273 days ago1696374491IN
p00ls: EHTAGA Token
0 ETH0.000259218.0271232
Permit182170562023-09-26 2:44:35281 days ago1695696275IN
p00ls: EHTAGA Token
0 ETH0.000517827.44274473
Transfer And Cal...181830882023-09-21 8:33:23286 days ago1695285203IN
p00ls: EHTAGA Token
0 ETH0.0009027211.01343668
Transfer And Cal...181780222023-09-20 15:33:47287 days ago1695224027IN
p00ls: EHTAGA Token
0 ETH0.0030079516.20317306
Transfer181613022023-09-18 7:18:23289 days ago1695021503IN
p00ls: EHTAGA Token
0 ETH0.000484877.55704728
Transfer181515422023-09-16 22:06:47290 days ago1694902007IN
p00ls: EHTAGA Token
0 ETH0.000542539.13765581
Permit181358132023-09-14 16:53:11293 days ago1694710391IN
p00ls: EHTAGA Token
0 ETH0.0011435916.43688043
Permit181023492023-09-10 0:17:59297 days ago1694305079IN
p00ls: EHTAGA Token
0 ETH0.000602138.65598246
Permit180035002023-08-27 4:04:47311 days ago1693109087IN
p00ls: EHTAGA Token
0 ETH0.0007653211
Transfer177872982023-07-27 22:11:59341 days ago1690495919IN
p00ls: EHTAGA Token
0 ETH0.0016822828.33377
Permit176289762023-07-05 16:50:11364 days ago1688575811IN
p00ls: EHTAGA Token
0 ETH0.0036154951.96546711
Approve175858092023-06-29 15:19:59370 days ago1688051999IN
p00ls: EHTAGA Token
0 ETH0.0025026946.09955078
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
156252992022-09-27 14:30:59645 days ago1664289059  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BeaconProxy

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 3: BeaconProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "IBeacon.sol";
import "Proxy.sol";

/// @custom:security-contact [email protected]
contract BeaconProxy is Proxy {
    IBeacon private immutable _beacon;

    event BeaconUpgraded(IBeacon indexed beacon);

    constructor(IBeacon beacon)
    {
        _beacon = beacon;
        emit BeaconUpgraded(beacon);
    }

    function _implementation()
        internal
        view
        override
        returns (address)
    {
        return _beacon.implementation();
    }
}

File 2 of 3: IBeacon.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeacon {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {BeaconProxy} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

File 3 of 3: Proxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/Proxy.sol)

pragma solidity ^0.8.0;

/**
 * @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.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal 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 virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_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 {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive() external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overriden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IBeacon","name":"beacon","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IBeacon","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

60a060405234801561001057600080fd5b506040516101e53803806101e583398101604081905261002f9161006d565b6001600160a01b03811660808190526040517f1cf3b03a6cf19fa2baba4df148e9dcabedea7f8a5c07840e207e5c089be95d3e90600090a25061009d565b60006020828403121561007f57600080fd5b81516001600160a01b038116811461009657600080fd5b9392505050565b60805161012e6100b760003960006025015261012e6000f3fe608060405236601057600e6013565b005b600e5b601f601b6021565b60a7565b565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156080573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019060a2919060ca565b905090565b3660008037600080366000845af43d6000803e80801560c5573d6000f35b3d6000fd5b60006020828403121560db57600080fd5b81516001600160a01b038116811460f157600080fd5b939250505056fea26469706673582212203a4dbcbf605f16658c46966ee07264c12645db37ed83e6355e8faf932b92c30b64736f6c634300080d003300000000000000000000000023b0c2381075df4002bc6d3b9baf52ab0acb1e9b

Deployed Bytecode

0x608060405236601057600e6013565b005b600e5b601f601b6021565b60a7565b565b60007f00000000000000000000000023b0c2381075df4002bc6d3b9baf52ab0acb1e9b6001600160a01b0316635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156080573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019060a2919060ca565b905090565b3660008037600080366000845af43d6000803e80801560c5573d6000f35b3d6000fd5b60006020828403121560db57600080fd5b81516001600160a01b038116811460f157600080fd5b939250505056fea26469706673582212203a4dbcbf605f16658c46966ee07264c12645db37ed83e6355e8faf932b92c30b64736f6c634300080d0033

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

00000000000000000000000023b0c2381075df4002bc6d3b9baf52ab0acb1e9b

-----Decoded View---------------
Arg [0] : beacon (address): 0x23b0C2381075dF4002BC6D3B9baF52Ab0ACB1E9B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000023b0c2381075df4002bc6d3b9baf52ab0acb1e9b


Deployed Bytecode Sourcemap

148:389:0:-:0;;;;;;2898:11:2;:9;:11::i;:::-;148:389:0;;2675:11:2;2322:110;2397:28;2407:17;:15;:17::i;:::-;2397:9;:28::i;:::-;2322:110::o;383:152:0:-;474:7;504;-1:-1:-1;;;;;504:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;497:31;;383:152;:::o;948:895:2:-;1286:14;1283:1;1280;1267:34;1500:1;1497;1481:14;1478:1;1462:14;1455:5;1442:60;1576:16;1573:1;1570;1555:38;1614:6;1681:66;;;;1796:16;1793:1;1786:27;1681:66;1716:16;1713:1;1706:27;14:290:3;84:6;137:2;125:9;116:7;112:23;108:32;105:52;;;153:1;150;143:12;105:52;179:16;;-1:-1:-1;;;;;224:31:3;;214:42;;204:70;;270:1;267;260:12;204:70;293:5;14:290;-1:-1:-1;;;14:290:3:o

Swarm Source

ipfs://3a4dbcbf605f16658c46966ee07264c12645db37ed83e6355e8faf932b92c30b

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

Agathe Mougin is Paris-based DJ, model and designer. When she’s not walking the runway, she’s DJ’ing parties and designing clothes for her brand Chapel Paris.

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.