Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 76 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve New User... | 19271426 | 744 days ago | IN | 0 ETH | 0.00272966 | ||||
| Approve New User... | 19212757 | 753 days ago | IN | 0 ETH | 0.00328087 | ||||
| Approve New User... | 19171842 | 758 days ago | IN | 0 ETH | 0.00261527 | ||||
| Approve New User... | 19163589 | 759 days ago | IN | 0 ETH | 0.00200291 | ||||
| Approve New User... | 19090263 | 770 days ago | IN | 0 ETH | 0.00201559 | ||||
| Approve New User... | 18971411 | 786 days ago | IN | 0 ETH | 0.00212667 | ||||
| Approve New User... | 18842491 | 804 days ago | IN | 0 ETH | 0.003819 | ||||
| Approve New User... | 18798330 | 811 days ago | IN | 0 ETH | 0.00442304 | ||||
| Approve New User... | 18664806 | 829 days ago | IN | 0 ETH | 0.00366097 | ||||
| Approve New User... | 18478056 | 856 days ago | IN | 0 ETH | 0.0035049 | ||||
| Approve New User... | 18423223 | 863 days ago | IN | 0 ETH | 0.00181285 | ||||
| Add Approved Use... | 18363914 | 872 days ago | IN | 0 ETH | 0.00071871 | ||||
| Approve New User... | 18118887 | 906 days ago | IN | 0 ETH | 0.00086866 | ||||
| Approve New User... | 17992774 | 923 days ago | IN | 0 ETH | 0.00352548 | ||||
| Approve New User... | 17979796 | 925 days ago | IN | 0 ETH | 0.00256252 | ||||
| Approve New User... | 17942565 | 931 days ago | IN | 0 ETH | 0.00325348 | ||||
| Approve New User... | 17942559 | 931 days ago | IN | 0 ETH | 0.00342342 | ||||
| Approve New User... | 17914056 | 935 days ago | IN | 0 ETH | 0.00261586 | ||||
| Approve New User... | 17713925 | 963 days ago | IN | 0 ETH | 0.00316148 | ||||
| Approve New User... | 17697667 | 965 days ago | IN | 0 ETH | 0.00149027 | ||||
| Approve New User... | 17635742 | 974 days ago | IN | 0 ETH | 0.00334463 | ||||
| Approve New User... | 16885873 | 1079 days ago | IN | 0 ETH | 0.00250176 | ||||
| Approve New User... | 15451794 | 1282 days ago | IN | 0 ETH | 0.00114682 | ||||
| Approve New User... | 15366990 | 1295 days ago | IN | 0 ETH | 0.00111637 | ||||
| Approve New User... | 14992892 | 1355 days ago | IN | 0 ETH | 0.00421575 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 12318647 | 1774 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
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
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
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]Contract Creation Code
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
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.