ETH Price: $3,069.71 (-1.09%)

Contract

0x881Ba05de1E78f549cC63a8f6Cabb1d4AD32250D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

00 Token (00) (@$0.0382)

Multichain Info

Transaction Hash
Method
Block
From
To
Transfer212143182024-11-18 11:31:112 hrs ago1731929471IN
P00LS: 00 Token
0 ETH0.0005333412.60931822
Transfer212142982024-11-18 11:27:112 hrs ago1731929231IN
P00LS: 00 Token
0 ETH0.0007898212.30302926
Transfer212126372024-11-18 5:53:357 hrs ago1731909215IN
P00LS: 00 Token
0 ETH0.000509648.58191473
Transfer212123852024-11-18 5:03:118 hrs ago1731906191IN
P00LS: 00 Token
0 ETH0.0004570810.80320501
Approve212119872024-11-18 3:43:2310 hrs ago1731901403IN
P00LS: 00 Token
0 ETH0.0003491710.17148813
Approve212119772024-11-18 3:41:2310 hrs ago1731901283IN
P00LS: 00 Token
0 ETH0.000538069.92218164
Transfer212119562024-11-18 3:37:1110 hrs ago1731901031IN
P00LS: 00 Token
0 ETH0.0004568210.79712994
Transfer212117022024-11-18 2:46:1111 hrs ago1731897971IN
P00LS: 00 Token
0 ETH0.0005825512.3720676
Approve212116582024-11-18 2:37:2311 hrs ago1731897443IN
P00LS: 00 Token
0 ETH0.0006718612.31039067
Transfer212114142024-11-18 1:48:3512 hrs ago1731894515IN
P00LS: 00 Token
0 ETH0.0006847810.66881389
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.0004774711.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.0004774711.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.000477611.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.000477611.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.000477611.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.0004777411.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.0004777411.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.0004777411.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.0004778711.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.0004778711.29471935
Transfer212113632024-11-18 1:38:2312 hrs ago1731893903IN
P00LS: 00 Token
0 ETH0.0004778711.29471935
Transfer212112762024-11-18 1:20:4712 hrs ago1731892847IN
P00LS: 00 Token
0 ETH0.000394449.32539722
Transfer212112712024-11-18 1:19:4712 hrs ago1731892787IN
P00LS: 00 Token
0 ETH0.000602159.38489051
Transfer212110302024-11-18 0:31:1113 hrs ago1731889871IN
P00LS: 00 Token
0 ETH0.000414388.80058891
Transfer212109652024-11-18 0:18:1113 hrs ago1731889091IN
P00LS: 00 Token
0 ETH0.000353148.34668472
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
146292692022-04-21 16:12:09941 days ago1650557529  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
File 1 of 3 : BeaconProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/proxy/beacon/IBeacon.sol";
import "@openzeppelin/contracts/proxy/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 {}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "debug": {
    "revertStrings": "strip"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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


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

P00LS is a community-first platform for creator tokens and a key player within the zerozero ecosystem. P00LS partners with creators and brands to help them launch tokenized communities, while providing them with the tools for building and strengthening these communities.

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.