Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Merkle Root | 14830990 | 1394 days ago | IN | 0 ETH | 0.00199161 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
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 0xB79b833E...3f8ee4950 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MerkChecker
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "./TurfShopEligibilityChecker.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// A Merklee Tree based eligiblity checker for Turf Shop.
// Requires the address to check, the Merkle proof, and the expected number of items to mint.
// That count is encoded into the tree. If all's well it will return that count to TurfShop for minting.
// Requires TurfShop to call back to confirmMint to mark this address as having been attended to.
// Don't use this for live checks, only snapshots, since it won't track plots that have changed hands.
contract MerkChecker is TurfShopEligibilityChecker, Ownable {
address turfShopAddress;
mapping(address => uint256) private _mintedPerAddress;
bytes32 private _merkleRoot;
constructor(address turfShopAddress_) {
require(turfShopAddress_ != address(0), "Set the Turf Shop address!");
turfShopAddress = turfShopAddress_;
}
function check(address addr, bytes32[] memory merkleProof, bytes memory data) external view returns (bool, uint) {
require(_mintedPerAddress[addr] == 0, "already minted");
(uint expectedCount) = abi.decode(data, (uint));
bytes32 leaf = keccak256(abi.encodePacked(addr, expectedCount));
if(MerkleProof.verify(merkleProof, _merkleRoot, leaf)){
return (true, expectedCount);
} else {
return (false, 0);
}
}
function confirmMint(address addr, uint256 count) external {
require(msg.sender == turfShopAddress, "nope");
_mintedPerAddress[addr] = count;
}
function setMerkleRoot(bytes32 merkRoot) external onlyOwner {
_merkleRoot = merkRoot;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
/*
Each TurfShop object's mint can be configured to refer to an external contract for eligiblity checks.
This way we can arrange mints' "allow list" flexibly as the need arises, without having to hard code
all possible situations in the primary TurfShop contract.
For example, we might want a "Get a free item for every Turf plot you own" give away,
which would entail that a Checker contract get a user's balance from the original Turf contract.
Or we might just have a snapshot of some arbitrary data, stored in a Merkle Tree.
Or maybe we want to interface with another community's contract, etc.
Either way, we can develop that later, on a per-Turf Object basis.
In our "get a plant for every Turf Plot" example, we'd return (true, 5)
for a person that held 5 plots. This would inform TurfShop.sol to give that person
5 plants. Or, if they held no Turf Plots, we'd return (false, 0).
*/
interface TurfShopEligibilityChecker {
// @notice Confirms if the given address can mint this object, and, if so, how many items can they mint?
// @param addr The address being checked.
// @param merkleProof If a Merkle Tree is involved, pass in the proof.
// @param data An optional chunk of data that can be used by Checker in any way.
function check(address addr, bytes32[] memory merkleProof, bytes memory data) external view returns (bool, uint);
/**
@notice A method that TurfShop can call back to, following a succesful mint, to let this Checker know that the
address minted a given amount of items. This might be used to update storage in this contract in order to prevent the address
from minting more than once.
NOTE: Be sure to setup some logic to prevent this method from being called globally.
For example, store TurfShop's address in the constructor, and check that it's the `msg.sender` inside this method.
*/
// @param addr The address that minted.
// @param count How many items were minted.
function confirmMint(address addr, uint256 count) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../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.
*
* By default, the owner account will be the one that deploys the contract. 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;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing 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 {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_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 v4.5.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = _efficientHash(computedHash, proofElement);
} else {
// Hash(current element of the proof + current computed hash)
computedHash = _efficientHash(proofElement, computedHash);
}
}
return computedHash;
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @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;
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"turfShopAddress_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"check","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"confirmMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x608060405234801561001057600080fd5b5060405161083238038061083283398101604081905261002f91610107565b610038336100b7565b6001600160a01b0381166100925760405162461bcd60e51b815260206004820152601a60248201527f5365742074686520547572662053686f70206164647265737321000000000000604482015260640160405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055610137565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561011957600080fd5b81516001600160a01b038116811461013057600080fd5b9392505050565b6106ec806101466000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80636af964b414610067578063715018a61461007c5780637cb64759146100845780638da5cb5b14610097578063efbdc625146100b7578063f2fde38b146100e1575b600080fd5b61007a610075366004610435565b6100f4565b005b61007a61015c565b61007a61009236600461045f565b610192565b6000546040516001600160a01b0390911681526020015b60405180910390f35b6100ca6100c536600461052f565b6101c1565b6040805192151583526020830191909152016100ae565b61007a6100ef366004610609565b6102a4565b6001546001600160a01b031633146101405760405162461bcd60e51b8152600401610137906020808252600490820152636e6f706560e01b604082015260600190565b60405180910390fd5b6001600160a01b03909116600090815260026020526040902055565b6000546001600160a01b031633146101865760405162461bcd60e51b81526004016101379061062b565b610190600061033f565b565b6000546001600160a01b031633146101bc5760405162461bcd60e51b81526004016101379061062b565b600355565b6001600160a01b03831660009081526002602052604081205481901561021a5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610137565b6000838060200190518101906102309190610660565b6040516bffffffffffffffffffffffff19606089901b16602082015260348101829052909150600090605401604051602081830303815290604052805190602001209050610281866003548361038f565b15610292575060019250905061029c565b6000809350935050505b935093915050565b6000546001600160a01b031633146102ce5760405162461bcd60e51b81526004016101379061062b565b6001600160a01b0381166103335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610137565b61033c8161033f565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008261039c85846103a5565b14949350505050565b600081815b84518110156104115760008582815181106103c7576103c7610679565b602002602001015190508083116103ed57600083815260208290526040902092506103fe565b600081815260208490526040902092505b50806104098161068f565b9150506103aa565b509392505050565b80356001600160a01b038116811461043057600080fd5b919050565b6000806040838503121561044857600080fd5b61045183610419565b946020939093013593505050565b60006020828403121561047157600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156104b7576104b7610478565b604052919050565b600082601f8301126104d057600080fd5b813567ffffffffffffffff8111156104ea576104ea610478565b6104fd601f8201601f191660200161048e565b81815284602083860101111561051257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561054457600080fd5b61054d84610419565b925060208085013567ffffffffffffffff8082111561056b57600080fd5b818701915087601f83011261057f57600080fd5b81358181111561059157610591610478565b8060051b6105a085820161048e565b918252838101850191858101908b8411156105ba57600080fd5b948601945b838610156105d8578535825294860194908601906105bf565b975050505060408701359250808311156105f157600080fd5b50506105ff868287016104bf565b9150509250925092565b60006020828403121561061b57600080fd5b61062482610419565b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561067257600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000600182016106af57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220f9c2412f14c93b013f3c8aa18766920326fd43255d86d99913df949db4d1ecd064736f6c634300080d003300000000000000000000000000808c4201db673c00950b291ecd23bb9c1c6b0f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100625760003560e01c80636af964b414610067578063715018a61461007c5780637cb64759146100845780638da5cb5b14610097578063efbdc625146100b7578063f2fde38b146100e1575b600080fd5b61007a610075366004610435565b6100f4565b005b61007a61015c565b61007a61009236600461045f565b610192565b6000546040516001600160a01b0390911681526020015b60405180910390f35b6100ca6100c536600461052f565b6101c1565b6040805192151583526020830191909152016100ae565b61007a6100ef366004610609565b6102a4565b6001546001600160a01b031633146101405760405162461bcd60e51b8152600401610137906020808252600490820152636e6f706560e01b604082015260600190565b60405180910390fd5b6001600160a01b03909116600090815260026020526040902055565b6000546001600160a01b031633146101865760405162461bcd60e51b81526004016101379061062b565b610190600061033f565b565b6000546001600160a01b031633146101bc5760405162461bcd60e51b81526004016101379061062b565b600355565b6001600160a01b03831660009081526002602052604081205481901561021a5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610137565b6000838060200190518101906102309190610660565b6040516bffffffffffffffffffffffff19606089901b16602082015260348101829052909150600090605401604051602081830303815290604052805190602001209050610281866003548361038f565b15610292575060019250905061029c565b6000809350935050505b935093915050565b6000546001600160a01b031633146102ce5760405162461bcd60e51b81526004016101379061062b565b6001600160a01b0381166103335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610137565b61033c8161033f565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008261039c85846103a5565b14949350505050565b600081815b84518110156104115760008582815181106103c7576103c7610679565b602002602001015190508083116103ed57600083815260208290526040902092506103fe565b600081815260208490526040902092505b50806104098161068f565b9150506103aa565b509392505050565b80356001600160a01b038116811461043057600080fd5b919050565b6000806040838503121561044857600080fd5b61045183610419565b946020939093013593505050565b60006020828403121561047157600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156104b7576104b7610478565b604052919050565b600082601f8301126104d057600080fd5b813567ffffffffffffffff8111156104ea576104ea610478565b6104fd601f8201601f191660200161048e565b81815284602083860101111561051257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561054457600080fd5b61054d84610419565b925060208085013567ffffffffffffffff8082111561056b57600080fd5b818701915087601f83011261057f57600080fd5b81358181111561059157610591610478565b8060051b6105a085820161048e565b918252838101850191858101908b8411156105ba57600080fd5b948601945b838610156105d8578535825294860194908601906105bf565b975050505060408701359250808311156105f157600080fd5b50506105ff868287016104bf565b9150509250925092565b60006020828403121561061b57600080fd5b61062482610419565b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561067257600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000600182016106af57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220f9c2412f14c93b013f3c8aa18766920326fd43255d86d99913df949db4d1ecd064736f6c634300080d0033
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 ]
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.