Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 238 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23272464 | 203 days ago | IN | 0 ETH | 0.00001442 | ||||
| Approve | 23226095 | 210 days ago | IN | 0 ETH | 0.00014194 | ||||
| Approve | 23199581 | 213 days ago | IN | 0 ETH | 0.00006583 | ||||
| Approve | 23199569 | 213 days ago | IN | 0 ETH | 0.00007226 | ||||
| Approve | 23199559 | 213 days ago | IN | 0 ETH | 0.00013 | ||||
| Approve | 23199547 | 213 days ago | IN | 0 ETH | 0.00012493 | ||||
| Approve | 23199536 | 213 days ago | IN | 0 ETH | 0.00013465 | ||||
| Approve | 23199532 | 213 days ago | IN | 0 ETH | 0.00011966 | ||||
| Approve | 23199521 | 213 days ago | IN | 0 ETH | 0.00012059 | ||||
| Approve | 23199503 | 213 days ago | IN | 0 ETH | 0.00007024 | ||||
| Approve | 23199500 | 213 days ago | IN | 0 ETH | 0.00008018 | ||||
| Approve | 23199497 | 213 days ago | IN | 0 ETH | 0.00007468 | ||||
| Approve | 23199482 | 213 days ago | IN | 0 ETH | 0.00008979 | ||||
| Approve | 23199479 | 213 days ago | IN | 0 ETH | 0.00008557 | ||||
| Approve | 23199471 | 213 days ago | IN | 0 ETH | 0.00008898 | ||||
| Approve | 23199464 | 213 days ago | IN | 0 ETH | 0.00009474 | ||||
| Approve | 23199461 | 213 days ago | IN | 0 ETH | 0.00009505 | ||||
| Transfer | 23199321 | 213 days ago | IN | 0 ETH | 0.00012562 | ||||
| Transfer | 23199233 | 213 days ago | IN | 0 ETH | 0.00012276 | ||||
| Transfer | 23199147 | 213 days ago | IN | 0 ETH | 0.00008377 | ||||
| Transfer | 23199142 | 213 days ago | IN | 0 ETH | 0.00008644 | ||||
| Transfer | 23199138 | 213 days ago | IN | 0 ETH | 0.00008999 | ||||
| Transfer | 23199138 | 213 days ago | IN | 0 ETH | 0.00008999 | ||||
| Transfer | 23199133 | 213 days ago | IN | 0 ETH | 0.0000944 | ||||
| Transfer | 23199133 | 213 days ago | IN | 0 ETH | 0.0000944 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SnorePetter
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-05-15
*/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
interface IERC20 {
/**
* @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 Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
/**
* @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;
}
}
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both values are immutable: they can only be set once during construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
contract SnorePetter is ERC20, Ownable {
// Constants
uint128 private constant INITIAL_SUPPLY = 8_000_000_000 * 10 ** 18;
// Transaction limit
uint128 public maxTxAmount;
/**
* @dev Sets up initial supply and limit.
* @param initialOwner The address receiving the initial supply and ownership.
*/
constructor(
address initialOwner
) ERC20("SnorePetter", "SNP") Ownable(initialOwner) {
maxTxAmount = uint128(INITIAL_SUPPLY / 100);
_mint(initialOwner, INITIAL_SUPPLY);
}
/**
* @notice Update maximum transaction limit.
* @param txAmt New max transaction amount.
*/
function updateLimits(uint128 txAmt) external onlyOwner {
require(txAmt > 0, "SNP: zero limit");
maxTxAmount = txAmt;
}
/**
* @dev OZ v5 hook: enforce transaction limit.
*/
function _update(
address from,
address to,
uint256 amount
) internal virtual override {
if (from == address(0)) {
// Directly proceed with transfer on initial mint
super._update(from, to, amount);
return;
}
// Cache owner for limit checks
address _owner = owner();
// Enforce limit if neither party is owner
if (from != _owner && to != _owner) {
require(amount <= maxTxAmount, "SNP: tx exceeds limit");
}
// Proceed with the transfer
super._update(from, to, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"txAmt","type":"uint128"}],"name":"updateLimits","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801562000010575f80fd5b5060405162000fba38038062000fba8339810160408190526200003391620003c8565b806040518060400160405280600b81526020016a29b737b932a832ba3a32b960a91b815250604051806040016040528060038152602001620534e560ec1b815250816003908162000085919062000496565b50600462000094828262000496565b5050506001600160a01b038116620000c657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000d1816200012a565b50620000eb60646b19d971e4fe8401e7400000006200055e565b600680546001600160801b0319166001600160801b039290921691909117905562000123816b19d971e4fe8401e7400000006200017b565b50620005b6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001a65760405163ec442f0560e01b81525f6004820152602401620000bd565b620001b35f8383620001b7565b5050565b6001600160a01b038316620001d857620001d383838362000299565b505050565b5f620001ec6005546001600160a01b031690565b9050806001600160a01b0316846001600160a01b031614158015620002235750806001600160a01b0316836001600160a01b031614155b1562000286576006546001600160801b0316821115620002865760405162461bcd60e51b815260206004820152601560248201527f534e503a2074782065786365656473206c696d697400000000000000000000006044820152606401620000bd565b6200029384848462000299565b50505050565b6001600160a01b038316620002c7578060025f828254620002bb919062000590565b90915550620003399050565b6001600160a01b0383165f90815260208190526040902054818110156200031b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000bd565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620003575760028054829003905562000375565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003bb91815260200190565b60405180910390a3505050565b5f60208284031215620003d9575f80fd5b81516001600160a01b0381168114620003f0575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200042057607f821691505b6020821081036200043f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001d3575f81815260208120601f850160051c810160208610156200046d5750805b601f850160051c820191505b818110156200048e5782815560010162000479565b505050505050565b81516001600160401b03811115620004b257620004b2620003f7565b620004ca81620004c384546200040b565b8462000445565b602080601f83116001811462000500575f8415620004e85750858301515b5f19600386901b1c1916600185901b1785556200048e565b5f85815260208120601f198616915b8281101562000530578886015182559484019460019091019084016200050f565b50858210156200054e57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6001600160801b03838116806200058457634e487b7160e01b5f52601260045260245ffd5b92169190910492915050565b80820180821115620005b057634e487b7160e01b5f52601160045260245ffd5b92915050565b6109f680620005c45f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a61161008857806395d89b411161006357806395d89b41146101e9578063a9059cbb146101f1578063dd62ed3e14610204578063f2fde38b1461023c575f80fd5b8063715018a61461019b5780638c0b5e22146101a35780638da5cb5b146101ce575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063366f9c7d1461015e57806370a0823114610173575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161024f565b6040516100fe919061082b565b60405180910390f35b61011a610115366004610891565b6102df565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046108b9565b6102f8565b604051601281526020016100fe565b61017161016c3660046108f2565b61031b565b005b61012e61018136600461091f565b6001600160a01b03165f9081526020819052604090205490565b61017161039d565b6006546101b6906001600160801b031681565b6040516001600160801b0390911681526020016100fe565b6005546040516001600160a01b0390911681526020016100fe565b6100f16103b0565b61011a6101ff366004610891565b6103bf565b61012e610212366004610938565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61017161024a36600461091f565b6103cc565b60606003805461025e90610969565b80601f016020809104026020016040519081016040528092919081815260200182805461028a90610969565b80156102d55780601f106102ac576101008083540402835291602001916102d5565b820191905f5260205f20905b8154815290600101906020018083116102b857829003601f168201915b5050505050905090565b5f336102ec818585610409565b60019150505b92915050565b5f3361030585828561041b565b610310858585610497565b506001949350505050565b6103236104f4565b5f816001600160801b0316116103725760405162461bcd60e51b815260206004820152600f60248201526e14d3940e881e995c9bc81b1a5b5a5d608a1b60448201526064015b60405180910390fd5b600680546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b6103a56104f4565b6103ae5f610521565b565b60606004805461025e90610969565b5f336102ec818585610497565b6103d46104f4565b6001600160a01b0381166103fd57604051631e4fbdf760e01b81525f6004820152602401610369565b61040681610521565b50565b6104168383836001610572565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610491578181101561048357604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610369565b61049184848484035f610572565b50505050565b6001600160a01b0383166104c057604051634b637e8f60e11b81525f6004820152602401610369565b6001600160a01b0382166104e95760405163ec442f0560e01b81525f6004820152602401610369565b610416838383610644565b6005546001600160a01b031633146103ae5760405163118cdaa760e01b8152336004820152602401610369565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03841661059b5760405163e602df0560e01b81525f6004820152602401610369565b6001600160a01b0383166105c457604051634a1406b160e11b81525f6004820152602401610369565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561049157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161063691815260200190565b60405180910390a350505050565b6001600160a01b03831661065d57610416838383610705565b5f6106706005546001600160a01b031690565b9050806001600160a01b0316846001600160a01b0316141580156106a65750806001600160a01b0316836001600160a01b031614155b156106fe576006546001600160801b03168211156106fe5760405162461bcd60e51b815260206004820152601560248201527414d3940e881d1e08195e18d959591cc81b1a5b5a5d605a1b6044820152606401610369565b6104918484845b6001600160a01b03831661072f578060025f82825461072491906109a1565b9091555061079f9050565b6001600160a01b0383165f90815260208190526040902054818110156107815760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610369565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166107bb576002805482900390556107d9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161081e91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b818110156108565785810183015185820160400152820161083a565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461088c575f80fd5b919050565b5f80604083850312156108a2575f80fd5b6108ab83610876565b946020939093013593505050565b5f805f606084860312156108cb575f80fd5b6108d484610876565b92506108e260208501610876565b9150604084013590509250925092565b5f60208284031215610902575f80fd5b81356001600160801b0381168114610918575f80fd5b9392505050565b5f6020828403121561092f575f80fd5b61091882610876565b5f8060408385031215610949575f80fd5b61095283610876565b915061096060208401610876565b90509250929050565b600181811c9082168061097d57607f821691505b60208210810361099b57634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102f257634e487b7160e01b5f52601160045260245ffdfea26469706673582212209ac958ac0172da26b992fd6c559184fbea2a2c4470174b9768b88444c256fa3e64736f6c63430008140033000000000000000000000000e5e85ae737abd61c21e4f702c93ab9e5cb529183
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a61161008857806395d89b411161006357806395d89b41146101e9578063a9059cbb146101f1578063dd62ed3e14610204578063f2fde38b1461023c575f80fd5b8063715018a61461019b5780638c0b5e22146101a35780638da5cb5b146101ce575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063366f9c7d1461015e57806370a0823114610173575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161024f565b6040516100fe919061082b565b60405180910390f35b61011a610115366004610891565b6102df565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046108b9565b6102f8565b604051601281526020016100fe565b61017161016c3660046108f2565b61031b565b005b61012e61018136600461091f565b6001600160a01b03165f9081526020819052604090205490565b61017161039d565b6006546101b6906001600160801b031681565b6040516001600160801b0390911681526020016100fe565b6005546040516001600160a01b0390911681526020016100fe565b6100f16103b0565b61011a6101ff366004610891565b6103bf565b61012e610212366004610938565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61017161024a36600461091f565b6103cc565b60606003805461025e90610969565b80601f016020809104026020016040519081016040528092919081815260200182805461028a90610969565b80156102d55780601f106102ac576101008083540402835291602001916102d5565b820191905f5260205f20905b8154815290600101906020018083116102b857829003601f168201915b5050505050905090565b5f336102ec818585610409565b60019150505b92915050565b5f3361030585828561041b565b610310858585610497565b506001949350505050565b6103236104f4565b5f816001600160801b0316116103725760405162461bcd60e51b815260206004820152600f60248201526e14d3940e881e995c9bc81b1a5b5a5d608a1b60448201526064015b60405180910390fd5b600680546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b6103a56104f4565b6103ae5f610521565b565b60606004805461025e90610969565b5f336102ec818585610497565b6103d46104f4565b6001600160a01b0381166103fd57604051631e4fbdf760e01b81525f6004820152602401610369565b61040681610521565b50565b6104168383836001610572565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610491578181101561048357604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610369565b61049184848484035f610572565b50505050565b6001600160a01b0383166104c057604051634b637e8f60e11b81525f6004820152602401610369565b6001600160a01b0382166104e95760405163ec442f0560e01b81525f6004820152602401610369565b610416838383610644565b6005546001600160a01b031633146103ae5760405163118cdaa760e01b8152336004820152602401610369565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03841661059b5760405163e602df0560e01b81525f6004820152602401610369565b6001600160a01b0383166105c457604051634a1406b160e11b81525f6004820152602401610369565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561049157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161063691815260200190565b60405180910390a350505050565b6001600160a01b03831661065d57610416838383610705565b5f6106706005546001600160a01b031690565b9050806001600160a01b0316846001600160a01b0316141580156106a65750806001600160a01b0316836001600160a01b031614155b156106fe576006546001600160801b03168211156106fe5760405162461bcd60e51b815260206004820152601560248201527414d3940e881d1e08195e18d959591cc81b1a5b5a5d605a1b6044820152606401610369565b6104918484845b6001600160a01b03831661072f578060025f82825461072491906109a1565b9091555061079f9050565b6001600160a01b0383165f90815260208190526040902054818110156107815760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610369565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166107bb576002805482900390556107d9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161081e91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b818110156108565785810183015185820160400152820161083a565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461088c575f80fd5b919050565b5f80604083850312156108a2575f80fd5b6108ab83610876565b946020939093013593505050565b5f805f606084860312156108cb575f80fd5b6108d484610876565b92506108e260208501610876565b9150604084013590509250925092565b5f60208284031215610902575f80fd5b81356001600160801b0381168114610918575f80fd5b9392505050565b5f6020828403121561092f575f80fd5b61091882610876565b5f8060408385031215610949575f80fd5b61095283610876565b915061096060208401610876565b90509250929050565b600181811c9082168061097d57607f821691505b60208210810361099b57634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102f257634e487b7160e01b5f52601160045260245ffdfea26469706673582212209ac958ac0172da26b992fd6c559184fbea2a2c4470174b9768b88444c256fa3e64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e5e85ae737abd61c21e4f702c93ab9e5cb529183
-----Decoded View---------------
Arg [0] : initialOwner (address): 0xe5e85Ae737abd61C21e4F702C93Ab9E5CB529183
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e5e85ae737abd61c21e4f702c93ab9e5cb529183
Deployed Bytecode Sourcemap
20332:1550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7861:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10154:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10154:190:0;1004:187:1;8963:99:0;9042:12;;8963:99;;;1342:25:1;;;1330:2;1315:18;8963:99:0;1196:177:1;10954:249:0;;;;;;:::i;:::-;;:::i;8814:84::-;;;8888:2;1853:36:1;;1841:2;1826:18;8814:84:0;1711:184:1;21014:142:0;;;;;;:::i;:::-;;:::i;:::-;;9125:118;;;;;;:::i;:::-;-1:-1:-1;;;;;9217:18:0;9190:7;9217:18;;;;;;;;;;;;9125:118;19496:103;;;:::i;20497:26::-;;;;;-1:-1:-1;;;;;20497:26:0;;;;;;-1:-1:-1;;;;;2561:47:1;;;2543:66;;2531:2;2516:18;20497:26:0;2397:218:1;18821:87:0;18894:6;;18821:87;;-1:-1:-1;;;;;18894:6:0;;;2766:51:1;;2754:2;2739:18;18821:87:0;2620:203:1;8071:95:0;;;:::i;9448:182::-;;;;;;:::i;:::-;;:::i;9693:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9800:18:0;;;9773:7;9800:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9693:142;19754:220;;;;;;:::i;:::-;;:::i;7861:91::-;7906:13;7939:5;7932:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7861:91;:::o;10154:190::-;10227:4;4162:10;10283:31;4162:10;10299:7;10308:5;10283:8;:31::i;:::-;10332:4;10325:11;;;10154:190;;;;;:::o;10954:249::-;11041:4;4162:10;11099:37;11115:4;4162:10;11130:5;11099:15;:37::i;:::-;11147:26;11157:4;11163:2;11167:5;11147:9;:26::i;:::-;-1:-1:-1;11191:4:0;;10954:249;-1:-1:-1;;;;10954:249:0:o;21014:142::-;18707:13;:11;:13::i;:::-;21097:1:::1;21089:5;-1:-1:-1::0;;;;;21089:9:0::1;;21081:37;;;::::0;-1:-1:-1;;;21081:37:0;;3680:2:1;21081:37:0::1;::::0;::::1;3662:21:1::0;3719:2;3699:18;;;3692:30;-1:-1:-1;;;3738:18:1;;;3731:45;3793:18;;21081:37:0::1;;;;;;;;;21129:11;:19:::0;;-1:-1:-1;;21129:19:0::1;-1:-1:-1::0;;;;;21129:19:0;;;::::1;::::0;;;::::1;::::0;;21014:142::o;19496:103::-;18707:13;:11;:13::i;:::-;19561:30:::1;19588:1;19561:18;:30::i;:::-;19496:103::o:0;8071:95::-;8118:13;8151:7;8144:14;;;;;:::i;9448:182::-;9517:4;4162:10;9573:27;4162:10;9590:2;9594:5;9573:9;:27::i;19754:220::-;18707:13;:11;:13::i;:::-;-1:-1:-1;;;;;19839:22:0;::::1;19835:93;;19885:31;::::0;-1:-1:-1;;;19885:31:0;;19913:1:::1;19885:31;::::0;::::1;2766:51:1::0;2739:18;;19885:31:0::1;2620:203:1::0;19835:93:0::1;19938:28;19957:8;19938:18;:28::i;:::-;19754:220:::0;:::o;15013:130::-;15098:37;15107:5;15114:7;15123:5;15130:4;15098:8;:37::i;:::-;15013:130;;;:::o;16745:486::-;-1:-1:-1;;;;;9800:18:0;;;16845:24;9800:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;16912:36:0;;16908:316;;;16988:5;16969:16;:24;16965:132;;;17021:60;;-1:-1:-1;;;17021:60:0;;-1:-1:-1;;;;;4042:32:1;;17021:60:0;;;4024:51:1;4091:18;;;4084:34;;;4134:18;;;4127:34;;;3997:18;;17021:60:0;3822:345:1;16965:132:0;17140:57;17149:5;17156:7;17184:5;17165:16;:24;17191:5;17140:8;:57::i;:::-;16834:397;16745:486;;;:::o;11588:308::-;-1:-1:-1;;;;;11672:18:0;;11668:88;;11714:30;;-1:-1:-1;;;11714:30:0;;11741:1;11714:30;;;2766:51:1;2739:18;;11714:30:0;2620:203:1;11668:88:0;-1:-1:-1;;;;;11770:16:0;;11766:88;;11810:32;;-1:-1:-1;;;11810:32:0;;11839:1;11810:32;;;2766:51:1;2739:18;;11810:32:0;2620:203:1;11766:88:0;11864:24;11872:4;11878:2;11882:5;11864:7;:24::i;18986:166::-;18894:6;;-1:-1:-1;;;;;18894:6:0;4162:10;19046:23;19042:103;;19093:40;;-1:-1:-1;;;19093:40:0;;4162:10;19093:40;;;2766:51:1;2739:18;;19093:40:0;2620:203:1;20134:191:0;20227:6;;;-1:-1:-1;;;;;20244:17:0;;;-1:-1:-1;;;;;;20244:17:0;;;;;;;20277:40;;20227:6;;;20244:17;20227:6;;20277:40;;20208:16;;20277:40;20197:128;20134:191;:::o;16010:443::-;-1:-1:-1;;;;;16123:19:0;;16119:91;;16166:32;;-1:-1:-1;;;16166:32:0;;16195:1;16166:32;;;2766:51:1;2739:18;;16166:32:0;2620:203:1;16119:91:0;-1:-1:-1;;;;;16224:21:0;;16220:92;;16269:31;;-1:-1:-1;;;16269:31:0;;16297:1;16269:31;;;2766:51:1;2739:18;;16269:31:0;2620:203:1;16220:92:0;-1:-1:-1;;;;;16322:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;16368:78;;;;16419:7;-1:-1:-1;;;;;16403:31:0;16412:5;-1:-1:-1;;;;;16403:31:0;;16428:5;16403:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;16403:31:0;;;;;;;;16010:443;;;;:::o;21234:645::-;-1:-1:-1;;;;;21368:18:0;;21364:166;;21466:31;21480:4;21486:2;21490:6;21466:13;:31::i;21364:166::-;21583:14;21600:7;18894:6;;-1:-1:-1;;;;;18894:6:0;;18821:87;21600:7;21583:24;;21684:6;-1:-1:-1;;;;;21676:14:0;:4;-1:-1:-1;;;;;21676:14:0;;;:30;;;;;21700:6;-1:-1:-1;;;;;21694:12:0;:2;-1:-1:-1;;;;;21694:12:0;;;21676:30;21672:118;;;21741:11;;-1:-1:-1;;;;;21741:11:0;21731:21;;;21723:55;;;;-1:-1:-1;;;21723:55:0;;4374:2:1;21723:55:0;;;4356:21:1;4413:2;4393:18;;;4386:30;-1:-1:-1;;;4432:18:1;;;4425:51;4493:18;;21723:55:0;4172:345:1;21723:55:0;21840:31;21854:4;21860:2;21864:6;12220:1135;-1:-1:-1;;;;;12310:18:0;;12306:552;;12464:5;12448:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;12306:552:0;;-1:-1:-1;12306:552:0;;-1:-1:-1;;;;;12524:15:0;;12502:19;12524:15;;;;;;;;;;;12558:19;;;12554:117;;;12605:50;;-1:-1:-1;;;12605:50:0;;-1:-1:-1;;;;;4042:32:1;;12605:50:0;;;4024:51:1;4091:18;;;4084:34;;;4134:18;;;4127:34;;;3997:18;;12605:50:0;3822:345:1;12554:117:0;-1:-1:-1;;;;;12794:15:0;;:9;:15;;;;;;;;;;12812:19;;;;12794:37;;12306:552;-1:-1:-1;;;;;12874:16:0;;12870:435;;13040:12;:21;;;;;;;12870:435;;;-1:-1:-1;;;;;13256:13:0;;:9;:13;;;;;;;;;;:22;;;;;;12870:435;13337:2;-1:-1:-1;;;;;13322:25:0;13331:4;-1:-1:-1;;;;;13322:25:0;;13341:5;13322:25;;;;1342::1;;1330:2;1315:18;;1196:177;13322:25:0;;;;;;;;12220:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:301::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2067:9;2054:23;-1:-1:-1;;;;;2110:5:1;2106:46;2099:5;2096:57;2086:85;;2167:1;2164;2157:12;2086:85;2190:5;1900:301;-1:-1:-1;;;1900:301:1:o;2206:186::-;2265:6;2318:2;2306:9;2297:7;2293:23;2289:32;2286:52;;;2334:1;2331;2324:12;2286:52;2357:29;2376:9;2357:29;:::i;2828:260::-;2896:6;2904;2957:2;2945:9;2936:7;2932:23;2928:32;2925:52;;;2973:1;2970;2963:12;2925:52;2996:29;3015:9;2996:29;:::i;:::-;2986:39;;3044:38;3078:2;3067:9;3063:18;3044:38;:::i;:::-;3034:48;;2828:260;;;;;:::o;3093:380::-;3172:1;3168:12;;;;3215;;;3236:61;;3290:4;3282:6;3278:17;3268:27;;3236:61;3343:2;3335:6;3332:14;3312:18;3309:38;3306:161;;3389:10;3384:3;3380:20;3377:1;3370:31;3424:4;3421:1;3414:15;3452:4;3449:1;3442:15;3306:161;;3093:380;;;:::o;4522:222::-;4587:9;;;4608:10;;;4605:133;;;4660:10;4655:3;4651:20;4648:1;4641:31;4695:4;4692:1;4685:15;4723:4;4720:1;4713:15
Swarm Source
ipfs://9ac958ac0172da26b992fd6c559184fbea2a2c4470174b9768b88444c256fa3e
Loading...
Loading
Loading...
Loading
OVERVIEW
SnorePetter draws inspiration from a humorous story of a man whose snoring quietly ignited a memecoin movement. Created by a council of pets, it blends humor, community, and storytelling to represent a new wave of meme culture on the blockchain.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.