Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Loading...
Loading
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 This contract matches the deployed Bytecode of the Source Code for Contract 0x7af1976D...9D20eC0d1 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
AbstractPizza
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; contract AbstractPizza is Ownable, ReentrancyGuard { // State variables uint256 public battlePassPrice; mapping(address => bool) private registeredUsers; mapping(address => bool) private battlePassHolders; address[] private battlePassUsersList; // Events event UserRegistered(address indexed user); event BattlePassPurchased(address indexed user); event BattlePassPriceChanged(uint256 newPrice); event FundsWithdrawn(address indexed owner, uint256 amount); // Constructor constructor(uint256 initialPrice) Ownable(msg.sender) { battlePassPrice = initialPrice; } // Registration function function registration() external { require(!registeredUsers[msg.sender], "User already registered"); registeredUsers[msg.sender] = true; emit UserRegistered(msg.sender); } // Check registration status function checkRegistration(address user) external view returns (bool) { return registeredUsers[user]; } // Buy battlepass function function buyBattlePass() external payable nonReentrant { require(!battlePassHolders[msg.sender], "BattlePass already purchased"); require(msg.value == battlePassPrice, "Incorrect payment amount"); battlePassHolders[msg.sender] = true; battlePassUsersList.push(msg.sender); emit BattlePassPurchased(msg.sender); } // Check battlepass status function checkBattlePass(address user) external view returns (bool) { return battlePassHolders[user]; } // Get list of battlepass users function listBattlePassUsers() external view returns (address[] memory) { return battlePassUsersList; } // Admin function to change battlepass price function setBattlePassPrice(uint256 newPrice) external onlyOwner { battlePassPrice = newPrice; emit BattlePassPriceChanged(newPrice); } // Admin function to withdraw funds function withdrawFunds() external onlyOwner nonReentrant { uint256 balance = address(this).balance; require(balance > 0, "No funds to withdraw"); (bool success, ) = owner().call{value: balance}(""); require(success, "Transfer failed"); emit FundsWithdrawn(owner(), balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"initialPrice","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"BattlePassPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"BattlePassPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"UserRegistered","type":"event"},{"inputs":[],"name":"battlePassPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBattlePass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"checkBattlePass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"checkRegistration","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listBattlePassUsers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setBattlePassPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x000200000000000200010000000000020000006003100270000000a003300197000100000031035500000001002001900000001f0000c13d0000008002000039000000400020043f000000040030008c0000003f0000413d000000000201043b000000e002200270000000aa0020009c0000004e0000a13d000000ab0020009c0000005e0000213d000000af0020009c000001370000613d000000b00020009c000000a50000613d000000b10020009c0000003f0000c13d0000000001000416000000000001004b0000003f0000c13d000000000100041a000000a401100197000000800010043f000000ba010000410000027d0001042e0000000002000416000000000002004b0000003f0000c13d0000001f02300039000000a1022001970000008002200039000000400020043f0000001f0430018f000000a2053001980000008002500039000000300000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000002c0000c13d000000000004004b0000003d0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c000000410000813d00000000010000190000027e000104300000000006000411000000000006004b000000790000c13d000000400100043d000000a802000041000000000021043500000004021000390000000000020435000000a00010009c000000a0010080410000004001100210000000a9011001c70000027e00010430000000b20020009c000000950000a13d000000b30020009c000000bd0000613d000000b40020009c000000e20000613d000000b50020009c0000003f0000c13d0000000001000416000000000001004b0000003f0000c13d0000000201000039000000000101041a000000800010043f000000ba010000410000027d0001042e000000ac0020009c0000014f0000613d000000ad0020009c000001150000613d000000ae0020009c0000003f0000c13d000000240030008c0000003f0000413d0000000002000416000000000002004b0000003f0000c13d0000000401100370000000000101043b000000a40010009c0000003f0000213d000000000200041a000000a4032001970000000005000411000000000053004b000001960000c13d000000a406100198000001e30000c13d000000a801000041000000800010043f000000840000043f000000b9010000410000027e00010430000000800100043d000100000001001d000000000100041a000000a302100197000000000262019f000000000020041b0000000002000414000000a405100197000000a00020009c000000a002008041000000c001200210000000a5011001c70000800d020000390000000303000039000000a604000041027c02720000040f00000001002001900000003f0000613d0000000101000039000000000011041b00000002010000390000000102000029000000000021041b000000200100003900000100001004430000012000000443000000a7010000410000027d0001042e000000b60020009c0000012a0000613d000000b70020009c0000003f0000c13d000000240030008c0000003f0000413d0000000002000416000000000002004b0000003f0000c13d0000000401100370000000000101043b000000a40010009c0000003f0000213d000000000010043f0000000401000039000001200000013d000000240030008c0000003f0000413d0000000002000416000000000002004b0000003f0000c13d000000000200041a000000a4032001970000000002000411000000000023004b0000019b0000c13d0000000401100370000000000101043b0000000202000039000000000012041b000000800010043f0000000001000414000000a00010009c000000a001008041000000c001100210000000c3011001c70000800d020000390000000103000039000000c404000041000001110000013d0000000001000416000000000001004b0000003f0000c13d000000000100041a000000a4021001970000000001000411000000000012004b000001a00000c13d0000000102000039000000000102041a000000020010008c000001530000613d0000000201000039000000000012041b000000c7010000410000000000100443000000000100041000000004001004430000000001000414000000a00010009c000000a001008041000000c001100210000000c8011001c70000800a02000039027c02770000040f0000000100200190000001e20000613d000000000301043b000000000003004b000002030000c13d000000400100043d0000004402100039000000cc03000041000000000032043500000024021000390000001403000039000001f80000013d0000000001000416000000000001004b0000003f0000c13d0000000001000411000000000010043f0000000301000039000000200010043f0000000001000414000000a00010009c000000a001008041000000c001100210000000bb011001c70000801002000039027c02770000040f00000001002001900000003f0000613d0000000002000411000000000101043b000000000101041a000000ff00100190000001ba0000c13d000000000020043f0000000301000039000000200010043f0000000001000414000000a00010009c000000a001008041000000c001100210000000bb011001c70000801002000039027c02770000040f00000001002001900000003f0000613d000000000101043b000000000201041a000000d20220019700000001022001bf000000000021041b0000000001000414000000a00010009c000000a001008041000000c001100210000000a5011001c70000800d020000390000000203000039000000c6040000410000000005000411027c02720000040f00000001002001900000014d0000c13d0000003f0000013d000000240030008c0000003f0000413d0000000002000416000000000002004b0000003f0000c13d0000000401100370000000000101043b000000a40010009c0000003f0000213d000000000010043f0000000301000039000000200010043f0000000001000019027c02610000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000000ba010000410000027d0001042e0000000001000416000000000001004b0000003f0000c13d0000000502000039000000000102041a000000800010043f000000000020043f0000002002000039000000000001004b000001a50000c13d000000a0010000390000000004020019000001c20000013d0000000001000416000000000001004b0000003f0000c13d000000000100041a000000a4021001970000000005000411000000000052004b000001960000c13d000000a301100197000000000010041b0000000001000414000000a00010009c000000a001008041000000c001100210000000a5011001c70000800d020000390000000303000039000000a6040000410000000006000019027c02720000040f00000001002001900000003f0000613d00000000010000190000027d0001042e0000000101000039000000000201041a000000020020008c000001570000c13d000000cd01000041000000800010043f000000ce010000410000027e000104300000000202000039000000000021041b0000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000000a00010009c000000a001008041000000c001100210000000bb011001c70000801002000039027c02770000040f00000001002001900000003f0000613d000000000101043b000000000101041a000000ff00100190000001db0000c13d0000000201000039000000000101041a0000000002000416000000000012004b000001f20000c13d0000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000000a00010009c000000a001008041000000c001100210000000bb011001c70000801002000039027c02770000040f00000001002001900000003f0000613d000000000101043b000000000201041a000000d20220019700000001022001bf000000000021041b0000000502000039000000000102041a000000c00010009c000001b40000213d0000000103100039000000000032041b000000c10110009a000000000201041a000000a3022001970000000005000411000000000252019f000000000021041b0000000001000414000000a00010009c000000a001008041000000c001100210000000a5011001c70000800d020000390000000203000039000000c204000041000002590000013d000000b801000041000000800010043f000000840050043f000000b9010000410000027e00010430000000b801000041000000800010043f000000840020043f000000b9010000410000027e00010430000000b802000041000000800020043f000000840010043f000000b9010000410000027e00010430000000a005000039000000cf0300004100000000040000190000000006050019000000000503041a000000a405500197000000000556043600000001033000390000000104400039000000000014004b000001a80000413d000000410160008a000000d304100197000000d00040009c000001c10000413d000000d101000041000000000010043f0000004101000039000000040010043f000000a9010000410000027e00010430000000400100043d0000004402100039000000c503000041000000000032043500000024021000390000001703000039000001f80000013d0000008001400039000000400010043f0000000000210435000000a002400039000000800300043d0000000000320435000000c002400039000000000003004b000001d20000613d000000a00400003900000000050000190000000046040434000000a40660019700000000026204360000000105500039000000000035004b000001cc0000413d0000000002120049000000a00020009c000000a0020080410000006002200210000000a00010009c000000a0010080410000004001100210000000000112019f0000027d0001042e000000400100043d0000004402100039000000bc03000041000000000032043500000024021000390000001c03000039000001f80000013d000000000001042f000000a301200197000000000161019f000000000010041b0000000001000414000000a00010009c000000a001008041000000c001100210000000a5011001c70000800d020000390000000303000039000000a604000041027c02720000040f00000001002001900000014d0000c13d0000003f0000013d000000400100043d0000004402100039000000bf030000410000000000320435000000240210003900000018030000390000000000320435000000bd020000410000000000210435000000040210003900000020030000390000000000320435000000a00010009c000000a0010080410000004001100210000000be011001c70000027e00010430000000000200041a0000000001000414000000a404200197000000040040008c0000020b0000c13d00000000010000310000000108000039000002190000013d000000a00010009c000000a001008041000000c001100210000000a5011001c700008009020000390000000005000019000100000003001d027c02720000040f0000000103000029000000010820018f00010000000103550000006001100270000000a00010019d000000a001100197000000000001004b000002410000613d0000001f04100039000000d3044001970000003f04400039000000d304400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000000c00040009c000001b40000213d0000000100500190000001b40000c13d000000400040043f0000000005160436000000d3021001980000001f0910018f00000000012500190000000104000367000002340000613d000000000604034f000000006706043c0000000005750436000000000015004b000002300000c13d000000000009004b000002410000613d000000000224034f0000000305900210000000000401043300000000045401cf000000000454022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000242019f0000000000210435000000400100043d000000000008004b0000024a0000c13d0000004402100039000000cb03000041000000000032043500000024021000390000000f03000039000001f80000013d000000000200041a0000000000310435000000a00010009c000000a00100804100000040011002100000000003000414000000a00030009c000000a003008041000000c003300210000000000113019f000000c9011001c7000000a4052001970000800d020000390000000203000039000000ca04000041027c02720000040f00000001002001900000003f0000613d0000000101000039000000000011041b00000000010000190000027d0001042e000000000001042f0000000002000414000000a00020009c000000a002008041000000c002200210000000a00010009c000000a0010080410000004001100210000000000121019f000000bb011001c70000801002000039027c02770000040f0000000100200190000002700000613d000000000101043b000000000001042d00000000010000190000027e0001043000000275002104210000000102000039000000000001042d0000000002000019000000000001042d0000027a002104230000000102000039000000000001042d0000000002000019000000000001042d0000027c000004320000027d0001042e0000027e00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000002000000000000000000000000000000400000010000000000000000001e4fbdf700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000a7757f5000000000000000000000000000000000000000000000000000000000a7757f5100000000000000000000000000000000000000000000000000000000e2a4128300000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008b1ec71d000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000024600fc20000000000000000000000000000000000000000000000000000000024600fc300000000000000000000000000000000000000000000000000000000443bd1d0000000000000000000000000000000000000000000000000000000005397da8700000000000000000000000000000000000000000000000000000000050c28bf000000000000000000000000000000000000000000000000000000001bb123ee118cdaa700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000000000000000000000000000000000000000000200000008000000000000000000200000000000000000000000000000000000040000000000000000000000000426174746c655061737320616c7265616479207075726368617365640000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000496e636f7272656374207061796d656e7420616d6f756e740000000000000000000000000000000000000000000000000000000000000000fffffffffffffffffc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c250c1f0e5601e0fdc53dbef23e6985fd4e9d331c8c838e0ba9e75459d7bafdfffa70200000000000000000000000000000000000020000000800000000000000000f5adce8f4e3279f541bb9ad785c8d0f9f5d6d8dea2b65778d848a8e6d4d72f525573657220616c7265616479207265676973746572656400000000000000000054db7a5cb4735e1aac1f53db512d3390390bb6637bd30ad4bf9fc98667d9b9b99cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000000200000000000000000000000000000000000020000000000000000000000000eaff4b37086828766ad3268786972c0cd24259d4c87a80f9d3963a3c3d999b0d5472616e73666572206661696c656400000000000000000000000000000000004e6f2066756e647320746f2077697468647261770000000000000000000000003ee5aeb5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0000000000000000000000000000000000000000000000000ffffffffffffff804e487b7100000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe023bd0753460c3e0f0ff2d401aec8c37499e3c325870aa9b1e082655878a74fe7
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.