ETH Price: $1,984.10 (-4.94%)
Gas: 0.42 Gwei

Contract

0x6EE91b2B714ccAC6fe7587Cd99Ca78Cf363fc4eC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve New User...192714262024-02-20 20:55:35744 days ago1708462535IN
0x6EE91b2B...f363fc4eC
0 ETH0.0027296628.6904065
Approve New User...192127572024-02-12 15:11:59753 days ago1707750719IN
0x6EE91b2B...f363fc4eC
0 ETH0.0032808734.48400949
Approve New User...191718422024-02-06 21:23:23758 days ago1707254603IN
0x6EE91b2B...f363fc4eC
0 ETH0.0026152727.4880883
Approve New User...191635892024-02-05 17:36:47759 days ago1707154607IN
0x6EE91b2B...f363fc4eC
0 ETH0.0020029121.05180559
Approve New User...190902632024-01-26 10:44:35770 days ago1706265875IN
0x6EE91b2B...f363fc4eC
0 ETH0.0020155921.18517014
Approve New User...189714112024-01-09 19:12:35786 days ago1704827555IN
0x6EE91b2B...f363fc4eC
0 ETH0.0021266722.3526134
Approve New User...188424912023-12-22 16:11:35804 days ago1703261495IN
0x6EE91b2B...f363fc4eC
0 ETH0.00381940.14006707
Approve New User...187983302023-12-16 11:28:35811 days ago1702726115IN
0x6EE91b2B...f363fc4eC
0 ETH0.0044230446.48889482
Approve New User...186648062023-11-27 18:36:23829 days ago1701110183IN
0x6EE91b2B...f363fc4eC
0 ETH0.0036609738.47905849
Approve New User...184780562023-11-01 15:09:35856 days ago1698851375IN
0x6EE91b2B...f363fc4eC
0 ETH0.003504936.83872315
Approve New User...184232232023-10-24 22:54:23863 days ago1698188063IN
0x6EE91b2B...f363fc4eC
0 ETH0.0018128519.05422951
Add Approved Use...183639142023-10-16 15:44:23872 days ago1697471063IN
0x6EE91b2B...f363fc4eC
0 ETH0.0007187110.70029619
Approve New User...181188872023-09-12 7:52:59906 days ago1694505179IN
0x6EE91b2B...f363fc4eC
0 ETH0.000868669.13023374
Approve New User...179927742023-08-25 16:03:35923 days ago1692979415IN
0x6EE91b2B...f363fc4eC
0 ETH0.0035254837.0550304
Approve New User...179797962023-08-23 20:28:35925 days ago1692822515IN
0x6EE91b2B...f363fc4eC
0 ETH0.0025625226.93373626
Approve New User...179425652023-08-18 15:28:35931 days ago1692372515IN
0x6EE91b2B...f363fc4eC
0 ETH0.0032534834.19611281
Approve New User...179425592023-08-18 15:27:23931 days ago1692372443IN
0x6EE91b2B...f363fc4eC
0 ETH0.0034234235.98231787
Approve New User...179140562023-08-14 15:43:11935 days ago1692027791IN
0x6EE91b2B...f363fc4eC
0 ETH0.0026158627.49435555
Approve New User...177139252023-07-17 15:38:35963 days ago1689608315IN
0x6EE91b2B...f363fc4eC
0 ETH0.0031614833.22910371
Approve New User...176976672023-07-15 8:39:35965 days ago1689410375IN
0x6EE91b2B...f363fc4eC
0 ETH0.0014902715.66368201
Approve New User...176357422023-07-06 15:38:23974 days ago1688657903IN
0x6EE91b2B...f363fc4eC
0 ETH0.0033446335.15412874
Approve New User...168858732023-03-22 21:42:111079 days ago1679521331IN
0x6EE91b2B...f363fc4eC
0 ETH0.0025017626.29509811
Approve New User...154517942022-09-01 8:20:141282 days ago1662020414IN
0x6EE91b2B...f363fc4eC
0 ETH0.0011468212.05381633
Approve New User...153669902022-08-18 20:05:151295 days ago1660853115IN
0x6EE91b2B...f363fc4eC
0 ETH0.0011163711.73376212
Approve New User...149928922022-06-19 21:14:361355 days ago1655673276IN
0x6EE91b2B...f363fc4eC
0 ETH0.0042157544.31012814
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-123186472021-04-26 22:27:551774 days ago1619476075  Contract Creation0 ETH
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

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

Contract Name:
BeaconProxy

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-22
*/

// File contracts/beacon/IBeacon.sol

pragma solidity ^0.8.0;

interface IBeacon {
    function latestCopy() external view returns(address);
}


// File contracts/beacon/BeaconProxy.sol

pragma solidity ^0.8.0;

contract BeaconProxy {

    bytes32 private constant BEACON_SLOT = keccak256(abi.encodePacked("fairmint.beaconproxy.beacon"));

    constructor() public {
        _setBeacon(msg.sender);
    }

    function _setBeacon(address _beacon) private {
        bytes32 slot = BEACON_SLOT;
        assembly {
            sstore(slot, _beacon)
        }
    }

    function _getBeacon() internal view returns(address beacon) {
        bytes32 slot = BEACON_SLOT;
        assembly {
            beacon := sload(slot)
        }
    }

    function _getMasterCopy() internal view returns(address) {
        IBeacon beacon = IBeacon(_getBeacon());
        return beacon.latestCopy();
    }

    fallback() external payable {
        address copy = _getMasterCopy();
        assembly {
            calldatacopy(0, 0, calldatasize())
            let result := delegatecall(gas(), copy, 0, calldatasize(), 0, 0)
            let size := returndatasize()
            returndatacopy(0, 0, size)
            switch result
            case 0 { revert(0, size) }
            default { return(0, size) }
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

0x608060405234801561001057600080fd5b5061005d33604080517f666169726d696e742e626561636f6e70726f78792e626561636f6e00000000006020808301919091528251601b818403018152603b909201909252805191012055565b6101728061006c6000396000f3fe6080604052600061000e610035565b90503660008037600080366000845af43d806000803e81801561003057816000f35b816000fd5b6000806100406100b9565b9050806001600160a01b031663a9dfa7116040518163ffffffff1660e01b815260040160206040518083038186803b15801561007b57600080fd5b505afa15801561008f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b3919061010e565b91505090565b6000806040516020016100ef907f666169726d696e742e626561636f6e70726f78792e626561636f6e00000000008152601b0190565b60408051601f1981840301815291905280516020909101205492915050565b60006020828403121561011f578081fd5b81516001600160a01b0381168114610135578182fd5b939250505056fea2646970667358221220708e96778078df402acd1d78ee82eeedde4e0d3ea9fe834312ea1f5214bf45b064736f6c63430008030033

Deployed Bytecode

0x6080604052600061000e610035565b90503660008037600080366000845af43d806000803e81801561003057816000f35b816000fd5b6000806100406100b9565b9050806001600160a01b031663a9dfa7116040518163ffffffff1660e01b815260040160206040518083038186803b15801561007b57600080fd5b505afa15801561008f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b3919061010e565b91505090565b6000806040516020016100ef907f666169726d696e742e626561636f6e70726f78792e626561636f6e00000000008152601b0190565b60408051601f1981840301815291905280516020909101205492915050565b60006020828403121561011f578081fd5b81516001600160a01b0381168114610135578182fd5b939250505056fea2646970667358221220708e96778078df402acd1d78ee82eeedde4e0d3ea9fe834312ea1f5214bf45b064736f6c63430008030033

Deployed Bytecode Sourcemap

225:1136:0:-:0;;;972:12;987:16;:14;:16::i;:::-;972:31;;1057:14;1054:1;1051;1038:34;1148:1;1145;1129:14;1126:1;1120:4;1113:5;1100:50;1176:16;1227:4;1224:1;1221;1206:26;1253:6;1273:26;;;;1333:4;1330:1;1323:15;1273:26;1292:4;1289:1;1282:15;774:151;822:7;842:14;867:12;:10;:12::i;:::-;842:38;;898:6;-1:-1:-1;;;;;898:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;891:26;;;774:151;:::o;595:171::-;639:14;666:12;304:47;;;;;;543:29:1;531:42;;598:2;589:12;;521:86;304:47:0;;;;-1:-1:-1;;304:47:0;;;;;;;;;294:58;;304:47;294:58;;;;737:11;;712:47;-1:-1:-1;;712:47:0:o;14:310:1:-;;137:2;125:9;116:7;112:23;108:32;105:2;;;158:6;150;143:22;105:2;189:16;;-1:-1:-1;;;;;234:31:1;;224:42;;214:2;;285:6;277;270:22;214:2;313:5;95:229;-1:-1:-1;;;95:229:1:o

Swarm Source

ipfs://708e96778078df402acd1d78ee82eeedde4e0d3ea9fe834312ea1f5214bf45b0

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.