Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 3,196 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Mint | 24210871 | 34 days ago | IN | 0 ETH | 0.00000161 | ||||
| Mint | 24210807 | 34 days ago | IN | 0 ETH | 0.0000016 | ||||
| Mint | 24210741 | 34 days ago | IN | 0 ETH | 0.00000156 | ||||
| Mint | 24210685 | 34 days ago | IN | 0 ETH | 0.00000157 | ||||
| Mint | 24210628 | 34 days ago | IN | 0 ETH | 0.00000156 | ||||
| Mint | 24210573 | 34 days ago | IN | 0 ETH | 0.00000156 | ||||
| Mint | 24210520 | 34 days ago | IN | 0 ETH | 0.00000157 | ||||
| Mint | 24210469 | 34 days ago | IN | 0 ETH | 0.00000161 | ||||
| Mint | 24210417 | 34 days ago | IN | 0 ETH | 0.00000156 | ||||
| Mint | 24210365 | 34 days ago | IN | 0 ETH | 0.00000165 | ||||
| Mint | 24210307 | 34 days ago | IN | 0 ETH | 0.00000158 | ||||
| Mint | 24210255 | 34 days ago | IN | 0 ETH | 0.0000016 | ||||
| Mint | 24210188 | 34 days ago | IN | 0 ETH | 0.00000151 | ||||
| Mint | 24210137 | 34 days ago | IN | 0 ETH | 0.0000015 | ||||
| Mint | 24210085 | 34 days ago | IN | 0 ETH | 0.00000161 | ||||
| Mint | 24210034 | 34 days ago | IN | 0 ETH | 0.00000153 | ||||
| Mint | 24209975 | 34 days ago | IN | 0 ETH | 0.0000016 | ||||
| Mint | 24209923 | 34 days ago | IN | 0 ETH | 0.00000187 | ||||
| Mint | 24209872 | 34 days ago | IN | 0 ETH | 0.0000017 | ||||
| Mint | 24209820 | 34 days ago | IN | 0 ETH | 0.00000175 | ||||
| Mint | 24209753 | 34 days ago | IN | 0 ETH | 0.0000017 | ||||
| Mint | 24209685 | 34 days ago | IN | 0 ETH | 0.00000156 | ||||
| Mint | 24209628 | 35 days ago | IN | 0 ETH | 0.00000161 | ||||
| Mint | 24209572 | 35 days ago | IN | 0 ETH | 0.0000016 | ||||
| Mint | 24209521 | 35 days ago | IN | 0 ETH | 0.00000151 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WildBitcoinToken
Compiler Version
v0.8.30+commit.73712a01
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "erc20.sol";
contract WildBitcoinToken is ERC20 {
uint256 public constant MAX_SUPPLY = 21000000 * 10**18; // 21 million tokens
uint256 public constant HALVING_INTERVAL = 210000; // Approximately 4 years (210,000 blocks)
// After 21,000 mints for any new mint it is required to hold at least 1 token
// this is intended as a way to make it harder for validators to do front running
uint256 public constant RESTRICTION_MINT_THRESHOLD = 21000;
uint256 public constant MINT_INTERVAL = 10 minutes;
uint256 public lastMintTime;
uint256 public currentReward = 50 * 10**18; // Initial reward: 50 tokens
uint256 public halvingCount = 0;
uint256 public totalMints = 0;
event Mint(address indexed minter, uint256 amount, uint256 totalMinted);
event Halving(uint256 newReward, uint256 halvingCount);
constructor() ERC20("Wild BTC", "WildBTC") {
lastMintTime = block.timestamp;
}
function mint() external {
require(totalSupply() < MAX_SUPPLY, "Max supply reached");
require(block.timestamp >= lastMintTime + MINT_INTERVAL, "Not enough time passed");
// Check minting restrictions
if (totalMints >= RESTRICTION_MINT_THRESHOLD) {
require(balanceOf(msg.sender) >= 1 * 10**18, "Must hold at least 1 token to mint");
}
if (halvingCount > 0) {
require(balanceOf(msg.sender) >= halvingCount * 2 * 10**18, "Must hold tokens equal to twice the halving count");
}
// Update last mint time
lastMintTime = block.timestamp;
totalMints++;
// Check for halving event (every 210,000 mints, every ~4 years)
if (totalMints % HALVING_INTERVAL == 0) {
currentReward = currentReward / 2;
halvingCount++;
emit Halving(currentReward, halvingCount);
}
// This is intended to make it possible to reach the max 21 million supply after ~45 halving events, that means ~180 years
// and this check will pass only after 21 halving events, that means ~90 years
if (halvingCount > 21) {
currentReward = 21_000_000_000_000;
}
// Adjust reward if it would exceed max supply
uint256 actualReward = currentReward;
if (totalSupply() + actualReward > MAX_SUPPLY) {
actualReward = MAX_SUPPLY - totalSupply();
}
_mint(msg.sender, actualReward);
emit Mint(msg.sender, actualReward, totalSupply());
}
function timeUntilNextMint() external view returns (uint256) {
if (totalSupply() >= MAX_SUPPLY) {
return type(uint256).max; // Indicates that minting is finished forever
}
uint256 nextMintTime = lastMintTime + MINT_INTERVAL;
if (block.timestamp >= nextMintTime) {
return 0; // Mint is available now
} else {
return nextMintTime - block.timestamp;
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @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);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @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.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./ierc20.sol";
import {IERC20Metadata} from "./iec20_metadata.sol";
import {Context} from "./context.sol";
import {IERC20Errors} from "./draft.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;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
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;
}
/// @inheritdoc IERC20
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);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity >=0.6.2;
import {IERC20} from "./ierc20.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);
}
// 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);
}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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"},{"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":false,"internalType":"uint256","name":"newReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"halvingCount","type":"uint256"}],"name":"Halving","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Mint","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":[],"name":"HALVING_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESTRICTION_MINT_THRESHOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"currentReward","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":"halvingCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"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":"timeUntilNextMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]Contract Creation Code
60806040526802b5e3af16b18800006006555f6007555f600855348015610024575f5ffd5b506040518060400160405280600881526020016757696c642042544360c01b8152506040518060400160405280600781526020016657696c6442544360c81b81525081600390816100759190610126565b5060046100828282610126565b505042600555506101e0565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806100b657607f821691505b6020821081036100d457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561012157805f5260205f20601f840160051c810160208510156100ff5750805b601f840160051c820191505b8181101561011e575f815560010161010b565b50505b505050565b81516001600160401b0381111561013f5761013f61008e565b6101538161014d84546100a2565b846100da565b6020601f821160018114610185575f831561016e5750848201515b5f19600385901b1c1916600184901b17845561011e565b5f84815260208120601f198516915b828110156101b45787850151825560209485019460019092019101610194565b50848210156101d157868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b610bf7806101ed5f395ff3fe608060405234801561000f575f5ffd5b506004361061011c575f3560e01c806332cb6b0c116100a957806395d89b411161006e57806395d89b41146102135780639d4635201461021b578063a9059cbb14610224578063dd62ed3e14610237578063fc84d9131461026f575f5ffd5b806332cb6b0c146101bd5780635fd9491d146101cf5780636643dbfc146101d957806370a08231146101e257806384e7e3d31461020a575f5ffd5b80631249c58b116100ef5780631249c58b1461018057806318160ddd1461018a5780631f21bfbf1461019257806323b872dd1461019b578063313ce567146101ae575f5ffd5b806306fdde031461012057806307621eca1461013e578063095ea7b3146101555780630ac9dcd014610178575b5f5ffd5b610128610278565b60405161013591906109e3565b60405180910390f35b61014760065481565b604051908152602001610135565b610168610163366004610a33565b610308565b6040519015158152602001610135565b610147610321565b610188610373565b005b600254610147565b61014760085481565b6101686101a9366004610a5b565b610689565b60405160128152602001610135565b6101476a115eec47f6cf7e3500000081565b6101476203345081565b61014761520881565b6101476101f0366004610a95565b6001600160a01b03165f9081526020819052604090205490565b61014761025881565b6101286106ac565b61014760055481565b610168610232366004610a33565b6106bb565b610147610245366004610ab5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61014760075481565b60606003805461028790610ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546102b390610ae6565b80156102fe5780601f106102d5576101008083540402835291602001916102fe565b820191905f5260205f20905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b5f336103158185856106c8565b60019150505b92915050565b5f6a115eec47f6cf7e3500000061033760025490565b1061034257505f1990565b5f6102586005546103539190610b32565b9050804210610363575f91505090565b61036d4282610b45565b91505090565b6a115eec47f6cf7e3500000061038860025490565b106103cf5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064015b60405180910390fd5b6102586005546103df9190610b32565b4210156104275760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1a5b59481c185cdcd95960521b60448201526064016103c6565b615208600854106104a357335f90815260208190526040902054670de0b6b3a764000011156104a35760405162461bcd60e51b815260206004820152602260248201527f4d75737420686f6c64206174206c65617374203120746f6b656e20746f206d696044820152611b9d60f21b60648201526084016103c6565b60075415610542576007546104b9906002610b58565b6104cb90670de0b6b3a7640000610b58565b335f9081526020819052604090205410156105425760405162461bcd60e51b815260206004820152603160248201527f4d75737420686f6c6420746f6b656e7320657175616c20746f207477696365206044820152701d1a19481a185b1d9a5b99c818dbdd5b9d607a1b60648201526084016103c6565b4260055560088054905f61055583610b6f565b91905055506203345060085461056b9190610b9b565b5f036105de5760026006546105809190610bae565b60065560078054905f61059283610b6f565b91905055507f394823b0bcaf78cd8f5876a52c05dbab91512a05f5da2a31e239a11ab66d605f6006546007546040516105d5929190918252602082015260400190565b60405180910390a15b601560075411156105f457651319718a50006006555b6006546a115eec47f6cf7e350000008161060d60025490565b6106179190610b32565b111561063857600254610635906a115eec47f6cf7e35000000610b45565b90505b61064233826106da565b337f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f8261066e60025490565b6040805192835260208301919091520160405180910390a250565b5f33610696858285610712565b6106a185858561078e565b506001949350505050565b60606004805461028790610ae6565b5f3361031581858561078e565b6106d583838360016107eb565b505050565b6001600160a01b0382166107035760405163ec442f0560e01b81525f60048201526024016103c6565b61070e5f83836108bd565b5050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610788578181101561077a57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016103c6565b61078884848484035f6107eb565b50505050565b6001600160a01b0383166107b757604051634b637e8f60e11b81525f60048201526024016103c6565b6001600160a01b0382166107e05760405163ec442f0560e01b81525f60048201526024016103c6565b6106d58383836108bd565b6001600160a01b0384166108145760405163e602df0560e01b81525f60048201526024016103c6565b6001600160a01b03831661083d57604051634a1406b160e11b81525f60048201526024016103c6565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561078857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108af91815260200190565b60405180910390a350505050565b6001600160a01b0383166108e7578060025f8282546108dc9190610b32565b909155506109579050565b6001600160a01b0383165f90815260208190526040902054818110156109395760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016103c6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661097357600280548290039055610991565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109d691815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610a2e575f5ffd5b919050565b5f5f60408385031215610a44575f5ffd5b610a4d83610a18565b946020939093013593505050565b5f5f5f60608486031215610a6d575f5ffd5b610a7684610a18565b9250610a8460208501610a18565b929592945050506040919091013590565b5f60208284031215610aa5575f5ffd5b610aae82610a18565b9392505050565b5f5f60408385031215610ac6575f5ffd5b610acf83610a18565b9150610add60208401610a18565b90509250929050565b600181811c90821680610afa57607f821691505b602082108103610b1857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561031b5761031b610b1e565b8181038181111561031b5761031b610b1e565b808202811582820484141761031b5761031b610b1e565b5f60018201610b8057610b80610b1e565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f82610ba957610ba9610b87565b500690565b5f82610bbc57610bbc610b87565b50049056fea26469706673582212209275cf4a0eefbf63be6cf334825633508fcddb736f7c0747ffd85daa08099db364736f6c634300081e0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b506004361061011c575f3560e01c806332cb6b0c116100a957806395d89b411161006e57806395d89b41146102135780639d4635201461021b578063a9059cbb14610224578063dd62ed3e14610237578063fc84d9131461026f575f5ffd5b806332cb6b0c146101bd5780635fd9491d146101cf5780636643dbfc146101d957806370a08231146101e257806384e7e3d31461020a575f5ffd5b80631249c58b116100ef5780631249c58b1461018057806318160ddd1461018a5780631f21bfbf1461019257806323b872dd1461019b578063313ce567146101ae575f5ffd5b806306fdde031461012057806307621eca1461013e578063095ea7b3146101555780630ac9dcd014610178575b5f5ffd5b610128610278565b60405161013591906109e3565b60405180910390f35b61014760065481565b604051908152602001610135565b610168610163366004610a33565b610308565b6040519015158152602001610135565b610147610321565b610188610373565b005b600254610147565b61014760085481565b6101686101a9366004610a5b565b610689565b60405160128152602001610135565b6101476a115eec47f6cf7e3500000081565b6101476203345081565b61014761520881565b6101476101f0366004610a95565b6001600160a01b03165f9081526020819052604090205490565b61014761025881565b6101286106ac565b61014760055481565b610168610232366004610a33565b6106bb565b610147610245366004610ab5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61014760075481565b60606003805461028790610ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546102b390610ae6565b80156102fe5780601f106102d5576101008083540402835291602001916102fe565b820191905f5260205f20905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b5f336103158185856106c8565b60019150505b92915050565b5f6a115eec47f6cf7e3500000061033760025490565b1061034257505f1990565b5f6102586005546103539190610b32565b9050804210610363575f91505090565b61036d4282610b45565b91505090565b6a115eec47f6cf7e3500000061038860025490565b106103cf5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064015b60405180910390fd5b6102586005546103df9190610b32565b4210156104275760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1a5b59481c185cdcd95960521b60448201526064016103c6565b615208600854106104a357335f90815260208190526040902054670de0b6b3a764000011156104a35760405162461bcd60e51b815260206004820152602260248201527f4d75737420686f6c64206174206c65617374203120746f6b656e20746f206d696044820152611b9d60f21b60648201526084016103c6565b60075415610542576007546104b9906002610b58565b6104cb90670de0b6b3a7640000610b58565b335f9081526020819052604090205410156105425760405162461bcd60e51b815260206004820152603160248201527f4d75737420686f6c6420746f6b656e7320657175616c20746f207477696365206044820152701d1a19481a185b1d9a5b99c818dbdd5b9d607a1b60648201526084016103c6565b4260055560088054905f61055583610b6f565b91905055506203345060085461056b9190610b9b565b5f036105de5760026006546105809190610bae565b60065560078054905f61059283610b6f565b91905055507f394823b0bcaf78cd8f5876a52c05dbab91512a05f5da2a31e239a11ab66d605f6006546007546040516105d5929190918252602082015260400190565b60405180910390a15b601560075411156105f457651319718a50006006555b6006546a115eec47f6cf7e350000008161060d60025490565b6106179190610b32565b111561063857600254610635906a115eec47f6cf7e35000000610b45565b90505b61064233826106da565b337f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f8261066e60025490565b6040805192835260208301919091520160405180910390a250565b5f33610696858285610712565b6106a185858561078e565b506001949350505050565b60606004805461028790610ae6565b5f3361031581858561078e565b6106d583838360016107eb565b505050565b6001600160a01b0382166107035760405163ec442f0560e01b81525f60048201526024016103c6565b61070e5f83836108bd565b5050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610788578181101561077a57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016103c6565b61078884848484035f6107eb565b50505050565b6001600160a01b0383166107b757604051634b637e8f60e11b81525f60048201526024016103c6565b6001600160a01b0382166107e05760405163ec442f0560e01b81525f60048201526024016103c6565b6106d58383836108bd565b6001600160a01b0384166108145760405163e602df0560e01b81525f60048201526024016103c6565b6001600160a01b03831661083d57604051634a1406b160e11b81525f60048201526024016103c6565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561078857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108af91815260200190565b60405180910390a350505050565b6001600160a01b0383166108e7578060025f8282546108dc9190610b32565b909155506109579050565b6001600160a01b0383165f90815260208190526040902054818110156109395760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016103c6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661097357600280548290039055610991565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109d691815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610a2e575f5ffd5b919050565b5f5f60408385031215610a44575f5ffd5b610a4d83610a18565b946020939093013593505050565b5f5f5f60608486031215610a6d575f5ffd5b610a7684610a18565b9250610a8460208501610a18565b929592945050506040919091013590565b5f60208284031215610aa5575f5ffd5b610aae82610a18565b9392505050565b5f5f60408385031215610ac6575f5ffd5b610acf83610a18565b9150610add60208401610a18565b90509250929050565b600181811c90821680610afa57607f821691505b602082108103610b1857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561031b5761031b610b1e565b8181038181111561031b5761031b610b1e565b808202811582820484141761031b5761031b610b1e565b5f60018201610b8057610b80610b1e565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f82610ba957610ba9610b87565b500690565b5f82610bbc57610bbc610b87565b50049056fea26469706673582212209275cf4a0eefbf63be6cf334825633508fcddb736f7c0747ffd85daa08099db364736f6c634300081e0033
Deployed Bytecode Sourcemap
78:2978:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1715:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;624:42:5;;;;;;;;;583:25:6;;;571:2;556:18;624:42:5;437:177:6;3857:186:2;;;;;;:::i;:::-;;:::i;:::-;;;1267:14:6;;1260:22;1242:41;;1230:2;1215:18;3857:186:2;1102:187:6;2606:448:5;;;:::i;1012:1588::-;;;:::i;:::-;;2758:97:2;2836:12;;2758:97;;738:29:5;;;;;;4635:244:2;;;;;;:::i;:::-;;:::i;2643:82::-;;;2716:2;1815:36:6;;1803:2;1788:18;2643:82:2;1673:184:6;119:54:5;;156:17;119:54;;200:49;;243:6;200:49;;466:58;;519:5;466:58;;2888:116:2;;;;;;:::i;:::-;-1:-1:-1;;;;;2979:18:2;2953:7;2979:18;;;;;;;;;;;;2888:116;530:50:5;;570:10;530:50;;1917:93:2;;;:::i;591:27:5:-;;;;;;3199:178:2;;;;;;:::i;:::-;;:::i;3410:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3516:18:2;;;3490:7;3516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3410:140;701:31:5;;;;;;1715:89:2;1760:13;1792:5;1785:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1715:89;:::o;3857:186::-;3930:4;735:10:0;3984:31:2;735:10:0;4000:7:2;4009:5;3984:8;:31::i;:::-;4032:4;4025:11;;;3857:186;;;;;:::o;2606:448:5:-;2658:7;156:17;2681:13;2836:12:2;;;2758:97;2681:13:5;:27;2677:128;;-1:-1:-1;;;2731:17:5;2606:448::o;2677:128::-;2819:20;570:10;2842:12;;:28;;;;:::i;:::-;2819:51;;2908:12;2889:15;:31;2885:163;;2943:1;2936:8;;;2606:448;:::o;2885:163::-;3007:30;3022:15;3007:12;:30;:::i;:::-;3000:37;;;2606:448;:::o;1012:1588::-;156:17;1055:13;2836:12:2;;;2758:97;1055:13:5;:26;1047:57;;;;-1:-1:-1;;;1047:57:5;;3300:2:6;1047:57:5;;;3282:21:6;3339:2;3319:18;;;3312:30;-1:-1:-1;;;3358:18:6;;;3351:48;3416:18;;1047:57:5;;;;;;;;;570:10;1141:12;;:28;;;;:::i;:::-;1122:15;:47;;1114:82;;;;-1:-1:-1;;;1114:82:5;;3647:2:6;1114:82:5;;;3629:21:6;3686:2;3666:18;;;3659:30;-1:-1:-1;;;3705:18:6;;;3698:52;3767:18;;1114:82:5;3445:346:6;1114:82:5;519:5;1249:10;;:40;1245:153;;1323:10;2953:7:2;2979:18;;;;;;;;;;;1338:10:5;-1:-1:-1;1313:35:5;1305:82;;;;-1:-1:-1;;;1305:82:5;;3998:2:6;1305:82:5;;;3980:21:6;4037:2;4017:18;;;4010:30;4076:34;4056:18;;;4049:62;-1:-1:-1;;;4127:18:6;;;4120:32;4169:19;;1305:82:5;3796:398:6;1305:82:5;1411:12;;:16;1407:159;;1476:12;;:16;;1491:1;1476:16;:::i;:::-;:25;;1495:6;1476:25;:::i;:::-;1461:10;2953:7:2;2979:18;;;;;;;;;;;1451:50:5;;1443:112;;;;-1:-1:-1;;;1443:112:5;;4574:2:6;1443:112:5;;;4556:21:6;4613:2;4593:18;;;4586:30;4652:34;4632:18;;;4625:62;-1:-1:-1;;;4703:18:6;;;4696:47;4760:19;;1443:112:5;4372:413:6;1443:112:5;1632:15;1617:12;:30;1657:10;:12;;;:10;:12;;;:::i;:::-;;;;;;243:6;1765:10;;:29;;;;:::i;:::-;1798:1;1765:34;1761:181;;1847:1;1831:13;;:17;;;;:::i;:::-;1815:13;:33;1862:12;:14;;;:12;:14;;;:::i;:::-;;;;;;1895:36;1903:13;;1918:12;;1895:36;;;;;;5478:25:6;;;5534:2;5519:18;;5512:34;5466:2;5451:18;;5304:248;1895:36:5;;;;;;;;1761:181;2189:2;2174:12;;:17;2170:82;;;2223:18;2207:13;:34;2170:82;2348:13;;156:17;2348:13;2375;2836:12:2;;;2758:97;2375:13:5;:28;;;;:::i;:::-;:41;2371:113;;;2836:12:2;;2447:26:5;;156:17;2447:26;:::i;:::-;2432:41;;2371:113;2502:31;2508:10;2520:12;2502:5;:31::i;:::-;2553:10;2548:45;2565:12;2579:13;2836:12:2;;;2758:97;2579:13:5;2548:45;;;5478:25:6;;;5534:2;5519:18;;5512:34;;;;5451:18;2548:45:5;;;;;;;1037:1563;1012:1588::o;4635:244:2:-;4722:4;735:10:0;4778:37:2;4794:4;735:10:0;4809:5:2;4778:15;:37::i;:::-;4825:26;4835:4;4841:2;4845:5;4825:9;:26::i;:::-;-1:-1:-1;4868:4:2;;4635:244;-1:-1:-1;;;;4635:244:2:o;1917:93::-;1964:13;1996:7;1989:14;;;;;:::i;3199:178::-;3268:4;735:10:0;3322:27:2;735:10:0;3339:2:2;3343:5;3322:9;:27::i;8585:128::-;8669:37;8678:5;8685:7;8694:5;8701:4;8669:8;:37::i;:::-;8585:128;;;:::o;7317:208::-;-1:-1:-1;;;;;7387:21:2;;7383:91;;7431:32;;-1:-1:-1;;;7431:32:2;;7460:1;7431:32;;;5703:51:6;5676:18;;7431:32:2;5557:203:6;7383:91:2;7483:35;7499:1;7503:7;7512:5;7483:7;:35::i;:::-;7317:208;;:::o;10274:476::-;-1:-1:-1;;;;;3516:18:2;;;10373:24;3516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10439:36:2;;10435:309;;;10514:5;10495:16;:24;10491:130;;;10546:60;;-1:-1:-1;;;10546:60:2;;-1:-1:-1;;;;;5985:32:6;;10546:60:2;;;5967:51:6;6034:18;;;6027:34;;;6077:18;;;6070:34;;;5940:18;;10546:60:2;5765:345:6;10491:130:2;10662:57;10671:5;10678:7;10706:5;10687:16;:24;10713:5;10662:8;:57::i;:::-;10363:387;10274:476;;;:::o;5252:300::-;-1:-1:-1;;;;;5335:18:2;;5331:86;;5376:30;;-1:-1:-1;;;5376:30:2;;5403:1;5376:30;;;5703:51:6;5676:18;;5376:30:2;5557:203:6;5331:86:2;-1:-1:-1;;;;;5430:16:2;;5426:86;;5469:32;;-1:-1:-1;;;5469:32:2;;5498:1;5469:32;;;5703:51:6;5676:18;;5469:32:2;5557:203:6;5426:86:2;5521:24;5529:4;5535:2;5539:5;5521:7;:24::i;9560:432::-;-1:-1:-1;;;;;9672:19:2;;9668:89;;9714:32;;-1:-1:-1;;;9714:32:2;;9743:1;9714:32;;;5703:51:6;5676:18;;9714:32:2;5557:203:6;9668:89:2;-1:-1:-1;;;;;9770:21:2;;9766:90;;9814:31;;-1:-1:-1;;;9814:31:2;;9842:1;9814:31;;;5703:51:6;5676:18;;9814:31:2;5557:203:6;9766:90:2;-1:-1:-1;;;;;9865:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9910:76;;;;9960:7;-1:-1:-1;;;;;9944:31:2;9953:5;-1:-1:-1;;;;;9944:31:2;;9969:5;9944:31;;;;583:25:6;;571:2;556:18;;437:177;9944:31:2;;;;;;;;9560:432;;;;:::o;5867:1107::-;-1:-1:-1;;;;;5956:18:2;;5952:540;;6108:5;6092:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5952:540:2;;-1:-1:-1;5952:540:2;;-1:-1:-1;;;;;6166:15:2;;6144:19;6166:15;;;;;;;;;;;6199:19;;;6195:115;;;6245:50;;-1:-1:-1;;;6245:50:2;;-1:-1:-1;;;;;5985:32:6;;6245:50:2;;;5967:51:6;6034:18;;;6027:34;;;6077:18;;;6070:34;;;5940:18;;6245:50:2;5765:345:6;6195:115:2;-1:-1:-1;;;;;6430:15:2;;:9;:15;;;;;;;;;;6448:19;;;;6430:37;;5952:540;-1:-1:-1;;;;;6506:16:2;;6502:425;;6669:12;:21;;;;;;;6502:425;;;-1:-1:-1;;;;;6880:13:2;;:9;:13;;;;;;;;;;:22;;;;;;6502:425;6957:2;-1:-1:-1;;;;;6942:25:2;6951:4;-1:-1:-1;;;;;6942:25:2;;6961:5;6942:25;;;;583::6;;571:2;556:18;;437:177;6942:25:2;;;;;;;;5867:1107;;;:::o;14:418:6:-;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;619:173::-;687:20;;-1:-1:-1;;;;;736:31:6;;726:42;;716:70;;782:1;779;772:12;716:70;619:173;;;:::o;797:300::-;865:6;873;926:2;914:9;905:7;901:23;897:32;894:52;;;942:1;939;932:12;894:52;965:29;984:9;965:29;:::i;:::-;955:39;1063:2;1048:18;;;;1035:32;;-1:-1:-1;;;797:300:6: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:6;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:6: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:127::-;2764:10;2759:3;2755:20;2752:1;2745:31;2795:4;2792:1;2785:15;2819:4;2816:1;2809:15;2835:125;2900:9;;;2921:10;;;2918:36;;;2934:18;;:::i;2965:128::-;3032:9;;;3053:11;;;3050:37;;;3067:18;;:::i;4199:168::-;4272:9;;;4303;;4320:15;;;4314:22;;4300:37;4290:71;;4341:18;;:::i;4790:135::-;4829:3;4850:17;;;4847:43;;4870:18;;:::i;:::-;-1:-1:-1;4917:1:6;4906:13;;4790:135::o;4930:127::-;4991:10;4986:3;4982:20;4979:1;4972:31;5022:4;5019:1;5012:15;5046:4;5043:1;5036:15;5062:112;5094:1;5120;5110:35;;5125:18;;:::i;:::-;-1:-1:-1;5159:9:6;;5062:112::o;5179:120::-;5219:1;5245;5235:35;;5250:18;;:::i;:::-;-1:-1:-1;5284:9:6;;5179:120::o
Swarm Source
ipfs://9275cf4a0eefbf63be6cf334825633508fcddb736f7c0747ffd85daa08099db3
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 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.