Source Code
Overview
MON Balance
MON Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 25 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 50825007 | 5 hrs ago | IN | 0 MON | 0.00812154 | ||||
| Transfer | 50785009 | 10 hrs ago | IN | 0 MON | 0.00478231 | ||||
| Approve | 50781297 | 10 hrs ago | IN | 0 MON | 0.02226801 | ||||
| Approve | 50780111 | 10 hrs ago | IN | 0 MON | 0.00540873 | ||||
| Approve | 50774492 | 11 hrs ago | IN | 0 MON | 0.00812338 | ||||
| Transfer | 50771071 | 12 hrs ago | IN | 0 MON | 0.00986551 | ||||
| Transfer | 50770626 | 12 hrs ago | IN | 0 MON | 0.021525 | ||||
| Approve | 50753348 | 13 hrs ago | IN | 0 MON | 0.00625231 | ||||
| Approve | 50720535 | 17 hrs ago | IN | 0 MON | 0.00815469 | ||||
| Approve | 50689863 | 21 hrs ago | IN | 0 MON | 0.00541967 | ||||
| Approve | 50685059 | 21 hrs ago | IN | 0 MON | 0.00816387 | ||||
| Approve | 50599084 | 31 hrs ago | IN | 0 MON | 0.00501989 | ||||
| Approve | 50599048 | 31 hrs ago | IN | 0 MON | 0.00819931 | ||||
| Approve | 50546027 | 37 hrs ago | IN | 0 MON | 0.00812338 | ||||
| Approve | 50464413 | 46 hrs ago | IN | 0 MON | 0.00544139 | ||||
| Approve | 50447578 | 47 hrs ago | IN | 0 MON | 0.00543207 | ||||
| Approve | 50405330 | 2 days ago | IN | 0 MON | 0.0065282 | ||||
| Transfer | 50391566 | 2 days ago | IN | 0 MON | 0.00478108 | ||||
| Transfer | 50391179 | 2 days ago | IN | 0 MON | 0.00657033 | ||||
| Transfer | 50390659 | 2 days ago | IN | 0 MON | 0.00658344 | ||||
| Transfer | 50387996 | 2 days ago | IN | 0 MON | 0.00657156 | ||||
| Approve | 49952792 | 4 days ago | IN | 0 MON | 0.0480012 | ||||
| Approve | 49943167 | 4 days ago | IN | 0 MON | 0.0060413 | ||||
| Approve | 49943083 | 4 days ago | IN | 0 MON | 0.00647342 | ||||
| Transfer | 49937896 | 4 days ago | IN | 0 MON | 0.00657033 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Quantus
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/**
*Submitted for verification at monadscan.com on 2026-01-20
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;
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 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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from,
address to,
uint256 amount
) external returns (bool);
}
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);
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these 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 override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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 value {ERC20} uses, unless this function is
* 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 override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override 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 `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` 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 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* 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 `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `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.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` 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.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens 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 amount
) 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, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
contract Quantus is ERC20 {
constructor(address account) ERC20("Quantus","QTS") {
_mint(account, 1_000_000_000e18);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"account","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"amount","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561000f575f80fd5b50604051610b84380380610b8483398101604081905261002e91610190565b604051806040016040528060078152602001665175616e74757360c81b8152506040518060400160405280600381526020016251545360e81b81525081600390816100799190610254565b5060046100868282610254565b5050506100a5816b033b2e3c9fd0803ce80000006100ab60201b60201c565b50610333565b6001600160a01b0382166101055760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254610116919061030e565b90915550506001600160a01b0382165f908152602081905260408120805483929061014290849061030e565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b5f602082840312156101a0575f80fd5b81516001600160a01b03811681146101b6575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806101e557607f821691505b60208210810361020357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561018b57805f5260205f20601f840160051c8101602085101561022e5750805b601f840160051c820191505b8181101561024d575f815560010161023a565b5050505050565b81516001600160401b0381111561026d5761026d6101bd565b6102818161027b84546101d1565b84610209565b6020601f8211600181146102b3575f831561029c5750848201515b5f19600385901b1c1916600184901b17845561024d565b5f84815260208120601f198516915b828110156102e257878501518255602094850194600190920191016102c2565b50848210156102ff57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561032d57634e487b7160e01b5f52601160045260245ffd5b92915050565b610844806103405f395ff3fe608060405234801561000f575f80fd5b50600436106100a6575f3560e01c8063395093511161006e578063395093511461011f57806370a082311461013257806395d89b411461015a578063a457c2d714610162578063a9059cbb14610175578063dd62ed3e14610188575f80fd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f80fd5b6100b261019b565b6040516100bf91906106b4565b60405180910390f35b6100db6100d6366004610704565b61022b565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b36600461072c565b610244565b604051601281526020016100bf565b6100db61012d366004610704565b610267565b6100ef610140366004610766565b6001600160a01b03165f9081526020819052604090205490565b6100b2610288565b6100db610170366004610704565b610297565b6100db610183366004610704565b610316565b6100ef610196366004610786565b610323565b6060600380546101aa906107b7565b80601f01602080910402602001604051908101604052809291908181526020018280546101d6906107b7565b80156102215780601f106101f857610100808354040283529160200191610221565b820191905f5260205f20905b81548152906001019060200180831161020457829003601f168201915b5050505050905090565b5f3361023881858561034d565b60019150505b92915050565b5f33610251858285610470565b61025c8585856104e8565b506001949350505050565b5f336102388185856102798383610323565b61028391906107ef565b61034d565b6060600480546101aa906107b7565b5f33816102a48286610323565b9050838110156103095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61025c828686840361034d565b5f336102388185856104e8565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103af5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610300565b6001600160a01b0382166104105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610300565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61047b8484610323565b90505f1981146104e257818110156104d55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610300565b6104e2848484840361034d565b50505050565b6001600160a01b03831661054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610300565b6001600160a01b0382166105ae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610300565b6001600160a01b0383165f90815260208190526040902054818110156106255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610300565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061065b9084906107ef565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106a791815260200190565b60405180910390a36104e2565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146106ff575f80fd5b919050565b5f8060408385031215610715575f80fd5b61071e836106e9565b946020939093013593505050565b5f805f6060848603121561073e575f80fd5b610747846106e9565b9250610755602085016106e9565b929592945050506040919091013590565b5f60208284031215610776575f80fd5b61077f826106e9565b9392505050565b5f8060408385031215610797575f80fd5b6107a0836106e9565b91506107ae602084016106e9565b90509250929050565b600181811c908216806107cb57607f821691505b6020821081036107e957634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561023e57634e487b7160e01b5f52601160045260245ffdfea26469706673582212205b16c9affabbabf01d6c070330066b9a9c33faf05fb313b6518bf2ebb75f5e6064736f6c634300081a0033000000000000000000000000f8777d9056855e24c8b4c605c3cc9215574b049c
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100a6575f3560e01c8063395093511161006e578063395093511461011f57806370a082311461013257806395d89b411461015a578063a457c2d714610162578063a9059cbb14610175578063dd62ed3e14610188575f80fd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f80fd5b6100b261019b565b6040516100bf91906106b4565b60405180910390f35b6100db6100d6366004610704565b61022b565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b36600461072c565b610244565b604051601281526020016100bf565b6100db61012d366004610704565b610267565b6100ef610140366004610766565b6001600160a01b03165f9081526020819052604090205490565b6100b2610288565b6100db610170366004610704565b610297565b6100db610183366004610704565b610316565b6100ef610196366004610786565b610323565b6060600380546101aa906107b7565b80601f01602080910402602001604051908101604052809291908181526020018280546101d6906107b7565b80156102215780601f106101f857610100808354040283529160200191610221565b820191905f5260205f20905b81548152906001019060200180831161020457829003601f168201915b5050505050905090565b5f3361023881858561034d565b60019150505b92915050565b5f33610251858285610470565b61025c8585856104e8565b506001949350505050565b5f336102388185856102798383610323565b61028391906107ef565b61034d565b6060600480546101aa906107b7565b5f33816102a48286610323565b9050838110156103095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61025c828686840361034d565b5f336102388185856104e8565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103af5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610300565b6001600160a01b0382166104105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610300565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61047b8484610323565b90505f1981146104e257818110156104d55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610300565b6104e2848484840361034d565b50505050565b6001600160a01b03831661054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610300565b6001600160a01b0382166105ae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610300565b6001600160a01b0383165f90815260208190526040902054818110156106255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610300565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061065b9084906107ef565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106a791815260200190565b60405180910390a36104e2565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146106ff575f80fd5b919050565b5f8060408385031215610715575f80fd5b61071e836106e9565b946020939093013593505050565b5f805f6060848603121561073e575f80fd5b610747846106e9565b9250610755602085016106e9565b929592945050506040919091013590565b5f60208284031215610776575f80fd5b61077f826106e9565b9392505050565b5f8060408385031215610797575f80fd5b6107a0836106e9565b91506107ae602084016106e9565b90509250929050565b600181811c908216806107cb57607f821691505b6020821081036107e957634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561023e57634e487b7160e01b5f52601160045260245ffdfea26469706673582212205b16c9affabbabf01d6c070330066b9a9c33faf05fb313b6518bf2ebb75f5e6064736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f8777d9056855e24c8b4c605c3cc9215574b049c
-----Decoded View---------------
Arg [0] : account (address): 0xf8777D9056855E24C8b4C605C3CC9215574b049C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8777d9056855e24c8b4c605c3cc9215574b049c
Deployed Bytecode Sourcemap
14930:139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4146:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6497:201;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;6497:201:0;920:187:1;5266:108:0;5354:12;;5266:108;;;1258:25:1;;;1246:2;1231:18;5266:108:0;1112:177:1;7278:295:0;;;;;;:::i;:::-;;:::i;5108:93::-;;;5191:2;1815:36:1;;1803:2;1788:18;5108:93:0;1673:184:1;7982:238:0;;;;;;:::i;:::-;;:::i;5437:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;5538:18:0;5511:7;5538:18;;;;;;;;;;;;5437:127;4365:104;;;:::i;8723:436::-;;;;;;:::i;:::-;;:::i;5770:193::-;;;;;;:::i;:::-;;:::i;6026:151::-;;;;;;:::i;:::-;;:::i;4146:100::-;4200:13;4233:5;4226:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4146:100;:::o;6497:201::-;6580:4;3234:10;6636:32;3234:10;6652:7;6661:6;6636:8;:32::i;:::-;6686:4;6679:11;;;6497:201;;;;;:::o;7278:295::-;7409:4;3234:10;7467:38;7483:4;3234:10;7498:6;7467:15;:38::i;:::-;7516:27;7526:4;7532:2;7536:6;7516:9;:27::i;:::-;-1:-1:-1;7561:4:0;;7278:295;-1:-1:-1;;;;7278:295:0:o;7982:238::-;8070:4;3234:10;8126:64;3234:10;8142:7;8179:10;8151:25;3234:10;8142:7;8151:9;:25::i;:::-;:38;;;;:::i;:::-;8126:8;:64::i;4365:104::-;4421:13;4454:7;4447:14;;;;;:::i;8723:436::-;8816:4;3234:10;8816:4;8899:25;3234:10;8916:7;8899:9;:25::i;:::-;8872:52;;8963:15;8943:16;:35;;8935:85;;;;-1:-1:-1;;;8935:85:0;;3132:2:1;8935:85:0;;;3114:21:1;3171:2;3151:18;;;3144:30;3210:34;3190:18;;;3183:62;-1:-1:-1;;;3261:18:1;;;3254:35;3306:19;;8935:85:0;;;;;;;;;9056:60;9065:5;9072:7;9100:15;9081:16;:34;9056:8;:60::i;5770:193::-;5849:4;3234:10;5905:28;3234:10;5922:2;5926:6;5905:9;:28::i;6026:151::-;-1:-1:-1;;;;;6142:18:0;;;6115:7;6142:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6026:151::o;12348:380::-;-1:-1:-1;;;;;12484:19:0;;12476:68;;;;-1:-1:-1;;;12476:68:0;;3538:2:1;12476:68:0;;;3520:21:1;3577:2;3557:18;;;3550:30;3616:34;3596:18;;;3589:62;-1:-1:-1;;;3667:18:1;;;3660:34;3711:19;;12476:68:0;3336:400:1;12476:68:0;-1:-1:-1;;;;;12563:21:0;;12555:68;;;;-1:-1:-1;;;12555:68:0;;3943:2:1;12555:68:0;;;3925:21:1;3982:2;3962:18;;;3955:30;4021:34;4001:18;;;3994:62;-1:-1:-1;;;4072:18:1;;;4065:32;4114:19;;12555:68:0;3741:398:1;12555:68:0;-1:-1:-1;;;;;12636:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12688:32;;1258:25:1;;;12688:32:0;;1231:18:1;12688:32:0;;;;;;;12348:380;;;:::o;13019:453::-;13154:24;13181:25;13191:5;13198:7;13181:9;:25::i;:::-;13154:52;;-1:-1:-1;;13221:16:0;:37;13217:248;;13303:6;13283:16;:26;;13275:68;;;;-1:-1:-1;;;13275:68:0;;4346:2:1;13275:68:0;;;4328:21:1;4385:2;4365:18;;;4358:30;4424:31;4404:18;;;4397:59;4473:18;;13275:68:0;4144:353:1;13275:68:0;13387:51;13396:5;13403:7;13431:6;13412:16;:25;13387:8;:51::i;:::-;13143:329;13019:453;;;:::o;9629:671::-;-1:-1:-1;;;;;9760:18:0;;9752:68;;;;-1:-1:-1;;;9752:68:0;;4704:2:1;9752:68:0;;;4686:21:1;4743:2;4723:18;;;4716:30;4782:34;4762:18;;;4755:62;-1:-1:-1;;;4833:18:1;;;4826:35;4878:19;;9752:68:0;4502:401:1;9752:68:0;-1:-1:-1;;;;;9839:16:0;;9831:64;;;;-1:-1:-1;;;9831:64:0;;5110:2:1;9831:64:0;;;5092:21:1;5149:2;5129:18;;;5122:30;5188:34;5168:18;;;5161:62;-1:-1:-1;;;5239:18:1;;;5232:33;5282:19;;9831:64:0;4908:399:1;9831:64:0;-1:-1:-1;;;;;9981:15:0;;9959:19;9981:15;;;;;;;;;;;10015:21;;;;10007:72;;;;-1:-1:-1;;;10007:72:0;;5514:2:1;10007:72:0;;;5496:21:1;5553:2;5533:18;;;5526:30;5592:34;5572:18;;;5565:62;-1:-1:-1;;;5643:18:1;;;5636:36;5689:19;;10007:72:0;5312:402:1;10007:72:0;-1:-1:-1;;;;;10115:15:0;;;:9;:15;;;;;;;;;;;10133:20;;;10115:38;;10175:13;;;;;;;;:23;;10147:6;;10115:9;10175:23;;10147:6;;10175:23;:::i;:::-;;;;;;;;10231:2;-1:-1:-1;;;;;10216:26:0;10225:4;-1:-1:-1;;;;;10216:26:0;;10235:6;10216:26;;;;1258:25:1;;1246:2;1231:18;;1112:177;10216:26:0;;;;;;;;10255:37;14072:125;14:418:1;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;:::-;2003:39;1862:186;-1:-1:-1;;;1862:186:1:o;2053:260::-;2121:6;2129;2182:2;2170:9;2161:7;2157:23;2153:32;2150:52;;;2198:1;2195;2188:12;2150:52;2221:29;2240:9;2221:29;:::i;:::-;2211:39;;2269:38;2303:2;2292:9;2288:18;2269:38;:::i;:::-;2259:48;;2053:260;;;;;:::o;2318:380::-;2397:1;2393:12;;;;2440;;;2461:61;;2515:4;2507:6;2503:17;2493:27;;2461:61;2568:2;2560:6;2557:14;2537:18;2534:38;2531:161;;2614:10;2609:3;2605:20;2602:1;2595:31;2649:4;2646:1;2639:15;2677:4;2674:1;2667:15;2531:161;;2318:380;;;:::o;2703:222::-;2768:9;;;2789:10;;;2786:133;;;2841:10;2836:3;2832:20;2829:1;2822:31;2876:4;2873:1;2866:15;2904:4;2901:1;2894:15
Swarm Source
ipfs://5b16c9affabbabf01d6c070330066b9a9c33faf05fb313b6518bf2ebb75f5e60
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in MON
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.