Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 772 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Free Mint | 13891555 | 1526 days ago | IN | 0 ETH | 0.00488636 | ||||
| Free Mint | 13891377 | 1526 days ago | IN | 0 ETH | 0.00408437 | ||||
| Free Mint | 13889288 | 1526 days ago | IN | 0 ETH | 0.00490804 | ||||
| Free Mint | 13887442 | 1527 days ago | IN | 0 ETH | 0.00179256 | ||||
| Free Mint | 13887281 | 1527 days ago | IN | 0 ETH | 0.00146516 | ||||
| Free Mint | 13887281 | 1527 days ago | IN | 0 ETH | 0.00236967 | ||||
| Free Mint | 13887281 | 1527 days ago | IN | 0 ETH | 0.00151228 | ||||
| Free Mint | 13887278 | 1527 days ago | IN | 0 ETH | 0.00382363 | ||||
| Free Mint | 13887278 | 1527 days ago | IN | 0 ETH | 0.00206941 | ||||
| Free Mint | 13887278 | 1527 days ago | IN | 0 ETH | 0.00206531 | ||||
| Free Mint | 13887278 | 1527 days ago | IN | 0 ETH | 0.00160787 | ||||
| Free Mint | 13887277 | 1527 days ago | IN | 0 ETH | 0.0015925 | ||||
| Free Mint | 13887276 | 1527 days ago | IN | 0 ETH | 0.00169218 | ||||
| Free Mint | 13887276 | 1527 days ago | IN | 0 ETH | 0.00169218 | ||||
| Free Mint | 13887276 | 1527 days ago | IN | 0 ETH | 0.00260905 | ||||
| Free Mint | 13887276 | 1527 days ago | IN | 0 ETH | 0.00169218 | ||||
| Free Mint | 13887271 | 1527 days ago | IN | 0 ETH | 0.00178399 | ||||
| Free Mint | 13887271 | 1527 days ago | IN | 0 ETH | 0.00178399 | ||||
| Free Mint | 13887271 | 1527 days ago | IN | 0 ETH | 0.00183809 | ||||
| Free Mint | 13887270 | 1527 days ago | IN | 0 ETH | 0.00174579 | ||||
| Free Mint | 13887270 | 1527 days ago | IN | 0 ETH | 0.00175647 | ||||
| Free Mint | 13887270 | 1527 days ago | IN | 0 ETH | 0.00288127 | ||||
| Free Mint | 13887270 | 1527 days ago | IN | 0 ETH | 0.00175647 | ||||
| Free Mint | 13887270 | 1527 days ago | IN | 0 ETH | 0.00175647 | ||||
| Free Mint | 13887270 | 1527 days ago | IN | 0 ETH | 0.00175647 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MonfterSOSMinter
Compiler Version
v0.8.8+commit.dddeac2f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-12-26
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.8;
/**
* @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 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;
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() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 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;
}
}
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount)
external
returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender)
external
view
returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
/**
* @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);
}
/**
* @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;
}
interface MonfterNFT {
function safeMint(address) external;
}
contract MonfterSOSMinter is Context, ReentrancyGuard {
using Counters for Counters.Counter;
using SafeMath for uint256;
IERC20 public sosToken;
MonfterNFT public monfterNft;
uint256 public MIN_MON_HOLD = 10000000e18;
uint256 public MAX_FREE_MINT = 721;
uint256 public sosHolderMint;
mapping(address => uint256) public mintLog;
event Mint(address indexed account);
constructor(IERC20 _sosToken, MonfterNFT _monfterNft) {
sosToken = _sosToken;
monfterNft = _monfterNft;
}
function beforeMint() internal view {
require(
sosToken.balanceOf(_msgSender()) >= MIN_MON_HOLD,
"invalid token amount"
);
require(sosHolderMint.add(1) <= MAX_FREE_MINT, "mint end");
require(mintLog[_msgSender()] <= 0, "already mint");
}
function afterMint() internal {
sosHolderMint = sosHolderMint.add(1);
mintLog[_msgSender()] += 1;
}
function preMintLeft() public view returns (uint256) {
return MAX_FREE_MINT.sub(sosHolderMint);
}
function freeMint() public nonReentrant {
beforeMint();
monfterNft.safeMint(_msgSender());
afterMint();
emit Mint(_msgSender());
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20","name":"_sosToken","type":"address"},{"internalType":"contract MonfterNFT","name":"_monfterNft","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Mint","type":"event"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_MON_HOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"monfterNft","outputs":[{"internalType":"contract MonfterNFT","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sosHolderMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sosToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040526a084595161401484a0000006003556102d160045534801561002557600080fd5b506040516105ab3803806105ab83398101604081905261004491610092565b6001600081905580546001600160a01b039384166001600160a01b031991821617909155600280549290931691161790556100cc565b6001600160a01b038116811461008f57600080fd5b50565b600080604083850312156100a557600080fd5b82516100b08161007a565b60208401519092506100c18161007a565b809150509250929050565b6104d0806100db6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c806394396a841161005b57806394396a84146100c4578063a24eed58146100e4578063af179151146100ed578063c2e63e601461011857600080fd5b806313fdbc2b1461008d57806341cda203146100a85780635b70ea9f146100b15780638d8d38ec146100bb575b600080fd5b61009561012b565b6040519081526020015b60405180910390f35b61009560045481565b6100b9610149565b005b61009560055481565b6100956100d2366004610413565b60066020526000908152604090205481565b61009560035481565b600254610100906001600160a01b031681565b6040516001600160a01b03909116815260200161009f565b600154610100906001600160a01b031681565b600061014460055460045461025390919063ffffffff16565b905090565b600260005414156101a15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026000556101ae610266565b6002546001600160a01b03166340d097c3336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561020157600080fd5b505af1158015610215573d6000803e3d6000fd5b505050506102216103cf565b60405133907f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056590600090a26001600055565b600061025f8284610452565b9392505050565b6003546001546001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156102ba57600080fd5b505afa1580156102ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f29190610469565b10156103375760405162461bcd60e51b81526020600482015260146024820152731a5b9d985b1a59081d1bdad95b88185b5bdd5b9d60621b6044820152606401610198565b600454600554610348906001610407565b11156103815760405162461bcd60e51b81526020600482015260086024820152671b5a5b9d08195b9960c21b6044820152606401610198565b33600090815260066020526040902054156103cd5760405162461bcd60e51b815260206004820152600c60248201526b185b1c9958591e481b5a5b9d60a21b6044820152606401610198565b565b6005546103dd906001610407565b600555336000908152600660205260408120805460019290610400908490610482565b9091555050565b600061025f8284610482565b60006020828403121561042557600080fd5b81356001600160a01b038116811461025f57600080fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156104645761046461043c565b500390565b60006020828403121561047b57600080fd5b5051919050565b600082198211156104955761049561043c565b50019056fea2646970667358221220dcb411371065bbbcf6f873b3b836324b4c4ac666291b6cead3134fdd8a305e9764736f6c634300080800330000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee00000000000000000000000005ad0f6563f83b68b69ed3db5dc69e0748a8a2e5c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100885760003560e01c806394396a841161005b57806394396a84146100c4578063a24eed58146100e4578063af179151146100ed578063c2e63e601461011857600080fd5b806313fdbc2b1461008d57806341cda203146100a85780635b70ea9f146100b15780638d8d38ec146100bb575b600080fd5b61009561012b565b6040519081526020015b60405180910390f35b61009560045481565b6100b9610149565b005b61009560055481565b6100956100d2366004610413565b60066020526000908152604090205481565b61009560035481565b600254610100906001600160a01b031681565b6040516001600160a01b03909116815260200161009f565b600154610100906001600160a01b031681565b600061014460055460045461025390919063ffffffff16565b905090565b600260005414156101a15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026000556101ae610266565b6002546001600160a01b03166340d097c3336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561020157600080fd5b505af1158015610215573d6000803e3d6000fd5b505050506102216103cf565b60405133907f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056590600090a26001600055565b600061025f8284610452565b9392505050565b6003546001546001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156102ba57600080fd5b505afa1580156102ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f29190610469565b10156103375760405162461bcd60e51b81526020600482015260146024820152731a5b9d985b1a59081d1bdad95b88185b5bdd5b9d60621b6044820152606401610198565b600454600554610348906001610407565b11156103815760405162461bcd60e51b81526020600482015260086024820152671b5a5b9d08195b9960c21b6044820152606401610198565b33600090815260066020526040902054156103cd5760405162461bcd60e51b815260206004820152600c60248201526b185b1c9958591e481b5a5b9d60a21b6044820152606401610198565b565b6005546103dd906001610407565b600555336000908152600660205260408120805460019290610400908490610482565b9091555050565b600061025f8284610482565b60006020828403121561042557600080fd5b81356001600160a01b038116811461025f57600080fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156104645761046461043c565b500390565b60006020828403121561047b57600080fd5b5051919050565b600082198211156104955761049561043c565b50019056fea2646970667358221220dcb411371065bbbcf6f873b3b836324b4c4ac666291b6cead3134fdd8a305e9764736f6c63430008080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee00000000000000000000000005ad0f6563f83b68b69ed3db5dc69e0748a8a2e5c
-----Decoded View---------------
Arg [0] : _sosToken (address): 0x3b484b82567a09e2588A13D54D032153f0c0aEe0
Arg [1] : _monfterNft (address): 0x5aD0F6563f83b68B69eD3db5Dc69E0748A8A2e5c
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee0
Arg [1] : 0000000000000000000000005ad0f6563f83b68b69ed3db5dc69e0748a8a2e5c
Deployed Bytecode Sourcemap
20281:1302:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21284:111;;;:::i;:::-;;;160:25:1;;;148:2;133:18;21284:111:0;;;;;;;;20533:34;;;;;;21403:177;;;:::i;:::-;;20576:28;;;;;;20611:42;;;;;;:::i;:::-;;;;;;;;;;;;;;20485:41;;;;;;20448:28;;;;;-1:-1:-1;;;;;20448:28:0;;;;;;-1:-1:-1;;;;;669:32:1;;;651:51;;639:2;624:18;20448:28:0;487:221:1;20419:22:0;;;;;-1:-1:-1;;;;;20419:22:0;;;21284:111;21328:7;21355:32;21373:13;;21355;;:17;;:32;;;;:::i;:::-;21348:39;;21284:111;:::o;21403:177::-;1710:1;2308:7;;:19;;2300:63;;;;-1:-1:-1;;;2300:63:0;;1137:2:1;2300:63:0;;;1119:21:1;1176:2;1156:18;;;1149:30;1215:33;1195:18;;;1188:61;1266:18;;2300:63:0;;;;;;;;;1710:1;2441:7;:18;21454:12:::1;:10;:12::i;:::-;21479:10;::::0;-1:-1:-1;;;;;21479:10:0::1;:19;4601:10:::0;21479:33:::1;::::0;-1:-1:-1;;;;;;21479:33:0::1;::::0;;;;;;-1:-1:-1;;;;;669:32:1;;;21479:33:0::1;::::0;::::1;651:51:1::0;624:18;;21479:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;21525:11;:9;:11::i;:::-;21554:18;::::0;4601:10;;21554:18:::1;::::0;;;::::1;1666:1:::0;2620:7;:22;21403:177::o;7987:98::-;8045:7;8072:5;8076:1;8072;:5;:::i;:::-;8065:12;7987:98;-1:-1:-1;;;7987:98:0:o;20842:304::-;20947:12;;20911:8;;-1:-1:-1;;;;;20911:8:0;:18;4601:10;20911:32;;-1:-1:-1;;;;;;20911:32:0;;;;;;;-1:-1:-1;;;;;669:32:1;;;20911::0;;;651:51:1;624:18;;20911:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;20889:118;;;;-1:-1:-1;;;20889:118:0;;2156:2:1;20889:118:0;;;2138:21:1;2195:2;2175:18;;;2168:30;-1:-1:-1;;;2214:18:1;;;2207:50;2274:18;;20889:118:0;1954:344:1;20889:118:0;21050:13;;21026;;:20;;21044:1;21026:17;:20::i;:::-;:37;;21018:58;;;;-1:-1:-1;;;21018:58:0;;2505:2:1;21018:58:0;;;2487:21:1;2544:1;2524:18;;;2517:29;-1:-1:-1;;;2562:18:1;;;2555:38;2610:18;;21018:58:0;2303:331:1;21018:58:0;4601:10;21120:1;21095:21;;;:7;:21;;;;;;:26;21087:51;;;;-1:-1:-1;;;21087:51:0;;2841:2:1;21087:51:0;;;2823:21:1;2880:2;2860:18;;;2853:30;-1:-1:-1;;;2899:18:1;;;2892:42;2951:18;;21087:51:0;2639:336:1;21087:51:0;20842:304::o;21154:122::-;21211:13;;:20;;21229:1;21211:17;:20::i;:::-;21195:13;:36;4601:10;21242:21;;;;:7;:21;;;;;:26;;21267:1;;21242:21;:26;;21267:1;;21242:26;:::i;:::-;;;;-1:-1:-1;;21154:122:0:o;7606:98::-;7664:7;7691:5;7695:1;7691;:5;:::i;196:286:1:-;255:6;308:2;296:9;287:7;283:23;279:32;276:52;;;324:1;321;314:12;276:52;350:23;;-1:-1:-1;;;;;402:31:1;;392:42;;382:70;;448:1;445;438:12;1503:127;1564:10;1559:3;1555:20;1552:1;1545:31;1595:4;1592:1;1585:15;1619:4;1616:1;1609:15;1635:125;1675:4;1703:1;1700;1697:8;1694:34;;;1708:18;;:::i;:::-;-1:-1:-1;1745:9:1;;1635:125::o;1765:184::-;1835:6;1888:2;1876:9;1867:7;1863:23;1859:32;1856:52;;;1904:1;1901;1894:12;1856:52;-1:-1:-1;1927:16:1;;1765:184;-1:-1:-1;1765:184:1:o;2980:128::-;3020:3;3051:1;3047:6;3044:1;3041:13;3038:39;;;3057:18;;:::i;:::-;-1:-1:-1;3093:9:1;;2980:128::o
Swarm Source
ipfs://dcb411371065bbbcf6f873b3b836324b4c4ac666291b6cead3134fdd8a305e97
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.