Overview
ETH Balance
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 164 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 13393951 | 393 days ago | IN | 0 ETH | 0.00000321 | ||||
| Approve | 12114831 | 423 days ago | IN | 0 ETH | 0.00000088 | ||||
| Approve | 12114804 | 423 days ago | IN | 0 ETH | 0.0000007 | ||||
| Approve | 2043913 | 656 days ago | IN | 0 ETH | 0.00001877 | ||||
| Approve | 1680219 | 664 days ago | IN | 0 ETH | 0.00007019 | ||||
| Approve | 1623455 | 666 days ago | IN | 0 ETH | 0.00004652 | ||||
| Approve | 1590303 | 667 days ago | IN | 0 ETH | 0.00005711 | ||||
| Approve | 1590300 | 667 days ago | IN | 0 ETH | 0.00005712 | ||||
| Approve | 1531104 | 668 days ago | IN | 0 ETH | 0.00003118 | ||||
| Burn | 1515297 | 668 days ago | IN | 0 ETH | 0.00003437 | ||||
| Approve | 1515214 | 668 days ago | IN | 0 ETH | 0.00004028 | ||||
| Approve | 1514957 | 668 days ago | IN | 0 ETH | 0.00004013 | ||||
| Approve | 1503707 | 669 days ago | IN | 0 ETH | 0.00004735 | ||||
| Approve | 1495372 | 669 days ago | IN | 0 ETH | 0.00003281 | ||||
| Approve | 1481094 | 669 days ago | IN | 0 ETH | 0.0000339 | ||||
| Approve | 1481065 | 669 days ago | IN | 0 ETH | 0.00003275 | ||||
| Approve | 1478253 | 669 days ago | IN | 0 ETH | 0.0000324 | ||||
| Approve | 1477994 | 669 days ago | IN | 0 ETH | 0.00003455 | ||||
| Approve | 1477819 | 669 days ago | IN | 0 ETH | 0.0000366 | ||||
| Approve | 1477174 | 669 days ago | IN | 0 ETH | 0.00003299 | ||||
| Approve | 1476471 | 669 days ago | IN | 0 ETH | 0.00003255 | ||||
| Toggle Pause | 1472914 | 669 days ago | IN | 0 ETH | 0.00002848 | ||||
| Approve | 1422524 | 670 days ago | IN | 0 ETH | 0.00006119 | ||||
| Approve | 1387938 | 671 days ago | IN | 0 ETH | 0.00005008 | ||||
| Mint | 1387741 | 671 days ago | IN | 0 ETH | 0.00005239 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Contract Source Code (Solidity)
/**
*Submitted for verification at blastscan.io on 2024-03-10
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
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.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
/**
* @dev Interface for the optional metadata functions from the ERC20 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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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);
}
/**
* @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 ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
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}.
*
* 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 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}.
*
* 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 `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:
* ```
* 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) (token/ERC20/utils/SafeERC20.sol)
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert FailedInnerCall();
}
}
}
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @dev An operation with an ERC20 token failed.
*/
error SafeERC20FailedOperation(address token);
/**
* @dev Indicates a failed `decreaseAllowance` request.
*/
error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
forceApprove(token, spender, oldAllowance + value);
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
* value, non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
unchecked {
uint256 currentAllowance = token.allowance(address(this), spender);
if (currentAllowance < requestedDecrease) {
revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
}
forceApprove(token, spender, currentAllowance - requestedDecrease);
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data);
if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
}
}
// 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);
}
}
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant NOT_ENTERED = 1;
uint256 private constant ENTERED = 2;
uint256 private _status;
/**
* @dev Unauthorized reentrant call.
*/
error ReentrancyGuardReentrantCall();
constructor() {
_status = NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be NOT_ENTERED
if (_status == ENTERED) {
revert ReentrancyGuardReentrantCall();
}
// Any calls to nonReentrant after this point will fail
_status = ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == ENTERED;
}
}
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys a `value` amount of tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 value) public virtual {
_burn(_msgSender(), value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, deducting from
* the caller's allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `value`.
*/
function burnFrom(address account, uint256 value) public virtual {
_spendAllowance(account, _msgSender(), value);
_burn(account, value);
}
}
contract NoMore is ERC20("NoMore", "NO"), ERC20Burnable, ReentrancyGuard, Ownable(msg.sender) {
using SafeERC20 for IERC20;
// public addresses //
address public YES_ADDRESS;
address public SHARE_ADDRESS;
address public SETTER_ADDRESS;
// state variables //
bool public isPaused;
bool public isInitialized;
// numeric variables //
uint public NO_RATE = 1E18;
uint public NO_RATE_DIVISOR = 1E18;
// event //
event Minted(
address indexed user,
uint noAmount,
uint yesAmount,
uint timeStamp
);
// [.√.] restricts: txns to when contract is both initialized and not paused.
modifier whenAvailable() {
require(isInitialized, "Contract must be initialized.");
require(!isPaused, "Contract is paused.");
_;
}
// [.√.] restricts: access to setter.
modifier onlySetter() {
require(SETTER_ADDRESS == msg.sender, "Only setter is allowed.");
_;
}
// [.√.] initializes: contract with addresses.
function initialize(
address _yesAddress,
address _shareAddress
) external onlyOwner {
require(!isInitialized, 'Contract already initialized.');
YES_ADDRESS = _yesAddress;
SHARE_ADDRESS = _shareAddress;
// initializes: contract.
isInitialized = true;
}
// [.√.] mints: NO with YES.
function mint(address to, uint noAmount) external nonReentrant whenAvailable {
// calculates: cost of minting total NO.
uint yesAmount = getYesAmount(noAmount);
// requires: sufficient YES (`yesAmount`) balance.
require(IERC20(YES_ADDRESS).balanceOf(msg.sender) >= yesAmount, 'insufficient YES balance');
// transfers: YES (`yesAmount`) from sender to SHARE_ADDRESS.
IERC20(YES_ADDRESS).safeTransferFrom(msg.sender, SHARE_ADDRESS, yesAmount);
// mints: NO (`noAmount`).
_mint(to, noAmount);
// emits: event describing mint details.
emit Minted(to, noAmount, yesAmount, block.timestamp);
}
// VIEW FUNCTIONS //
// [.√.] gets: amount of YES for a requested amount of NO.
function getYesAmount(uint noAmount) public view returns (uint) {
return noAmount * NO_RATE / NO_RATE_DIVISOR;
}
// [.√.] gets: NO_RATE.
function getNoRate() public view returns (uint) {
return NO_RATE;
}
// [.√.] gets: NO_RATE_DIVISOR.
function getNoRateDivisor() public view returns (uint) {
return NO_RATE_DIVISOR;
}
// ADMIN FUNCTIONS //
// [√] sets: pause state (onlyOwner).
function togglePause() external onlyOwner {
isPaused = !isPaused;
}
// [.√.] saves: tokens (onlyOwner).
function saveTokens(address tokenAddress, address destAddress) external onlyOwner {
IERC20(tokenAddress).transfer(
destAddress,
IERC20(tokenAddress).balanceOf(address(this))
);
}
// [.√.] sets: share address (onlyOwner).
function setShareAddress(address shareAddress) external onlyOwner {
SHARE_ADDRESS = shareAddress;
}
// [.√.] sets: yes address (onlyOwner).
function setYesAddress(address yesAddress) external onlyOwner {
YES_ADDRESS = yesAddress;
}
// [.√.] sets: no rate (onlySetter).
function setNoRate(uint noRate, uint noRateDivisor) external onlySetter {
NO_RATE = noRate;
NO_RATE_DIVISOR = noRateDivisor;
}
// [.√.] sets: setter address (onlyOwner).
function setSetter(address setterAddress) external onlyOwner {
SETTER_ADDRESS = setterAddress;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"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":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"noAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"yesAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timeStamp","type":"uint256"}],"name":"Minted","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":[],"name":"NO_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_RATE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SETTER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YES_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNoRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNoRateDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"noAmount","type":"uint256"}],"name":"getYesAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_yesAddress","type":"address"},{"internalType":"address","name":"_shareAddress","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"noAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"destAddress","type":"address"}],"name":"saveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"noRate","type":"uint256"},{"internalType":"uint256","name":"noRateDivisor","type":"uint256"}],"name":"setNoRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"setterAddress","type":"address"}],"name":"setSetter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"shareAddress","type":"address"}],"name":"setShareAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"yesAddress","type":"address"}],"name":"setYesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","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"}]Contract Creation Code
6080604052670de0b6b3a7640000600a55670de0b6b3a7640000600b5534801562000028575f80fd5b5033604051806040016040528060068152602001654e6f4d6f726560d01b815250604051806040016040528060028152602001614e4f60f01b8152508160039081620000759190620001bb565b506004620000848282620001bb565b50506001600555506001600160a01b038116620000ba57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b620000c581620000cc565b5062000287565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200014657607f821691505b6020821081036200016557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001b657805f5260205f20601f840160051c81016020851015620001925750805b601f840160051c820191505b81811015620001b3575f81556001016200019e565b50505b505050565b81516001600160401b03811115620001d757620001d76200011d565b620001ef81620001e8845462000131565b846200016b565b602080601f83116001811462000225575f84156200020d5750858301515b5f19600386901b1c1916600185901b1785556200027f565b5f85815260208120601f198616915b82811015620002555788860151825594840194600190910190840162000234565b50858210156200027357878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b61128e80620002955f395ff3fe608060405234801561000f575f80fd5b50600436106101e7575f3560e01c806379cc679011610109578063c4ae31681161009e578063e142d9301161006e578063e142d93014610429578063f1388df91461043c578063f2fde38b14610444578063f99aa03d14610457575f80fd5b8063c4ae3168146103cd578063ce4a82ce146103d5578063d2c077be146103de578063dd62ed3e146103f1575f80fd5b8063a2a72855116100d9578063a2a728551461038b578063a9059cbb14610393578063ae3305ec146103a6578063b187bd26146103b9575f80fd5b806379cc67901461034c5780638da5cb5b1461035f5780638e5d72431461037057806395d89b4114610383575f80fd5b806340c10f191161017f5780636dce27d51161014f5780636dce27d5146102de57806370a0823114610309578063715018a614610331578063742b74a214610339575f80fd5b806340c10f191461029257806342966c68146102a557806346e32b04146102b8578063485cc955146102cb575f80fd5b80631c5b6e8d116101ba5780631c5b6e8d1461024757806323b872dd1461025c578063313ce5671461026f578063392e53cd1461027e575f80fd5b806302c27338146101eb57806306fdde0314610207578063095ea7b31461021c57806318160ddd1461023f575b5f80fd5b6101f4600a5481565b6040519081526020015b60405180910390f35b61020f61046a565b6040516101fe9190611043565b61022f61022a366004611090565b6104fa565b60405190151581526020016101fe565b6002546101f4565b61025a6102553660046110b8565b610513565b005b61022f61026a3660046110d1565b61053d565b604051601281526020016101fe565b60095461022f90600160a81b900460ff1681565b61025a6102a0366004611090565b610562565b61025a6102b336600461110a565b610762565b61025a6102c63660046110b8565b61076f565b61025a6102d9366004611121565b610799565b6008546102f1906001600160a01b031681565b6040516001600160a01b0390911681526020016101fe565b6101f46103173660046110b8565b6001600160a01b03165f9081526020819052604090205490565b61025a61083c565b6101f461034736600461110a565b61084f565b61025a61035a366004611090565b61086b565b6006546001600160a01b03166102f1565b61025a61037e366004611121565b610880565b61020f610969565b600b546101f4565b61022f6103a1366004611090565b610978565b61025a6103b4366004611152565b610985565b60095461022f90600160a01b900460ff1681565b61025a6109ea565b6101f4600b5481565b6007546102f1906001600160a01b031681565b6101f46103ff366004611121565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6009546102f1906001600160a01b031681565b600a546101f4565b61025a6104523660046110b8565b610a13565b61025a6104653660046110b8565b610a4d565b60606003805461047990611172565b80601f01602080910402602001604051908101604052809291908181526020018280546104a590611172565b80156104f05780601f106104c7576101008083540402835291602001916104f0565b820191905f5260205f20905b8154815290600101906020018083116104d357829003601f168201915b5050505050905090565b5f33610507818585610a77565b60019150505b92915050565b61051b610a84565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b5f3361054a858285610ab1565b610555858585610b2c565b60019150505b9392505050565b61056a610b89565b600954600160a81b900460ff166105c85760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d75737420626520696e697469616c697a65642e00000060448201526064015b60405180910390fd5b600954600160a01b900460ff16156106185760405162461bcd60e51b815260206004820152601360248201527221b7b73a3930b1ba1034b9903830bab9b2b21760691b60448201526064016105bf565b5f6106228261084f565b6007546040516370a0823160e01b815233600482015291925082916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561066d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069191906111aa565b10156106df5760405162461bcd60e51b815260206004820152601860248201527f696e73756666696369656e74205945532062616c616e6365000000000000000060448201526064016105bf565b6008546007546106fe916001600160a01b039182169133911684610bb3565b6107088383610c0d565b6040805183815260208101839052428183015290516001600160a01b038516917f5a3358a3d27a5373c0df2604662088d37894d56b7cfd27f315770440f4e0d919919081900360600190a25061075e6001600555565b5050565b61076c3382610c41565b50565b610777610a84565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6107a1610a84565b600954600160a81b900460ff16156107fb5760405162461bcd60e51b815260206004820152601d60248201527f436f6e747261637420616c726561647920696e697469616c697a65642e00000060448201526064016105bf565b600780546001600160a01b039384166001600160a01b031991821617909155600880549290931691161790556009805460ff60a81b1916600160a81b179055565b610844610a84565b61084d5f610c75565b565b5f600b54600a548361086191906111d5565b61050d91906111ec565b610876823383610ab1565b61075e8282610c41565b610888610a84565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa1580156108d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f891906111aa565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610940573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610964919061120b565b505050565b60606004805461047990611172565b5f33610507818585610b2c565b6009546001600160a01b031633146109df5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c792073657474657220697320616c6c6f7765642e00000000000000000060448201526064016105bf565b600a91909155600b55565b6109f2610a84565b6009805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610a1b610a84565b6001600160a01b038116610a4457604051631e4fbdf760e01b81525f60048201526024016105bf565b61076c81610c75565b610a55610a84565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6109648383836001610cc6565b6006546001600160a01b0316331461084d5760405163118cdaa760e01b81523360048201526024016105bf565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610b265781811015610b1857604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105bf565b610b2684848484035f610cc6565b50505050565b6001600160a01b038316610b5557604051634b637e8f60e11b81525f60048201526024016105bf565b6001600160a01b038216610b7e5760405163ec442f0560e01b81525f60048201526024016105bf565b610964838383610d98565b600260055403610bac57604051633ee5aeb560e01b815260040160405180910390fd5b6002600555565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610b26908590610ebe565b6001600160a01b038216610c365760405163ec442f0560e01b81525f60048201526024016105bf565b61075e5f8383610d98565b6001600160a01b038216610c6a57604051634b637e8f60e11b81525f60048201526024016105bf565b61075e825f83610d98565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610cef5760405163e602df0560e01b81525f60048201526024016105bf565b6001600160a01b038316610d1857604051634a1406b160e11b81525f60048201526024016105bf565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b2657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d8a91815260200190565b60405180910390a350505050565b6001600160a01b038316610dc2578060025f828254610db7919061122a565b90915550610e329050565b6001600160a01b0383165f9081526020819052604090205481811015610e145760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105bf565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e4e57600280548290039055610e6c565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610eb191815260200190565b60405180910390a3505050565b5f610ed26001600160a01b03841683610f1f565b905080515f14158015610ef6575080806020019051810190610ef4919061120b565b155b1561096457604051635274afe760e01b81526001600160a01b03841660048201526024016105bf565b606061055b83835f845f80856001600160a01b03168486604051610f43919061123d565b5f6040518083038185875af1925050503d805f8114610f7d576040519150601f19603f3d011682016040523d82523d5f602084013e610f82565b606091505b5091509150610f92868383610f9c565b9695505050505050565b606082610fb157610fac82610ff8565b61055b565b8151158015610fc857506001600160a01b0384163b155b15610ff157604051639996b31560e01b81526001600160a01b03851660048201526024016105bf565b508061055b565b8051156110085780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f5b8381101561103b578181015183820152602001611023565b50505f910152565b602081525f8251806020840152611061816040850160208701611021565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461108b575f80fd5b919050565b5f80604083850312156110a1575f80fd5b6110aa83611075565b946020939093013593505050565b5f602082840312156110c8575f80fd5b61055b82611075565b5f805f606084860312156110e3575f80fd5b6110ec84611075565b92506110fa60208501611075565b9150604084013590509250925092565b5f6020828403121561111a575f80fd5b5035919050565b5f8060408385031215611132575f80fd5b61113b83611075565b915061114960208401611075565b90509250929050565b5f8060408385031215611163575f80fd5b50508035926020909101359150565b600181811c9082168061118657607f821691505b6020821081036111a457634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156111ba575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761050d5761050d6111c1565b5f8261120657634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561121b575f80fd5b8151801515811461055b575f80fd5b8082018082111561050d5761050d6111c1565b5f825161124e818460208701611021565b919091019291505056fea26469706673582212200944fca80b04c9ff872f56c46e877fa3a7a59817544a32b3b6c8f7ba604bbc1b64736f6c63430008180033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101e7575f3560e01c806379cc679011610109578063c4ae31681161009e578063e142d9301161006e578063e142d93014610429578063f1388df91461043c578063f2fde38b14610444578063f99aa03d14610457575f80fd5b8063c4ae3168146103cd578063ce4a82ce146103d5578063d2c077be146103de578063dd62ed3e146103f1575f80fd5b8063a2a72855116100d9578063a2a728551461038b578063a9059cbb14610393578063ae3305ec146103a6578063b187bd26146103b9575f80fd5b806379cc67901461034c5780638da5cb5b1461035f5780638e5d72431461037057806395d89b4114610383575f80fd5b806340c10f191161017f5780636dce27d51161014f5780636dce27d5146102de57806370a0823114610309578063715018a614610331578063742b74a214610339575f80fd5b806340c10f191461029257806342966c68146102a557806346e32b04146102b8578063485cc955146102cb575f80fd5b80631c5b6e8d116101ba5780631c5b6e8d1461024757806323b872dd1461025c578063313ce5671461026f578063392e53cd1461027e575f80fd5b806302c27338146101eb57806306fdde0314610207578063095ea7b31461021c57806318160ddd1461023f575b5f80fd5b6101f4600a5481565b6040519081526020015b60405180910390f35b61020f61046a565b6040516101fe9190611043565b61022f61022a366004611090565b6104fa565b60405190151581526020016101fe565b6002546101f4565b61025a6102553660046110b8565b610513565b005b61022f61026a3660046110d1565b61053d565b604051601281526020016101fe565b60095461022f90600160a81b900460ff1681565b61025a6102a0366004611090565b610562565b61025a6102b336600461110a565b610762565b61025a6102c63660046110b8565b61076f565b61025a6102d9366004611121565b610799565b6008546102f1906001600160a01b031681565b6040516001600160a01b0390911681526020016101fe565b6101f46103173660046110b8565b6001600160a01b03165f9081526020819052604090205490565b61025a61083c565b6101f461034736600461110a565b61084f565b61025a61035a366004611090565b61086b565b6006546001600160a01b03166102f1565b61025a61037e366004611121565b610880565b61020f610969565b600b546101f4565b61022f6103a1366004611090565b610978565b61025a6103b4366004611152565b610985565b60095461022f90600160a01b900460ff1681565b61025a6109ea565b6101f4600b5481565b6007546102f1906001600160a01b031681565b6101f46103ff366004611121565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6009546102f1906001600160a01b031681565b600a546101f4565b61025a6104523660046110b8565b610a13565b61025a6104653660046110b8565b610a4d565b60606003805461047990611172565b80601f01602080910402602001604051908101604052809291908181526020018280546104a590611172565b80156104f05780601f106104c7576101008083540402835291602001916104f0565b820191905f5260205f20905b8154815290600101906020018083116104d357829003601f168201915b5050505050905090565b5f33610507818585610a77565b60019150505b92915050565b61051b610a84565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b5f3361054a858285610ab1565b610555858585610b2c565b60019150505b9392505050565b61056a610b89565b600954600160a81b900460ff166105c85760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d75737420626520696e697469616c697a65642e00000060448201526064015b60405180910390fd5b600954600160a01b900460ff16156106185760405162461bcd60e51b815260206004820152601360248201527221b7b73a3930b1ba1034b9903830bab9b2b21760691b60448201526064016105bf565b5f6106228261084f565b6007546040516370a0823160e01b815233600482015291925082916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561066d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069191906111aa565b10156106df5760405162461bcd60e51b815260206004820152601860248201527f696e73756666696369656e74205945532062616c616e6365000000000000000060448201526064016105bf565b6008546007546106fe916001600160a01b039182169133911684610bb3565b6107088383610c0d565b6040805183815260208101839052428183015290516001600160a01b038516917f5a3358a3d27a5373c0df2604662088d37894d56b7cfd27f315770440f4e0d919919081900360600190a25061075e6001600555565b5050565b61076c3382610c41565b50565b610777610a84565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6107a1610a84565b600954600160a81b900460ff16156107fb5760405162461bcd60e51b815260206004820152601d60248201527f436f6e747261637420616c726561647920696e697469616c697a65642e00000060448201526064016105bf565b600780546001600160a01b039384166001600160a01b031991821617909155600880549290931691161790556009805460ff60a81b1916600160a81b179055565b610844610a84565b61084d5f610c75565b565b5f600b54600a548361086191906111d5565b61050d91906111ec565b610876823383610ab1565b61075e8282610c41565b610888610a84565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa1580156108d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f891906111aa565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610940573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610964919061120b565b505050565b60606004805461047990611172565b5f33610507818585610b2c565b6009546001600160a01b031633146109df5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c792073657474657220697320616c6c6f7765642e00000000000000000060448201526064016105bf565b600a91909155600b55565b6109f2610a84565b6009805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610a1b610a84565b6001600160a01b038116610a4457604051631e4fbdf760e01b81525f60048201526024016105bf565b61076c81610c75565b610a55610a84565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6109648383836001610cc6565b6006546001600160a01b0316331461084d5760405163118cdaa760e01b81523360048201526024016105bf565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610b265781811015610b1857604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105bf565b610b2684848484035f610cc6565b50505050565b6001600160a01b038316610b5557604051634b637e8f60e11b81525f60048201526024016105bf565b6001600160a01b038216610b7e5760405163ec442f0560e01b81525f60048201526024016105bf565b610964838383610d98565b600260055403610bac57604051633ee5aeb560e01b815260040160405180910390fd5b6002600555565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610b26908590610ebe565b6001600160a01b038216610c365760405163ec442f0560e01b81525f60048201526024016105bf565b61075e5f8383610d98565b6001600160a01b038216610c6a57604051634b637e8f60e11b81525f60048201526024016105bf565b61075e825f83610d98565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610cef5760405163e602df0560e01b81525f60048201526024016105bf565b6001600160a01b038316610d1857604051634a1406b160e11b81525f60048201526024016105bf565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b2657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d8a91815260200190565b60405180910390a350505050565b6001600160a01b038316610dc2578060025f828254610db7919061122a565b90915550610e329050565b6001600160a01b0383165f9081526020819052604090205481811015610e145760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105bf565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e4e57600280548290039055610e6c565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610eb191815260200190565b60405180910390a3505050565b5f610ed26001600160a01b03841683610f1f565b905080515f14158015610ef6575080806020019051810190610ef4919061120b565b155b1561096457604051635274afe760e01b81526001600160a01b03841660048201526024016105bf565b606061055b83835f845f80856001600160a01b03168486604051610f43919061123d565b5f6040518083038185875af1925050503d805f8114610f7d576040519150601f19603f3d011682016040523d82523d5f602084013e610f82565b606091505b5091509150610f92868383610f9c565b9695505050505050565b606082610fb157610fac82610ff8565b61055b565b8151158015610fc857506001600160a01b0384163b155b15610ff157604051639996b31560e01b81526001600160a01b03851660048201526024016105bf565b508061055b565b8051156110085780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f5b8381101561103b578181015183820152602001611023565b50505f910152565b602081525f8251806020840152611061816040850160208701611021565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461108b575f80fd5b919050565b5f80604083850312156110a1575f80fd5b6110aa83611075565b946020939093013593505050565b5f602082840312156110c8575f80fd5b61055b82611075565b5f805f606084860312156110e3575f80fd5b6110ec84611075565b92506110fa60208501611075565b9150604084013590509250925092565b5f6020828403121561111a575f80fd5b5035919050565b5f8060408385031215611132575f80fd5b61113b83611075565b915061114960208401611075565b90509250929050565b5f8060408385031215611163575f80fd5b50508035926020909101359150565b600181811c9082168061118657607f821691505b6020821081036111a457634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156111ba575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761050d5761050d6111c1565b5f8261120657634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561121b575f80fd5b8151801515811461055b575f80fd5b8082018082111561050d5761050d6111c1565b5f825161124e818460208701611021565b919091019291505056fea26469706673582212200944fca80b04c9ff872f56c46e877fa3a7a59817544a32b3b6c8f7ba604bbc1b64736f6c63430008180033
Deployed Bytecode Sourcemap
45513:3790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45900:26;;;;;;;;;160:25:1;;;148:2;133:18;45900:26:0;;;;;;;;12885:91;;;:::i;:::-;;;;;;;:::i;15178:190::-;;;;;;:::i;:::-;;:::i;:::-;;;1454:14:1;;1447:22;1429:41;;1417:2;1402:18;15178:190:0;1289:187:1;13987:99:0;14066:12;;13987:99;;48658:113;;;;;;:::i;:::-;;:::i;:::-;;15946:249;;;;;;:::i;:::-;;:::i;13838:84::-;;;13912:2;2147:36:1;;2135:2;2120:18;13838:84:0;2005:184:1;45837:25:0;;;;;-1:-1:-1;;;45837:25:0;;;;;;46978:691;;;;;;:::i;:::-;;:::i;44927:89::-;;;;;;:::i;:::-;;:::i;48826:105::-;;;;;;:::i;:::-;;:::i;46606:328::-;;;;;;:::i;:::-;;:::i;45710:28::-;;;;;-1:-1:-1;;;;;45710:28:0;;;;;;-1:-1:-1;;;;;2808:32:1;;;2790:51;;2778:2;2763:18;45710:28:0;2644:203:1;14149:118:0;;;;;;:::i;:::-;-1:-1:-1;;;;;14241:18:0;14214:7;14241:18;;;;;;;;;;;;14149:118;40342:103;;;:::i;47771:126::-;;;;;;:::i;:::-;;:::i;45345:161::-;;;;;;:::i;:::-;;:::i;39667:87::-;39740:6;;-1:-1:-1;;;;;39740:6:0;39667:87;;48374:227;;;;;;:::i;:::-;;:::i;13095:95::-;;;:::i;48064:96::-;48137:15;;48064:96;;14472:182;;;;;;:::i;:::-;;:::i;48983:149::-;;;;;;:::i;:::-;;:::i;45810:20::-;;;;;-1:-1:-1;;;45810:20:0;;;;;;48242:81;;;:::i;45933:34::-;;;;;;45677:26;;;;;-1:-1:-1;;;;;45677:26:0;;;14717:142;;;;;;:::i;:::-;-1:-1:-1;;;;;14824:18:0;;;14797:7;14824:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14717:142;45745:29;;;;;-1:-1:-1;;;;;45745:29:0;;;47936:81;48002:7;;47936:81;;40600:220;;;;;;:::i;:::-;;:::i;49190:110::-;;;;;;:::i;:::-;;:::i;12885:91::-;12930:13;12963:5;12956:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12885:91;:::o;15178:190::-;15251:4;4235:10;15307:31;4235:10;15323:7;15332:5;15307:8;:31::i;:::-;15356:4;15349:11;;;15178:190;;;;;:::o;48658:113::-;39553:13;:11;:13::i;:::-;48735::::1;:28:::0;;-1:-1:-1;;;;;;48735:28:0::1;-1:-1:-1::0;;;;;48735:28:0;;;::::1;::::0;;;::::1;::::0;;48658:113::o;15946:249::-;16033:4;4235:10;16091:37;16107:4;4235:10;16122:5;16091:15;:37::i;:::-;16139:26;16149:4;16155:2;16159:5;16139:9;:26::i;:::-;16183:4;16176:11;;;15946:249;;;;;;:::o;46978:691::-;43528:21;:19;:21::i;:::-;46255:13:::1;::::0;-1:-1:-1;;;46255:13:0;::::1;;;46247:55;;;::::0;-1:-1:-1;;;46247:55:0;;3692:2:1;46247:55:0::1;::::0;::::1;3674:21:1::0;3731:2;3711:18;;;3704:30;3770:31;3750:18;;;3743:59;3819:18;;46247:55:0::1;;;;;;;;;46322:8;::::0;-1:-1:-1;;;46322:8:0;::::1;;;46321:9;46313:41;;;::::0;-1:-1:-1;;;46313:41:0;;4050:2:1;46313:41:0::1;::::0;::::1;4032:21:1::0;4089:2;4069:18;;;4062:30;-1:-1:-1;;;4108:18:1;;;4101:49;4167:18;;46313:41:0::1;3848:343:1::0;46313:41:0::1;47116:14:::2;47133:22;47146:8;47133:12;:22::i;:::-;47243:11;::::0;47236:41:::2;::::0;-1:-1:-1;;;47236:41:0;;47266:10:::2;47236:41;::::0;::::2;2790:51:1::0;47116:39:0;;-1:-1:-1;47116:39:0;;-1:-1:-1;;;;;47243:11:0;;::::2;::::0;47236:29:::2;::::0;2763:18:1;;47236:41:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:54;;47228:91;;;::::0;-1:-1:-1;;;47228:91:0;;4587:2:1;47228:91:0::2;::::0;::::2;4569:21:1::0;4626:2;4606:18;;;4599:30;4665:26;4645:18;;;4638:54;4709:18;;47228:91:0::2;4385:348:1::0;47228:91:0::2;47452:13;::::0;47410:11:::2;::::0;47403:74:::2;::::0;-1:-1:-1;;;;;47410:11:0;;::::2;::::0;47440:10:::2;::::0;47452:13:::2;47467:9:::0;47403:36:::2;:74::i;:::-;47526:19;47532:2;47536:8;47526:5;:19::i;:::-;47613:48;::::0;;4940:25:1;;;4996:2;4981:18;;4974:34;;;47645:15:0::2;5024:18:1::0;;;5017:34;47613:48:0;;-1:-1:-1;;;;;47613:48:0;::::2;::::0;::::2;::::0;;;;;4928:2:1;47613:48:0;;::::2;47055:614;43572:20:::0;42863:1;44114:7;:21;43931:212;43572:20;46978:691;;:::o;44927:89::-;44982:26;4235:10;45002:5;44982;:26::i;:::-;44927:89;:::o;48826:105::-;39553:13;:11;:13::i;:::-;48899:11:::1;:24:::0;;-1:-1:-1;;;;;;48899:24:0::1;-1:-1:-1::0;;;;;48899:24:0;;;::::1;::::0;;;::::1;::::0;;48826:105::o;46606:328::-;39553:13;:11;:13::i;:::-;46735::::1;::::0;-1:-1:-1;;;46735:13:0;::::1;;;46734:14;46726:56;;;::::0;-1:-1:-1;;;46726:56:0;;5264:2:1;46726:56:0::1;::::0;::::1;5246:21:1::0;5303:2;5283:18;;;5276:30;5342:31;5322:18;;;5315:59;5391:18;;46726:56:0::1;5062:353:1::0;46726:56:0::1;46793:11;:25:::0;;-1:-1:-1;;;;;46793:25:0;;::::1;-1:-1:-1::0;;;;;;46793:25:0;;::::1;;::::0;;;46829:13:::1;:29:::0;;;;;::::1;::::0;::::1;;::::0;;46906:13:::1;:20:::0;;-1:-1:-1;;;;46906:20:0::1;-1:-1:-1::0;;;46906:20:0::1;::::0;;46606:328::o;40342:103::-;39553:13;:11;:13::i;:::-;40407:30:::1;40434:1;40407:18;:30::i;:::-;40342:103::o:0;47771:126::-;47829:4;47874:15;;47864:7;;47853:8;:18;;;;:::i;:::-;:36;;;;:::i;45345:161::-;45421:45;45437:7;4235:10;45460:5;45421:15;:45::i;:::-;45477:21;45483:7;45492:5;45477;:21::i;48374:227::-;39553:13;:11;:13::i;:::-;48537:45:::1;::::0;-1:-1:-1;;;48537:45:0;;48576:4:::1;48537:45;::::0;::::1;2790:51:1::0;-1:-1:-1;;;;;48467:29:0;::::1;::::0;::::1;::::0;48511:11;;48467:29;;48537:30:::1;::::0;2763:18:1;;48537:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48467:126;::::0;-1:-1:-1;;;;;;48467:126:0::1;::::0;;;;;;-1:-1:-1;;;;;6139:32:1;;;48467:126:0::1;::::0;::::1;6121:51:1::0;6188:18;;;6181:34;6094:18;;48467:126:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48374:227:::0;;:::o;13095:95::-;13142:13;13175:7;13168:14;;;;;:::i;14472:182::-;14541:4;4235:10;14597:27;4235:10;14614:2;14618:5;14597:9;:27::i;48983:149::-;46468:14;;-1:-1:-1;;;;;46468:14:0;46486:10;46468:28;46460:64;;;;-1:-1:-1;;;46460:64:0;;6710:2:1;46460:64:0;;;6692:21:1;6749:2;6729:18;;;6722:30;6788:25;6768:18;;;6761:53;6831:18;;46460:64:0;6508:347:1;46460:64:0;49066:7:::1;:16:::0;;;;49093:15:::1;:31:::0;48983:149::o;48242:81::-;39553:13;:11;:13::i;:::-;48307:8:::1;::::0;;-1:-1:-1;;;;48295:20:0;::::1;-1:-1:-1::0;;;48307:8:0;;;::::1;;;48306:9;48295:20:::0;;::::1;;::::0;;48242:81::o;40600:220::-;39553:13;:11;:13::i;:::-;-1:-1:-1;;;;;40685:22:0;::::1;40681:93;;40731:31;::::0;-1:-1:-1;;;40731:31:0;;40759:1:::1;40731:31;::::0;::::1;2790:51:1::0;2763:18;;40731:31:0::1;2644:203:1::0;40681:93:0::1;40784:28;40803:8;40784:18;:28::i;49190:110::-:0;39553:13;:11;:13::i;:::-;49262:14:::1;:30:::0;;-1:-1:-1;;;;;;49262:30:0::1;-1:-1:-1::0;;;;;49262:30:0;;;::::1;::::0;;;::::1;::::0;;49190:110::o;20005:130::-;20090:37;20099:5;20106:7;20115:5;20122:4;20090:8;:37::i;39832:166::-;39740:6;;-1:-1:-1;;;;;39740:6:0;4235:10;39892:23;39888:103;;39939:40;;-1:-1:-1;;;39939:40:0;;4235:10;39939:40;;;2790:51:1;2763:18;;39939:40:0;2644:203:1;21721:487:0;-1:-1:-1;;;;;14824:18:0;;;21821:24;14824:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;21888:37:0;;21884:317;;21965:5;21946:16;:24;21942:132;;;21998:60;;-1:-1:-1;;;21998:60:0;;-1:-1:-1;;;;;7080:32:1;;21998:60:0;;;7062:51:1;7129:18;;;7122:34;;;7172:18;;;7165:34;;;7035:18;;21998:60:0;6860:345:1;21942:132:0;22117:57;22126:5;22133:7;22161:5;22142:16;:24;22168:5;22117:8;:57::i;:::-;21810:398;21721:487;;;:::o;16580:308::-;-1:-1:-1;;;;;16664:18:0;;16660:88;;16706:30;;-1:-1:-1;;;16706:30:0;;16733:1;16706:30;;;2790:51:1;2763:18;;16706:30:0;2644:203:1;16660:88:0;-1:-1:-1;;;;;16762:16:0;;16758:88;;16802:32;;-1:-1:-1;;;16802:32:0;;16831:1;16802:32;;;2790:51:1;2763:18;;16802:32:0;2644:203:1;16758:88:0;16856:24;16864:4;16870:2;16874:5;16856:7;:24::i;43608:315::-;42906:1;43737:7;;:18;43733:88;;43779:30;;-1:-1:-1;;;43779:30:0;;;;;;;;;;;43733:88;42906:1;43898:7;:17;43608:315::o;33939:190::-;34067:53;;;-1:-1:-1;;;;;7468:15:1;;;34067:53:0;;;7450:34:1;7520:15;;7500:18;;;7493:43;7552:18;;;;7545:34;;;34067:53:0;;;;;;;;;;7385:18:1;;;;34067:53:0;;;;;;;;-1:-1:-1;;;;;34067:53:0;-1:-1:-1;;;34067:53:0;;;34040:81;;34060:5;;34040:19;:81::i;18700:213::-;-1:-1:-1;;;;;18771:21:0;;18767:93;;18816:32;;-1:-1:-1;;;18816:32:0;;18845:1;18816:32;;;2790:51:1;2763:18;;18816:32:0;2644:203:1;18767:93:0;18870:35;18886:1;18890:7;18899:5;18870:7;:35::i;19241:211::-;-1:-1:-1;;;;;19312:21:0;;19308:91;;19357:30;;-1:-1:-1;;;19357:30:0;;19384:1;19357:30;;;2790:51:1;2763:18;;19357:30:0;2644:203:1;19308:91:0;19409:35;19417:7;19434:1;19438:5;19409:7;:35::i;40980:191::-;41073:6;;;-1:-1:-1;;;;;41090:17:0;;;-1:-1:-1;;;;;;41090:17:0;;;;;;;41123:40;;41073:6;;;41090:17;41073:6;;41123:40;;41054:16;;41123:40;41043:128;40980:191;:::o;20986:443::-;-1:-1:-1;;;;;21099:19:0;;21095:91;;21142:32;;-1:-1:-1;;;21142:32:0;;21171:1;21142:32;;;2790:51:1;2763:18;;21142:32:0;2644:203:1;21095:91:0;-1:-1:-1;;;;;21200:21:0;;21196:92;;21245:31;;-1:-1:-1;;;21245:31:0;;21273:1;21245:31;;;2790:51:1;2763:18;;21245:31:0;2644:203:1;21196:92:0;-1:-1:-1;;;;;21298:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21344:78;;;;21395:7;-1:-1:-1;;;;;21379:31:0;21388:5;-1:-1:-1;;;;;21379:31:0;;21404:5;21379:31;;;;160:25:1;;148:2;133:18;;14:177;21379:31:0;;;;;;;;20986:443;;;;:::o;17212:1135::-;-1:-1:-1;;;;;17302:18:0;;17298:552;;17456:5;17440:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17298:552:0;;-1:-1:-1;17298:552:0;;-1:-1:-1;;;;;17516:15:0;;17494:19;17516:15;;;;;;;;;;;17550:19;;;17546:117;;;17597:50;;-1:-1:-1;;;17597:50:0;;-1:-1:-1;;;;;7080:32:1;;17597:50:0;;;7062:51:1;7129:18;;;7122:34;;;7172:18;;;7165:34;;;7035:18;;17597:50:0;6860:345:1;17546:117:0;-1:-1:-1;;;;;17786:15:0;;:9;:15;;;;;;;;;;17804:19;;;;17786:37;;17298:552;-1:-1:-1;;;;;17866:16:0;;17862:435;;18032:12;:21;;;;;;;17862:435;;;-1:-1:-1;;;;;18248:13:0;;:9;:13;;;;;;;;;;:22;;;;;;17862:435;18329:2;-1:-1:-1;;;;;18314:25:0;18323:4;-1:-1:-1;;;;;18314:25:0;;18333:5;18314:25;;;;160::1;;148:2;133:18;;14:177;18314:25:0;;;;;;;;17212:1135;;;:::o;36343:638::-;36767:23;36793:33;-1:-1:-1;;;;;36793:27:0;;36821:4;36793:27;:33::i;:::-;36767:59;;36841:10;:17;36862:1;36841:22;;:57;;;;;36879:10;36868:30;;;;;;;;;;;;:::i;:::-;36867:31;36841:57;36837:137;;;36922:40;;-1:-1:-1;;;36922:40:0;;-1:-1:-1;;;;;2808:32:1;;36922:40:0;;;2790:51:1;2763:18;;36922:40:0;2644:203:1;28847:153:0;28922:12;28954:38;28976:6;28984:4;28990:1;28922:12;29580;29594:23;29621:6;-1:-1:-1;;;;;29621:11:0;29640:5;29647:4;29621:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29579:73;;;;29670:55;29697:6;29705:7;29714:10;29670:26;:55::i;:::-;29663:62;29335:398;-1:-1:-1;;;;;;29335:398:0:o;30811:597::-;30959:12;30989:7;30984:417;;31013:19;31021:10;31013:7;:19::i;:::-;30984:417;;;31241:17;;:22;:49;;;;-1:-1:-1;;;;;;31267:18:0;;;:23;31241:49;31237:121;;;31318:24;;-1:-1:-1;;;31318:24:0;;-1:-1:-1;;;;;2808:32:1;;31318:24:0;;;2790:51:1;2763:18;;31318:24:0;2644:203:1;31237:121:0;-1:-1:-1;31379:10:0;31372:17;;31961:528;32094:17;;:21;32090:392;;32326:10;32320:17;32383:15;32370:10;32366:2;32362:19;32355:44;32090:392;32453:17;;-1:-1:-1;;;32453:17:0;;;;;;;;;;;196:250:1;281:1;291:113;305:6;302:1;299:13;291:113;;;381:11;;;375:18;362:11;;;355:39;327:2;320:10;291:113;;;-1:-1:-1;;438:1:1;420:16;;413:27;196:250::o;451:396::-;600:2;589:9;582:21;563:4;632:6;626:13;675:6;670:2;659:9;655:18;648:34;691:79;763:6;758:2;747:9;743:18;738:2;730:6;726:15;691:79;:::i;:::-;831:2;810:15;-1:-1:-1;;806:29:1;791:45;;;;838:2;787:54;;451:396;-1:-1:-1;;451:396:1:o;852:173::-;920:20;;-1:-1:-1;;;;;969:31:1;;959:42;;949:70;;1015:1;1012;1005:12;949:70;852:173;;;:::o;1030:254::-;1098:6;1106;1159:2;1147:9;1138:7;1134:23;1130:32;1127:52;;;1175:1;1172;1165:12;1127:52;1198:29;1217:9;1198:29;:::i;:::-;1188:39;1274:2;1259:18;;;;1246:32;;-1:-1:-1;;;1030:254:1:o;1481:186::-;1540:6;1593:2;1581:9;1572:7;1568:23;1564:32;1561:52;;;1609:1;1606;1599:12;1561:52;1632:29;1651:9;1632:29;:::i;1672:328::-;1749:6;1757;1765;1818:2;1806:9;1797:7;1793:23;1789:32;1786:52;;;1834:1;1831;1824:12;1786:52;1857:29;1876:9;1857:29;:::i;:::-;1847:39;;1905:38;1939:2;1928:9;1924:18;1905:38;:::i;:::-;1895:48;;1990:2;1979:9;1975:18;1962:32;1952:42;;1672:328;;;;;:::o;2194:180::-;2253:6;2306:2;2294:9;2285:7;2281:23;2277:32;2274:52;;;2322:1;2319;2312:12;2274:52;-1:-1:-1;2345:23:1;;2194:180;-1:-1:-1;2194:180:1:o;2379:260::-;2447:6;2455;2508:2;2496:9;2487:7;2483:23;2479:32;2476:52;;;2524:1;2521;2514:12;2476:52;2547:29;2566:9;2547:29;:::i;:::-;2537:39;;2595:38;2629:2;2618:9;2614:18;2595:38;:::i;:::-;2585:48;;2379:260;;;;;:::o;2852:248::-;2920:6;2928;2981:2;2969:9;2960:7;2956:23;2952:32;2949:52;;;2997:1;2994;2987:12;2949:52;-1:-1:-1;;3020:23:1;;;3090:2;3075:18;;;3062:32;;-1:-1:-1;2852:248:1:o;3105:380::-;3184:1;3180:12;;;;3227;;;3248:61;;3302:4;3294:6;3290:17;3280:27;;3248:61;3355:2;3347:6;3344:14;3324:18;3321:38;3318:161;;3401:10;3396:3;3392:20;3389:1;3382:31;3436:4;3433:1;3426:15;3464:4;3461:1;3454:15;3318:161;;3105:380;;;:::o;4196:184::-;4266:6;4319:2;4307:9;4298:7;4294:23;4290:32;4287:52;;;4335:1;4332;4325:12;4287:52;-1:-1:-1;4358:16:1;;4196:184;-1:-1:-1;4196:184:1:o;5420:127::-;5481:10;5476:3;5472:20;5469:1;5462:31;5512:4;5509:1;5502:15;5536:4;5533:1;5526:15;5552:168;5625:9;;;5656;;5673:15;;;5667:22;;5653:37;5643:71;;5694:18;;:::i;5725:217::-;5765:1;5791;5781:132;;5835:10;5830:3;5826:20;5823:1;5816:31;5870:4;5867:1;5860:15;5898:4;5895:1;5888:15;5781:132;-1:-1:-1;5927:9:1;;5725:217::o;6226:277::-;6293:6;6346:2;6334:9;6325:7;6321:23;6317:32;6314:52;;;6362:1;6359;6352:12;6314:52;6394:9;6388:16;6447:5;6440:13;6433:21;6426:5;6423:32;6413:60;;6469:1;6466;6459:12;7590:125;7655:9;;;7676:10;;;7673:36;;;7689:18;;:::i;7720:287::-;7849:3;7887:6;7881:13;7903:66;7962:6;7957:3;7950:4;7942:6;7938:17;7903:66;:::i;:::-;7985:16;;;;;7720:287;-1:-1:-1;;7720:287:1:o
Swarm Source
ipfs://0944fca80b04c9ff872f56c46e877fa3a7a59817544a32b3b6c8f7ba604bbc1b
Net Worth in USD
Net Worth in ETH
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.