Source Code
Latest 25 from a total of 135 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Crossmint Mint | 15418164 | 1307 days ago | IN | 0.055 ETH | 0.00112209 | ||||
| Crossmint Mint | 15144359 | 1349 days ago | IN | 0.055 ETH | 0.00223846 | ||||
| Crossmint Mint | 15144212 | 1349 days ago | IN | 0.055 ETH | 0.0015745 | ||||
| Crossmint Mint | 15144166 | 1349 days ago | IN | 0.055 ETH | 0.00221783 | ||||
| Crossmint Mint | 15144136 | 1349 days ago | IN | 0.055 ETH | 0.00322642 | ||||
| Crossmint Mint | 15144117 | 1349 days ago | IN | 0.055 ETH | 0.00490821 | ||||
| Crossmint Mint | 15144083 | 1349 days ago | IN | 0.055 ETH | 0.0063083 | ||||
| Crossmint Mint | 15144081 | 1349 days ago | IN | 0.055 ETH | 0.00465554 | ||||
| Crossmint Mint | 15144077 | 1349 days ago | IN | 0.055 ETH | 0.00421296 | ||||
| Crossmint Mint | 15144069 | 1349 days ago | IN | 0.055 ETH | 0.00698754 | ||||
| Crossmint Mint | 15004102 | 1373 days ago | IN | 0.055 ETH | 0.00435103 | ||||
| Crossmint Mint | 14795252 | 1408 days ago | IN | 0.055 ETH | 0.00221055 | ||||
| Crossmint Mint | 14780363 | 1410 days ago | IN | 0.055 ETH | 0.00323574 | ||||
| Disburse | 14690520 | 1424 days ago | IN | 0 ETH | 0.00653697 | ||||
| Crossmint Mint | 14670898 | 1427 days ago | IN | 0.055 ETH | 0.00346255 | ||||
| Crossmint Mint | 14670406 | 1427 days ago | IN | 0.055 ETH | 0.01276596 | ||||
| Crossmint Mint | 14670316 | 1427 days ago | IN | 0.055 ETH | 0.0024687 | ||||
| Crossmint Mint | 14669187 | 1428 days ago | IN | 0.055 ETH | 0.00475221 | ||||
| Crossmint Mint | 14667781 | 1428 days ago | IN | 0.055 ETH | 0.00831658 | ||||
| Crossmint Mint | 14666371 | 1428 days ago | IN | 0.055 ETH | 0.00351691 | ||||
| Crossmint Mint | 14665741 | 1428 days ago | IN | 0.055 ETH | 0.00188461 | ||||
| Crossmint Mint | 14665656 | 1428 days ago | IN | 0.055 ETH | 0.00185914 | ||||
| Crossmint Mint | 14665625 | 1428 days ago | IN | 0.055 ETH | 0.00235776 | ||||
| Crossmint Mint | 14663708 | 1428 days ago | IN | 0.055 ETH | 0.00296093 | ||||
| Crossmint Mint | 14663640 | 1428 days ago | IN | 0.055 ETH | 0.00515367 |
Latest 16 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 14690520 | 1424 days ago | 2.2264 ETH | ||||
| - | 14690520 | 1424 days ago | 0.06453333 ETH | ||||
| - | 14690520 | 1424 days ago | 0.06453333 ETH | ||||
| - | 14690520 | 1424 days ago | 0.06453333 ETH | ||||
| - | 14650493 | 1431 days ago | 1.9228 ETH | ||||
| - | 14650493 | 1431 days ago | 0.05573333 ETH | ||||
| - | 14650493 | 1431 days ago | 0.05573333 ETH | ||||
| - | 14650493 | 1431 days ago | 0.05573333 ETH | ||||
| - | 14648347 | 1431 days ago | 0.4048 ETH | ||||
| - | 14648347 | 1431 days ago | 0.01173333 ETH | ||||
| - | 14648347 | 1431 days ago | 0.01173333 ETH | ||||
| - | 14648347 | 1431 days ago | 0.01173333 ETH | ||||
| - | 14645560 | 1431 days ago | 0.8096 ETH | ||||
| - | 14645560 | 1431 days ago | 0.02346666 ETH | ||||
| - | 14645560 | 1431 days ago | 0.02346666 ETH | ||||
| - | 14645560 | 1431 days ago | 0.02346666 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StickmanCrossmint
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @author AC
import "./stickman_contract.sol";
contract StickmanCrossmint is Ownable {
StickmanERC721 stickman_contract;
function setStickmanContract(StickmanERC721 _contract) external onlyOwner {
stickman_contract = _contract;
}
address public _crossmint_address;
function setCrossmintAddress(address _crossmint) external onlyOwner {
_crossmint_address = _crossmint;
}
modifier onlyCrossmint {
require (msg.sender == _crossmint_address);
_;
}
function crossmintMint(address to, uint256 _count) external payable onlyCrossmint {
stickman_contract.crossmintTo(to, _count);
}
/** developer payment */
address payable constant A = payable(0xAd75E32b0603D4a2b7E89A23eDD3228E5cD0699A); /** TODO set this to the atc address */
address payable constant T = payable(0xAECE4959fa2e70e9210D6755B25F73A225C4F956); /** TODO set this to the atc address */
address payable constant C = payable(0x0E25e1A23378ece3C304b930b5B42727E6D249F9); /** TODO set this to the atc address */
address payable constant O = payable(0x24BDa462ad1C29D8f0b31e266ccF259fE305fAd1);
function disburse() external onlyOwner {
uint256 total = address(this).balance;
uint256 ATC = (total * 8) / 100;
A.transfer(ATC / 3);
T.transfer(ATC / 3);
C.transfer(ATC / 3);
payable(O).transfer(total - ((total * 8) / 100));
}
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @author AC
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract StickmanERC721 is ERC721, Ownable {
constructor(string memory _name, string memory _symbol) ERC721(_name, _symbol) {}
/** uri methods */
string private _uri = "https://gateway.pinata.cloud/ipfs/QmXTYJrQDat98hAMRchontp98Xi2mNCENWamkm4Rwpfgae/";
function tokenURI(uint256 id) public view override returns (string memory) {
return string(abi.encodePacked(_uri, toString(id), ".json"));
}
function setURI(string memory uri) external onlyOwner {
_uri = uri;
}
/** contract permissions */
address private _crossmint_address; /// TODO set this to the crossmint minter address
function setCrossmintAddress(address addr) external onlyOwner {
_crossmint_address = addr;
}
modifier onlyCrossmint() {
require (msg.sender == _crossmint_address);
_;
}
/** mint enabling */
bool private allow_list_enabled;
bool private mint_enabled;
function enableAllowList() external onlyOwner {
allow_list_enabled = true;
}
function enableMint() external onlyOwner {
mint_enabled = true;
}
modifier allowListEnabled() {
require (allow_list_enabled, "allow list not enabled.");
_;
}
modifier mintEnabled() {
require (mint_enabled, "minting not enabled.");
_;
}
/** mint limits per-wallet */
uint256 public constant MAX_PER_WALLET = 3;
modifier enforceMintLimit(address to, uint256 num_to_mint) {
require (balanceOf(to) + num_to_mint <= MAX_PER_WALLET, "too many tokens minted to this wallet.");
_;
}
/** mint price */
uint256 public constant PRICE = 55000000000000000; // 0.055 ether
modifier ensurePayment(uint256 num_to_mint) {
require (msg.value >= num_to_mint * PRICE, "not enough ether paid.");
_;
}
/** minting allowlist logic */
mapping (address => uint256) private _allowList;
function setAllowList(address[] calldata vips) external {
uint256 num_vips = vips.length;
for (uint256 i; i < num_vips;) {
_allowList[vips[i]] = MAX_PER_WALLET;
unchecked {
i++;
}
}
}
modifier enforcePremintLimit(address to, uint256 num_to_mint) {
uint256 amount_left = _allowList[to];
require (num_to_mint <= amount_left, "exceeding premint limit.");
_;
_allowList[to] = amount_left - num_to_mint;
}
/** reentrancy */
uint256 private guard = 1;
modifier reentrancyGuard() {
require (guard == 1, "reentrancy failure.");
guard = 2;
_;
guard = 1;
}
/** supply limits */
uint256 public constant MAX_SUPPLY = 5555;
uint256 public totalSupply;
function _internal_mint(address to, uint256 num_to_mint) internal {
uint256 total_supply = totalSupply;
require (total_supply + num_to_mint <= MAX_SUPPLY, "minting error, attempting to exceed supply.");
for (uint256 i; i < num_to_mint;) {
_safeMint(to, ++total_supply);
unchecked {
i++;
}
}
totalSupply = total_supply;
}
/** public mint functions */
function allowlistMint(uint256 num_to_mint) external payable allowListEnabled enforcePremintLimit(msg.sender, num_to_mint) ensurePayment(num_to_mint) reentrancyGuard {
_internal_mint(msg.sender, num_to_mint);
}
function mint(uint256 num_to_mint) external payable mintEnabled enforceMintLimit(msg.sender, num_to_mint) ensurePayment(num_to_mint) reentrancyGuard {
_internal_mint(msg.sender, num_to_mint);
}
function crossmintTo(address to, uint256 _count) external onlyCrossmint enforceMintLimit(to, _count) reentrancyGuard {
if (!mint_enabled) {
require (allow_list_enabled, "allow list and minting both not enabled, crossmint disabled.");
uint256 amount_left = _allowList[to];
require (_count <= amount_left, "attempting to mint too many during allow list mint.");
_allowList[to] = amount_left - _count;
}
_internal_mint(to, _count);
}
/** developer payment */
address payable constant A = payable(0xAd75E32b0603D4a2b7E89A23eDD3228E5cD0699A); /** TODO set this to the atc address */
address payable constant T = payable(0xAECE4959fa2e70e9210D6755B25F73A225C4F956); /** TODO set this to the atc address */
address payable constant C = payable(0x0E25e1A23378ece3C304b930b5B42727E6D249F9); /** TODO set this to the atc address */
function disburse() external onlyOwner {
uint256 total = address(this).balance;
uint256 ATC = (total * 8) / 100;
A.transfer(ATC / 3);
T.transfer(ATC / 3);
C.transfer(ATC / 3);
payable(owner()).transfer(total - ((total * 8) / 100));
}
}
function toString(uint256 value) pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// 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 v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// 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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"_crossmint_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"crossmintMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"disburse","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":"address","name":"_crossmint","type":"address"}],"name":"setCrossmintAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract StickmanERC721","name":"_contract","type":"address"}],"name":"setStickmanContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610d2d8061010d6000396000f3fe60806040526004361061007b5760003560e01c8063abc6fd0b1161004e578063abc6fd0b14610107578063f2c017ff1461011e578063f2fde38b14610147578063f50a099a146101705761007b565b806367ae503b14610080578063715018a61461009c5780638da5cb5b146100b357806399755624146100de575b600080fd5b61009a60048036038101906100959190610964565b61019b565b005b3480156100a857600080fd5b506100b1610288565b005b3480156100bf57600080fd5b506100c8610310565b6040516100d59190610a35565b60405180910390f35b3480156100ea57600080fd5b5061010560048036038101906101009190610937565b610339565b005b34801561011357600080fd5b5061011c6103f9565b005b34801561012a57600080fd5b50610145600480360381019061014091906109a4565b61064e565b005b34801561015357600080fd5b5061016e60048036038101906101699190610937565b61070e565b005b34801561017c57600080fd5b50610185610806565b6040516101929190610a35565b60405180910390f35b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146101f557600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e67c03e283836040518363ffffffff1660e01b8152600401610252929190610a50565b600060405180830381600087803b15801561026c57600080fd5b505af1158015610280573d6000803e3d6000fd5b505050505050565b61029061082c565b73ffffffffffffffffffffffffffffffffffffffff166102ae610310565b73ffffffffffffffffffffffffffffffffffffffff1614610304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102fb90610a99565b60405180910390fd5b61030e6000610834565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61034161082c565b73ffffffffffffffffffffffffffffffffffffffff1661035f610310565b73ffffffffffffffffffffffffffffffffffffffff16146103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac90610a99565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61040161082c565b73ffffffffffffffffffffffffffffffffffffffff1661041f610310565b73ffffffffffffffffffffffffffffffffffffffff1614610475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046c90610a99565b60405180910390fd5b60004790506000606460088361048b9190610afb565b6104959190610aca565b905073ad75e32b0603d4a2b7e89a23edd3228e5cd0699a73ffffffffffffffffffffffffffffffffffffffff166108fc6003836104d29190610aca565b9081150290604051600060405180830381858888f193505050501580156104fd573d6000803e3d6000fd5b5073aece4959fa2e70e9210d6755b25f73a225c4f95673ffffffffffffffffffffffffffffffffffffffff166108fc6003836105399190610aca565b9081150290604051600060405180830381858888f19350505050158015610564573d6000803e3d6000fd5b50730e25e1a23378ece3c304b930b5b42727e6d249f973ffffffffffffffffffffffffffffffffffffffff166108fc6003836105a09190610aca565b9081150290604051600060405180830381858888f193505050501580156105cb573d6000803e3d6000fd5b507324bda462ad1c29d8f0b31e266ccf259fe305fad173ffffffffffffffffffffffffffffffffffffffff166108fc60646008856106099190610afb565b6106139190610aca565b8461061e9190610b55565b9081150290604051600060405180830381858888f19350505050158015610649573d6000803e3d6000fd5b505050565b61065661082c565b73ffffffffffffffffffffffffffffffffffffffff16610674610310565b73ffffffffffffffffffffffffffffffffffffffff16146106ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c190610a99565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61071661082c565b73ffffffffffffffffffffffffffffffffffffffff16610734610310565b73ffffffffffffffffffffffffffffffffffffffff161461078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190610a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f190610a79565b60405180910390fd5b61080381610834565b50565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061090781610cb2565b92915050565b60008135905061091c81610cc9565b92915050565b60008135905061093181610ce0565b92915050565b60006020828403121561094d5761094c610c35565b5b600061095b848285016108f8565b91505092915050565b6000806040838503121561097b5761097a610c35565b5b6000610989858286016108f8565b925050602061099a85828601610922565b9150509250929050565b6000602082840312156109ba576109b9610c35565b5b60006109c88482850161090d565b91505092915050565b6109da81610b89565b82525050565b60006109ed602683610ab9565b91506109f882610c3a565b604082019050919050565b6000610a10602083610ab9565b9150610a1b82610c89565b602082019050919050565b610a2f81610bcd565b82525050565b6000602082019050610a4a60008301846109d1565b92915050565b6000604082019050610a6560008301856109d1565b610a726020830184610a26565b9392505050565b60006020820190508181036000830152610a92816109e0565b9050919050565b60006020820190508181036000830152610ab281610a03565b9050919050565b600082825260208201905092915050565b6000610ad582610bcd565b9150610ae083610bcd565b925082610af057610aef610c06565b5b828204905092915050565b6000610b0682610bcd565b9150610b1183610bcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610b4a57610b49610bd7565b5b828202905092915050565b6000610b6082610bcd565b9150610b6b83610bcd565b925082821015610b7e57610b7d610bd7565b5b828203905092915050565b6000610b9482610bad565b9050919050565b6000610ba682610b89565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b610cbb81610b89565b8114610cc657600080fd5b50565b610cd281610b9b565b8114610cdd57600080fd5b50565b610ce981610bcd565b8114610cf457600080fd5b5056fea26469706673582212206c3a695ba69783b66658ffe4aa9160c12c87c791a932bbc08a149349bc61825764736f6c63430008070033
Deployed Bytecode
0x60806040526004361061007b5760003560e01c8063abc6fd0b1161004e578063abc6fd0b14610107578063f2c017ff1461011e578063f2fde38b14610147578063f50a099a146101705761007b565b806367ae503b14610080578063715018a61461009c5780638da5cb5b146100b357806399755624146100de575b600080fd5b61009a60048036038101906100959190610964565b61019b565b005b3480156100a857600080fd5b506100b1610288565b005b3480156100bf57600080fd5b506100c8610310565b6040516100d59190610a35565b60405180910390f35b3480156100ea57600080fd5b5061010560048036038101906101009190610937565b610339565b005b34801561011357600080fd5b5061011c6103f9565b005b34801561012a57600080fd5b50610145600480360381019061014091906109a4565b61064e565b005b34801561015357600080fd5b5061016e60048036038101906101699190610937565b61070e565b005b34801561017c57600080fd5b50610185610806565b6040516101929190610a35565b60405180910390f35b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146101f557600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e67c03e283836040518363ffffffff1660e01b8152600401610252929190610a50565b600060405180830381600087803b15801561026c57600080fd5b505af1158015610280573d6000803e3d6000fd5b505050505050565b61029061082c565b73ffffffffffffffffffffffffffffffffffffffff166102ae610310565b73ffffffffffffffffffffffffffffffffffffffff1614610304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102fb90610a99565b60405180910390fd5b61030e6000610834565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61034161082c565b73ffffffffffffffffffffffffffffffffffffffff1661035f610310565b73ffffffffffffffffffffffffffffffffffffffff16146103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac90610a99565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61040161082c565b73ffffffffffffffffffffffffffffffffffffffff1661041f610310565b73ffffffffffffffffffffffffffffffffffffffff1614610475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046c90610a99565b60405180910390fd5b60004790506000606460088361048b9190610afb565b6104959190610aca565b905073ad75e32b0603d4a2b7e89a23edd3228e5cd0699a73ffffffffffffffffffffffffffffffffffffffff166108fc6003836104d29190610aca565b9081150290604051600060405180830381858888f193505050501580156104fd573d6000803e3d6000fd5b5073aece4959fa2e70e9210d6755b25f73a225c4f95673ffffffffffffffffffffffffffffffffffffffff166108fc6003836105399190610aca565b9081150290604051600060405180830381858888f19350505050158015610564573d6000803e3d6000fd5b50730e25e1a23378ece3c304b930b5b42727e6d249f973ffffffffffffffffffffffffffffffffffffffff166108fc6003836105a09190610aca565b9081150290604051600060405180830381858888f193505050501580156105cb573d6000803e3d6000fd5b507324bda462ad1c29d8f0b31e266ccf259fe305fad173ffffffffffffffffffffffffffffffffffffffff166108fc60646008856106099190610afb565b6106139190610aca565b8461061e9190610b55565b9081150290604051600060405180830381858888f19350505050158015610649573d6000803e3d6000fd5b505050565b61065661082c565b73ffffffffffffffffffffffffffffffffffffffff16610674610310565b73ffffffffffffffffffffffffffffffffffffffff16146106ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c190610a99565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61071661082c565b73ffffffffffffffffffffffffffffffffffffffff16610734610310565b73ffffffffffffffffffffffffffffffffffffffff161461078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190610a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f190610a79565b60405180910390fd5b61080381610834565b50565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061090781610cb2565b92915050565b60008135905061091c81610cc9565b92915050565b60008135905061093181610ce0565b92915050565b60006020828403121561094d5761094c610c35565b5b600061095b848285016108f8565b91505092915050565b6000806040838503121561097b5761097a610c35565b5b6000610989858286016108f8565b925050602061099a85828601610922565b9150509250929050565b6000602082840312156109ba576109b9610c35565b5b60006109c88482850161090d565b91505092915050565b6109da81610b89565b82525050565b60006109ed602683610ab9565b91506109f882610c3a565b604082019050919050565b6000610a10602083610ab9565b9150610a1b82610c89565b602082019050919050565b610a2f81610bcd565b82525050565b6000602082019050610a4a60008301846109d1565b92915050565b6000604082019050610a6560008301856109d1565b610a726020830184610a26565b9392505050565b60006020820190508181036000830152610a92816109e0565b9050919050565b60006020820190508181036000830152610ab281610a03565b9050919050565b600082825260208201905092915050565b6000610ad582610bcd565b9150610ae083610bcd565b925082610af057610aef610c06565b5b828204905092915050565b6000610b0682610bcd565b9150610b1183610bcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610b4a57610b49610bd7565b5b828202905092915050565b6000610b6082610bcd565b9150610b6b83610bcd565b925082821015610b7e57610b7d610bd7565b5b828203905092915050565b6000610b9482610bad565b9050919050565b6000610ba682610b89565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b610cbb81610b89565b8114610cc657600080fd5b50565b610cd281610b9b565b8114610cdd57600080fd5b50565b610ce981610bcd565b8114610cf457600080fd5b5056fea26469706673582212206c3a695ba69783b66658ffe4aa9160c12c87c791a932bbc08a149349bc61825764736f6c63430008070033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$1,547.27
Net Worth in ETH
0.715
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,164.02 | 0.715 | $1,547.27 |
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.