Contract
0x6becE9536D659d907368C7821F6Bac5e652CA482
4
Contract Overview
Balance:
0 Ether
Token:
More Info
My Name Tag:
Not Available
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x1a8141302e5a90106747f8abdf5f01434e912664
Contract Name:
Proxy
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-19 */ pragma solidity ^0.5.16; contract Proxy { address internal masterCopy; constructor(address _masterCopy) public { require(_masterCopy != address(0), "BID:Zero master is not permitted"); masterCopy = _masterCopy; } function () external payable { // solium-disable-next-line security/no-inline-assembly assembly { let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff) calldatacopy(0, 0, calldatasize()) let success := delegatecall(gas, masterCopy, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) if eq(success, 0) { revert(0, returndatasize()) } return(0, returndatasize()) } } }
[{"inputs":[{"internalType":"address","name":"_masterCopy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516101ad3803806101ad8339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4249443a5a65726f206d6173746572206973206e6f74207065726d697474656481525060200191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506077806101366000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e6000811415603d573d6000fd5b3d6000f3fea265627a7a72315820427d02c2ed9b9933ed316fc9e98cbd02e38bb5e8afe7ecdd5988f4015592107b64736f6c63430005100032000000000000000000000000be97566cae12870699638b32f03ad0fec32c34ae
Deployed ByteCode Sourcemap
30:781:0:-;;;460:42;456:1;450:8;446:57;536:14;533:1;530;517:34;632:1;629;613:14;610:1;598:10;593:3;580:54;669:16;666:1;663;648:38;715:1;706:7;703:14;700:2;;;730:16;727:1;720:27;700:2;773:16;770:1;763:27
Swarm Source
bzzr://427d02c2ed9b9933ed316fc9e98cbd02e38bb5e8afe7ecdd5988f4015592107b
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.