ETH Price: $2,046.21 (+5.12%)
 

Overview

Max Total Supply

328,170 REMIT

Holders

426

Transfers

-
902 ( 7,416.67%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RemitToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title RemitToken
 * @notice REMIT token with 1% transfer tax
 * @dev Total supply: 1,000,000 REMIT
 *      - 200,000 minted to deployer for LP
 *      - 800,000 mintable through Remittance contract
 */
contract RemitToken is ERC20, Ownable {
    // Tax configuration
    uint256 public constant TAX_RATE = 100; // 1% = 100 basis points
    uint256 public constant TAX_DENOMINATOR = 10000;
    
    // Tax wallet receives all transfer taxes
    address public taxWallet;
    
    // Addresses excluded from tax (e.g., contracts, LP pools)
    mapping(address => bool) public isExcludedFromTax;
    
    // Remittance contract (can mint tokens)
    address public remittanceContract;
    
    // Maximum mintable supply through Remittance (800,000 tokens)
    uint256 public constant MAX_MINTABLE = 800_000 * 10**18;
    uint256 public totalMinted;
    
    // Events
    event TaxWalletUpdated(address indexed oldWallet, address indexed newWallet);
    event ExcludedFromTax(address indexed account, bool excluded);
    event RemittanceContractSet(address indexed remittanceContract);
    event TaxCollected(address indexed from, address indexed to, uint256 taxAmount);
    
    constructor(
        address _taxWallet,
        address _initialHolder
    ) ERC20("Remit", "REMIT") Ownable(msg.sender) {
        require(_taxWallet != address(0), "Tax wallet cannot be zero");
        require(_initialHolder != address(0), "Initial holder cannot be zero");
        
        taxWallet = _taxWallet;
        
        // Mint 200,000 REMIT to initial holder for LP
        _mint(_initialHolder, 200_000 * 10**18);
        
        // Exclude deployer and tax wallet from tax
        isExcludedFromTax[_initialHolder] = true;
        isExcludedFromTax[_taxWallet] = true;
        isExcludedFromTax[address(this)] = true;
    }
    
    /**
     * @notice Set or update the Remittance contract address
     * @param _remittanceContract Address of the Remittance contract
     */
    function setRemittanceContract(address _remittanceContract) external onlyOwner {
        require(_remittanceContract != address(0), "Invalid address");
        
        // Remove tax exclusion from old contract if exists
        if (remittanceContract != address(0)) {
            isExcludedFromTax[remittanceContract] = false;
        }
        
        remittanceContract = _remittanceContract;
        isExcludedFromTax[_remittanceContract] = true;
        
        emit RemittanceContractSet(_remittanceContract);
    }
    
    /**
     * @notice Mint tokens (only callable by Remittance contract)
     * @param to Recipient address
     * @param amount Amount to mint
     */
    function mint(address to, uint256 amount) external {
        require(msg.sender == remittanceContract, "Only Remittance contract can mint");
        require(totalMinted + amount <= MAX_MINTABLE, "Exceeds max mintable supply");
        
        totalMinted += amount;
        _mint(to, amount);
    }
    
    /**
     * @notice Update tax wallet address
     * @param _newTaxWallet New tax wallet address
     */
    function setTaxWallet(address _newTaxWallet) external onlyOwner {
        require(_newTaxWallet != address(0), "Tax wallet cannot be zero");
        
        address oldWallet = taxWallet;
        isExcludedFromTax[oldWallet] = false;
        
        taxWallet = _newTaxWallet;
        isExcludedFromTax[_newTaxWallet] = true;
        
        emit TaxWalletUpdated(oldWallet, _newTaxWallet);
    }
    
    /**
     * @notice Exclude or include an address from tax
     * @param account Address to update
     * @param excluded Whether to exclude from tax
     */
    function setExcludedFromTax(address account, bool excluded) external onlyOwner {
        isExcludedFromTax[account] = excluded;
        emit ExcludedFromTax(account, excluded);
    }
    
    /**
     * @notice Override transfer to apply tax
     */
    function _update(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        // Skip tax for minting, burning, or excluded addresses
        if (from == address(0) || to == address(0) || 
            isExcludedFromTax[from] || isExcludedFromTax[to]) {
            super._update(from, to, amount);
            return;
        }
        
        // Calculate 1% tax
        uint256 taxAmount = (amount * TAX_RATE) / TAX_DENOMINATOR;
        uint256 transferAmount = amount - taxAmount;
        
        // Transfer tax to tax wallet
        if (taxAmount > 0) {
            super._update(from, taxWallet, taxAmount);
            emit TaxCollected(from, to, taxAmount);
        }
        
        // Transfer remaining amount to recipient
        super._update(from, to, transferAmount);
    }
    
    /**
     * @notice Get remaining mintable amount
     */
    function remainingMintable() external view returns (uint256) {
        return MAX_MINTABLE - totalMinted;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.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);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

/**
 * @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 "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

/**
 * @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);
}

// 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "viaIR": true,
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"},{"internalType":"address","name":"_initialHolder","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromTax","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":"remittanceContract","type":"address"}],"name":"RemittanceContractSet","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":"taxAmount","type":"uint256"}],"name":"TaxCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"TaxWalletUpdated","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":"MAX_MINTABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_RATE","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"remainingMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remittanceContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_remittanceContract","type":"address"}],"name":"setRemittanceContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTaxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080346200050b576200142e90601f19906001600160401b0390601f388590038181018516830190848211848310176200040657808491604098899485528339810103126200050b57620000538262000530565b9362000063602080940162000530565b946200006e62000510565b946005938487526414995b5a5d60da1b868801526200008c62000510565b9085825264149153525560da1b878301528751918383116200040657600392835460019a8b82811c9216801562000500575b8b831014620004ea57818584931162000496575b508a9085831160011462000428576000926200041c575b505060001982861b1c1916908a1b1783555b8051938411620004065760049586548a81811c91168015620003fb575b8a821014620003e6579081848796959493116200038c575b508992851160011462000324575060009362000318575b505082881b92600019911b1c19161782555b331562000301578254336001600160a01b031980831682179095558851976001600160a01b0393909284929083167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a316968715620002c05750169182156200027d5785906006541617600655600254692a5a058fc295ed000000918282018092116200026857509160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858394600797966002558484528382528a84208181540190558a51908152a360005252826000209160ff1992828482541617905560005282600020818382541617905530600052826000209182541617905551610ee89081620005468239f35b601190634e487b7160e01b6000525260246000fd5b865162461bcd60e51b8152808301859052601d60248201527f496e697469616c20686f6c6465722063616e6e6f74206265207a65726f0000006044820152606490fd5b62461bcd60e51b8152838101869052601960248201527f5461782077616c6c65742063616e6e6f74206265207a65726f000000000000006044820152606490fd5b8651631e4fbdf760e01b8152600081840152602490fd5b01519150388062000147565b8a9593929193169287600052896000209360005b8b8282106200037557505085116200035a575b50505050811b01825562000159565b01519060f884600019921b161c19169055388080806200034b565b8385015187558d9890960195938401930162000338565b9091929394508760005289600020848088018b1c8201928c8910620003dc575b918d9189989796959493018c1c01915b828110620003cc57505062000130565b600081558897508d9101620003bc565b92508192620003ac565b602288634e487b7160e01b6000525260246000fd5b90607f169062000118565b634e487b7160e01b600052604160045260246000fd5b015190503880620000e9565b90898d941691876000528c600020928d6000905b8282106200047557505084116200045c575b505050811b018355620000fb565b015160001983881b60f8161c191690553880806200044e565b91929395968291958786015181550195019301908e95949392918e6200043c565b909150856000528a600020858085018c1c8201928d8610620004e0575b918e9186959493018d1c01915b828110620004d0575050620000d2565b600081558594508e9101620004c0565b92508192620004b3565b634e487b7160e01b600052602260045260246000fd5b91607f1691620000be565b600080fd5b60408051919082016001600160401b038111838210176200040657604052565b51906001600160a01b03821682036200050b5756fe60806040908082526004918236101561001757600080fd5b600091823560e01c90816306fdde0314610ad557508063095ea7b314610a2b57806318160ddd14610a0d57806323b872dd146109195780632dc0562d146108f1578063313ce567146108d65780633f879faf146108b25780633f935e95146107d557806340c10f191461067d57806370a0823114610647578063715018a6146105e757806383f170be146105cc5780638da5cb5b146105a457806395d89b4114610486578063a2309ff814610468578063a51c9ace1461044c578063a9059cbb1461041c578063c2ed286b1461039b578063c41db40014610373578063cb4ca63114610336578063dd62ed3e146102ee578063ea414b281461020b578063f2fde38b146101775763f76e95e51461012d57600080fd5b346101735781600319360112610173576009549169a968163f0a57b4000000928303928311610160576020838351908152f35b634e487b7160e01b815260118452602490fd5b5080fd5b50823461020757602036600319011261020757610192610bf6565b9061019b610c27565b6001600160a01b039182169283156101f1575050600554826bffffffffffffffffffffffff60a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b51631e4fbdf760e01b8152908101849052602490fd5b8280fd5b5082903461020757602036600319011261020757610227610bf6565b61022f610c27565b6001600160a01b039081169283156102ab57506006541690818452600760205260018185209160ff1992838154169055846bffffffffffffffffffffffff60a01b60065416176006558486528520918254161790557f849a2ad8ad386f1e9897e9e0a62d16771c675e4740986a16fb31bd8e1dde9c978380a380f35b606490602084519162461bcd60e51b8352820152601960248201527f5461782077616c6c65742063616e6e6f74206265207a65726f000000000000006044820152fd5b50346101735780600319360112610173578060209261030b610bf6565b610313610c11565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b50346101735760203660031901126101735760209160ff9082906001600160a01b03610360610bf6565b1681526007855220541690519015158152f35b503461017357816003193601126101735760085490516001600160a01b039091168152602090f35b50346101735780600319360112610173576103b4610bf6565b60243590811515809203610418577fea5814d1cf99e5f6aee98da410ea4adcdbe5ded97855de3b25144b0898d0be4a916020916103ef610c27565b6001600160a01b031680865260078352848620805460ff191660ff84161790559351908152a280f35b8380fd5b503461017357806003193601126101735760209061044561043b610bf6565b6024359033610c53565b5160018152f35b5034610173578160031936011261017357602090516127108152f35b50346101735781600319360112610173576020906009549051908152f35b5034610173578160031936011261017357805190828454600181811c9080831692831561059a575b60209384841081146105875783885290811561056b5750600114610516575b505050829003601f01601f191682019267ffffffffffffffff84118385101761050357508291826104ff925282610bad565b0390f35b634e487b7160e01b815260418552602490fd5b8787529192508591837f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b83851061055757505050508301013880806104cd565b805488860183015293019284908201610541565b60ff1916878501525050151560051b84010190503880806104cd565b634e487b7160e01b895260228a52602489fd5b91607f16916104ae565b503461017357816003193601126101735760055490516001600160a01b039091168152602090f35b50346101735781600319360112610173576020905160648152f35b8234610644578060031936011261064457610600610c27565b600580546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b80fd5b50346101735760203660031901126101735760209181906001600160a01b0361066e610bf6565b16815280845220549051908152f35b50829034610207578060031936011261020757610698610bf6565b60085460243592916001600160a01b0391821633036107885760095469a968163f0a57b40000006106c98683610ca9565b1161074557846106d891610ca9565b6009551692831561073057506020827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef926107168795600254610ca9565b60025585855284835280852082815401905551908152a380f35b84602492519163ec442f0560e01b8352820152fd5b835162461bcd60e51b8152602081880152601b60248201527f45786365656473206d6178206d696e7461626c6520737570706c7900000000006044820152606490fd5b825162461bcd60e51b8152602081870152602160248201527f4f6e6c792052656d697474616e636520636f6e74726163742063616e206d696e6044820152601d60fa1b6064820152608490fd5b50829034610207576020366003190112610207576107f1610bf6565b6107f9610c27565b6001600160a01b0390811692831561087d57506008541680610865575b50600880546001600160a01b0319168317905581835260076020528220805460ff191660011790557ff912c5d9133dd7a73e7a31bf3d55f6edfb19835a8b3978225964bf8d92998a448280a280f35b83526007602052808320805460ff1916905583610816565b606490602084519162461bcd60e51b8352820152600f60248201526e496e76616c6964206164647265737360881b6044820152fd5b50346101735781600319360112610173576020905169a968163f0a57b40000008152f35b50346101735781600319360112610173576020905160128152f35b503461017357816003193601126101735760065490516001600160a01b039091168152602090f35b5091903461064457606036600319011261064457610935610bf6565b61093d610c11565b916044359360018060a01b038316808352600160205286832033845260205286832054916000198310610979575b602088610445898989610c53565b8683106109e15781156109ca5733156109b3575082526001602090815286832033845281529186902090859003905582906104453861096b565b8751634a1406b160e11b8152908101849052602490fd5b875163e602df0560e01b8152908101849052602490fd5b8751637dc7a0d960e11b8152339181019182526020820193909352604081018790528291506060010390fd5b50346101735781600319360112610173576020906002549051908152f35b508234610207578160031936011261020757610a45610bf6565b602435903315610abe576001600160a01b0316918215610aa757508083602095338152600187528181208582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8351634a1406b160e11b8152908101859052602490fd5b835163e602df0560e01b8152808401869052602490fd5b9190503461020757826003193601126102075782600354600181811c90808316928315610ba3575b60209384841081146105875783885290811561056b5750600114610b4d57505050829003601f01601f191682019267ffffffffffffffff84118385101761050357508291826104ff925282610bad565b600387529192508591837fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b838510610b8f57505050508301013880806104cd565b805488860183015293019284908201610b79565b91607f1691610afd565b6020808252825181830181905290939260005b828110610be257505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610bc0565b600435906001600160a01b0382168203610c0c57565b600080fd5b602435906001600160a01b0382168203610c0c57565b6005546001600160a01b03163303610c3b57565b60405163118cdaa760e01b8152336004820152602490fd5b91906001600160a01b0380841615610c9057811615610c7757610c7592610ccc565b565b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b91908201809211610cb657565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0392919083811680158015610dab575b8015610d93575b8015610d79575b610d6e576064840284810460641485151715610cb657612710900490818503948511610cb657610c759582610d29575b505050610db5565b602081610d5c857f5d37fd68fe66745a199f8c603e00ae02183f4aabb8ec0089589b0b40c4ead5e1946006541688610db5565b604051948552861693a3388080610d21565b50610c759350610db5565b50848316600052600760205260ff60406000205416610cf1565b5080600052600760205260ff60406000205416610cea565b5084831615610ce3565b6001600160a01b0380821692909183610e2f57507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91602091610dfa86600254610ca9565b6002555b169384610e175780600254036002555b604051908152a3565b84600052600082526040600020818154019055610e0e565b60009084825281602052604082205490868210610e8057509181604087602095887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef98965283875203912055610dfe565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101869052606490fdfea26469706673582212204c3e0942b9db555c2e4986335f1ac23e0fff8b7951cdf07a9dcbca33b90bdce164736f6c634300081400330000000000000000000000002cbea516428816b70ea0a4f8eebdfd91c822a5b100000000000000000000000084d2e3834d5deb68c07d7cda27fa17e9bf34ca24

Deployed Bytecode

0x60806040908082526004918236101561001757600080fd5b600091823560e01c90816306fdde0314610ad557508063095ea7b314610a2b57806318160ddd14610a0d57806323b872dd146109195780632dc0562d146108f1578063313ce567146108d65780633f879faf146108b25780633f935e95146107d557806340c10f191461067d57806370a0823114610647578063715018a6146105e757806383f170be146105cc5780638da5cb5b146105a457806395d89b4114610486578063a2309ff814610468578063a51c9ace1461044c578063a9059cbb1461041c578063c2ed286b1461039b578063c41db40014610373578063cb4ca63114610336578063dd62ed3e146102ee578063ea414b281461020b578063f2fde38b146101775763f76e95e51461012d57600080fd5b346101735781600319360112610173576009549169a968163f0a57b4000000928303928311610160576020838351908152f35b634e487b7160e01b815260118452602490fd5b5080fd5b50823461020757602036600319011261020757610192610bf6565b9061019b610c27565b6001600160a01b039182169283156101f1575050600554826bffffffffffffffffffffffff60a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b51631e4fbdf760e01b8152908101849052602490fd5b8280fd5b5082903461020757602036600319011261020757610227610bf6565b61022f610c27565b6001600160a01b039081169283156102ab57506006541690818452600760205260018185209160ff1992838154169055846bffffffffffffffffffffffff60a01b60065416176006558486528520918254161790557f849a2ad8ad386f1e9897e9e0a62d16771c675e4740986a16fb31bd8e1dde9c978380a380f35b606490602084519162461bcd60e51b8352820152601960248201527f5461782077616c6c65742063616e6e6f74206265207a65726f000000000000006044820152fd5b50346101735780600319360112610173578060209261030b610bf6565b610313610c11565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b50346101735760203660031901126101735760209160ff9082906001600160a01b03610360610bf6565b1681526007855220541690519015158152f35b503461017357816003193601126101735760085490516001600160a01b039091168152602090f35b50346101735780600319360112610173576103b4610bf6565b60243590811515809203610418577fea5814d1cf99e5f6aee98da410ea4adcdbe5ded97855de3b25144b0898d0be4a916020916103ef610c27565b6001600160a01b031680865260078352848620805460ff191660ff84161790559351908152a280f35b8380fd5b503461017357806003193601126101735760209061044561043b610bf6565b6024359033610c53565b5160018152f35b5034610173578160031936011261017357602090516127108152f35b50346101735781600319360112610173576020906009549051908152f35b5034610173578160031936011261017357805190828454600181811c9080831692831561059a575b60209384841081146105875783885290811561056b5750600114610516575b505050829003601f01601f191682019267ffffffffffffffff84118385101761050357508291826104ff925282610bad565b0390f35b634e487b7160e01b815260418552602490fd5b8787529192508591837f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b83851061055757505050508301013880806104cd565b805488860183015293019284908201610541565b60ff1916878501525050151560051b84010190503880806104cd565b634e487b7160e01b895260228a52602489fd5b91607f16916104ae565b503461017357816003193601126101735760055490516001600160a01b039091168152602090f35b50346101735781600319360112610173576020905160648152f35b8234610644578060031936011261064457610600610c27565b600580546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b80fd5b50346101735760203660031901126101735760209181906001600160a01b0361066e610bf6565b16815280845220549051908152f35b50829034610207578060031936011261020757610698610bf6565b60085460243592916001600160a01b0391821633036107885760095469a968163f0a57b40000006106c98683610ca9565b1161074557846106d891610ca9565b6009551692831561073057506020827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef926107168795600254610ca9565b60025585855284835280852082815401905551908152a380f35b84602492519163ec442f0560e01b8352820152fd5b835162461bcd60e51b8152602081880152601b60248201527f45786365656473206d6178206d696e7461626c6520737570706c7900000000006044820152606490fd5b825162461bcd60e51b8152602081870152602160248201527f4f6e6c792052656d697474616e636520636f6e74726163742063616e206d696e6044820152601d60fa1b6064820152608490fd5b50829034610207576020366003190112610207576107f1610bf6565b6107f9610c27565b6001600160a01b0390811692831561087d57506008541680610865575b50600880546001600160a01b0319168317905581835260076020528220805460ff191660011790557ff912c5d9133dd7a73e7a31bf3d55f6edfb19835a8b3978225964bf8d92998a448280a280f35b83526007602052808320805460ff1916905583610816565b606490602084519162461bcd60e51b8352820152600f60248201526e496e76616c6964206164647265737360881b6044820152fd5b50346101735781600319360112610173576020905169a968163f0a57b40000008152f35b50346101735781600319360112610173576020905160128152f35b503461017357816003193601126101735760065490516001600160a01b039091168152602090f35b5091903461064457606036600319011261064457610935610bf6565b61093d610c11565b916044359360018060a01b038316808352600160205286832033845260205286832054916000198310610979575b602088610445898989610c53565b8683106109e15781156109ca5733156109b3575082526001602090815286832033845281529186902090859003905582906104453861096b565b8751634a1406b160e11b8152908101849052602490fd5b875163e602df0560e01b8152908101849052602490fd5b8751637dc7a0d960e11b8152339181019182526020820193909352604081018790528291506060010390fd5b50346101735781600319360112610173576020906002549051908152f35b508234610207578160031936011261020757610a45610bf6565b602435903315610abe576001600160a01b0316918215610aa757508083602095338152600187528181208582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8351634a1406b160e11b8152908101859052602490fd5b835163e602df0560e01b8152808401869052602490fd5b9190503461020757826003193601126102075782600354600181811c90808316928315610ba3575b60209384841081146105875783885290811561056b5750600114610b4d57505050829003601f01601f191682019267ffffffffffffffff84118385101761050357508291826104ff925282610bad565b600387529192508591837fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b838510610b8f57505050508301013880806104cd565b805488860183015293019284908201610b79565b91607f1691610afd565b6020808252825181830181905290939260005b828110610be257505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610bc0565b600435906001600160a01b0382168203610c0c57565b600080fd5b602435906001600160a01b0382168203610c0c57565b6005546001600160a01b03163303610c3b57565b60405163118cdaa760e01b8152336004820152602490fd5b91906001600160a01b0380841615610c9057811615610c7757610c7592610ccc565b565b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b91908201809211610cb657565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0392919083811680158015610dab575b8015610d93575b8015610d79575b610d6e576064840284810460641485151715610cb657612710900490818503948511610cb657610c759582610d29575b505050610db5565b602081610d5c857f5d37fd68fe66745a199f8c603e00ae02183f4aabb8ec0089589b0b40c4ead5e1946006541688610db5565b604051948552861693a3388080610d21565b50610c759350610db5565b50848316600052600760205260ff60406000205416610cf1565b5080600052600760205260ff60406000205416610cea565b5084831615610ce3565b6001600160a01b0380821692909183610e2f57507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91602091610dfa86600254610ca9565b6002555b169384610e175780600254036002555b604051908152a3565b84600052600082526040600020818154019055610e0e565b60009084825281602052604082205490868210610e8057509181604087602095887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef98965283875203912055610dfe565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101869052606490fdfea26469706673582212204c3e0942b9db555c2e4986335f1ac23e0fff8b7951cdf07a9dcbca33b90bdce164736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000002cbea516428816b70ea0a4f8eebdfd91c822a5b100000000000000000000000084d2e3834d5deb68c07d7cda27fa17e9bf34ca24

-----Decoded View---------------
Arg [0] : _taxWallet (address): 0x2CBea516428816b70eA0a4f8eeBdFd91C822a5B1
Arg [1] : _initialHolder (address): 0x84d2e3834D5Deb68C07D7CdA27fa17e9bF34Ca24

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000002cbea516428816b70ea0a4f8eebdfd91c822a5b1
Arg [1] : 00000000000000000000000084d2e3834d5deb68c07d7cda27fa17e9bf34ca24


Deployed Bytecode Sourcemap

378:4722:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5080:11;378:4722;973:16;;378:4722;;;;;;;;;;;;;;;;;-1:-1:-1;;;378:4722:6;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;378:4722:6;;;;;;:::i;:::-;1500:62:0;;;:::i;:::-;-1:-1:-1;;;;;378:4722:6;;;;2627:22:0;;2623:91;;378:4722:6;;3004:6:0;378:4722:6;;;;;;;;3004:6:0;378:4722:6;;3052:40:0;;;;378:4722:6;;2623:91:0;378:4722:6;-1:-1:-1;;;2672:31:0;;;;;378:4722:6;;;;;2672:31:0;378:4722:6;;;;;;;;;;;;;-1:-1:-1;;378:4722:6;;;;;;:::i;:::-;1500:62:0;;:::i;:::-;-1:-1:-1;;;;;378:4722:6;;;;3336:27;;378:4722;;;3432:9;378:4722;;;;;;3451:17;378:4722;;;;;;;;;;;;;;;;;;;;3432:9;378:4722;;;3432:9;378:4722;;;;;;;;;;;;;3604:42;;;;378:4722;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;378:4722:6;;;;;;;;;;-1:-1:-1;;;;;378:4722:6;;:::i;:::-;;;;718:49;378:4722;;;;;;;;;;;;;;;;;;;;;;;;;;823:33;378:4722;;;-1:-1:-1;;;;;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;3965:34;1500:62:0;378:4722:6;1500:62:0;;;:::i;:::-;-1:-1:-1;;;;;378:4722:6;;;;3913:17;378:4722;;;;;;;-1:-1:-1;;378:4722:6;;;;;;;;;;;;3965:34;378:4722;;;;;;;;;;;;;;;;;;;;;3388:5:2;378:4722:6;;:::i;:::-;;;735:10:5;;3388:5:2;:::i;:::-;378:4722:6;;;;;;;;;;;;;;;;;;;;;558:5;378:4722;;;;;;;;;;;;;;;;;;995:26;378:4722;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;378:4722:6;;;;;-1:-1:-1;;378:4722:6;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;378:4722:6;;;;;;;;;;;;;;-1:-1:-1;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;378:4722:6;;;;;-1:-1:-1;;378:4722:6;;;;;;;;-1:-1:-1;378:4722:6;;;;;;-1:-1:-1;;;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;1710:6:0;378:4722:6;;;-1:-1:-1;;;;;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;;482:3;378:4722;;;;;;;;;;;;;;;;1500:62:0;;:::i;:::-;3004:6;378:4722:6;;-1:-1:-1;;;;;;378:4722:6;;;;;;;-1:-1:-1;;;;;378:4722:6;3052:40:0;378:4722:6;;3052:40:0;378:4722:6;;;;;;;;;;;;-1:-1:-1;;378:4722:6;;;;;;;;-1:-1:-1;;;;;378:4722:6;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2920:18;378:4722;;;;;-1:-1:-1;;;;;378:4722:6;;;2906:10;:32;378:4722;;2994:11;378:4722;973:16;2994:20;;;;:::i;:::-;:36;378:4722;;3081:21;;;;:::i;:::-;2994:11;378:4722;;7432:21:2;;;7428:91;;378:4722:6;;;6987:25:2;378:4722:6;6137:21:2;378:4722:6;;6137:21:2;378:4722:6;6137:21:2;:::i;:::-;;378:4722:6;;;;;;;;;;;;;;;;;;;;6987:25:2;378:4722:6;;7428:91:2;378:4722:6;;;;7476:32:2;;;;;;;;378:4722:6;7476:32:2;378:4722:6;;;-1:-1:-1;;;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;378:4722:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;378:4722:6;;;;;;;;;;;;;;;;-1:-1:-1;;378:4722:6;;;;;;:::i;:::-;1500:62:0;;:::i;:::-;-1:-1:-1;;;;;378:4722:6;;;;2248:33;;378:4722;;;2384:18;378:4722;;2384:32;2380:108;;378:4722;-1:-1:-1;2384:18:6;378:4722;;-1:-1:-1;;;;;;378:4722:6;;;;;;;;2556:17;378:4722;;;;;;-1:-1:-1;;378:4722:6;-1:-1:-1;378:4722:6;;;2625:42;378:4722;;2625:42;378:4722;;2380:108;378:4722;;2432:17;378:4722;;;;;;;-1:-1:-1;;378:4722:6;;;2380:108;;;378:4722;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;378:4722:6;;;;;;;;;;;;;;;;;;;;;973:16;378:4722;;;;;;;;;;;;;;;;;;;2761:2:2;378:4722:6;;;;;;;;;;;;;;;;620:24;378:4722;;;-1:-1:-1;;;;;378:4722:6;;;;;;;;;;;;;;;;;-1:-1:-1;;378:4722:6;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;735:10:5;378:4722:6;;;;;;;;10503:17:2;;;10484:36;;10480:309;;378:4722:6;;4890:5:2;;;;;;:::i;10480:309::-;10540:24;;;10536:130;;9717:19;;9713:89;;735:10:5;9815:21:2;9811:90;;-1:-1:-1;378:4722:6;;;;;;;;;;735:10:5;378:4722:6;;;;;;;;;;;;;;;;4890:5:2;10480:309;;;9811:90;378:4722:6;;-1:-1:-1;;;9859:31:2;;;;;378:4722:6;;;;;9859:31:2;9713:89;378:4722:6;;-1:-1:-1;;;9759:32:2;;;;;378:4722:6;;;;;9759:32:2;10536:130;378:4722:6;;-1:-1:-1;;;10591:60:2;;735:10:5;10591:60:2;;;378:4722:6;;;;;;;;;;;;;;;;;;-1:-1:-1;378:4722:6;;10591:60:2;;;378:4722:6;;;;;;;;;;;;;;;2881:12:2;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;735:10:5;;9717:19:2;9713:89;;-1:-1:-1;;;;;378:4722:6;;9815:21:2;;9811:90;;735:10:5;;;378:4722:6;735:10:5;;378:4722:6;;;;;;;;;;;;;;;;;;;;9989:31:2;735:10:5;;9989:31:2;;378:4722:6;;;;;9811:90:2;378:4722:6;;-1:-1:-1;;;9859:31:2;;;;;378:4722:6;;;;;9859:31:2;9713:89;378:4722:6;;-1:-1:-1;;;9759:32:2;;;;;378:4722:6;;;;;9759:32:2;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;378:4722:6;;;;;-1:-1:-1;;378:4722:6;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;378:4722:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;378:4722:6;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;;;;378:4722:6;;;;;;:::o;1796:162:0:-;1710:6;378:4722:6;-1:-1:-1;;;;;378:4722:6;735:10:5;1855:23:0;1851:101;;1796:162::o;1851:101::-;378:4722:6;;-1:-1:-1;;;1901:40:0;;735:10:5;1901:40:0;;;378:4722:6;;;1901:40:0;5297:300:2;;;-1:-1:-1;;;;;378:4722:6;;;5380:18:2;5376:86;;378:4722:6;;5475:16:2;5471:86;;5584:5;;;:::i;:::-;5297:300::o;5471:86::-;378:4722:6;;-1:-1:-1;;;5514:32:2;;5396:1;5514:32;;;378:4722:6;;;5514:32:2;5376:86;378:4722:6;;-1:-1:-1;;;5421:30:2;;5396:1;5421:30;;;378:4722:6;;;5421:30:2;378:4722:6;;;;;;;;;;:::o;:::-;;;;;;;;;;;;4078:838;-1:-1:-1;;;;;378:4722:6;4078:838;;378:4722;;;4271:18;;:38;;;;4078:838;4271:78;;;;4078:838;4271:103;;;;4078:838;4267:185;;482:3;378:4722;;;;;482:3;378:4722;;;;;;;558:5;378:4722;;;;;;;;;;;4894:14;4669:13;;4665:137;;4078:838;4894:14;;;;:::i;4665:137::-;378:4722;;4729:9;378:4722;4758:33;378:4722;4718:9;378:4722;;4729:9;;:::i;:::-;378:4722;;;;;;;4758:33;;4665:137;;;;;4267:185;4414:6;;;;;:::i;4271:103::-;378:4722;;;;4287:1;378:4722;4353:17;378:4722;;;;4287:1;378:4722;;;4271:103;;:78;378:4722;;4287:1;378:4722;4326:17;378:4722;;;;4287:1;378:4722;;;4271:78;;:38;378:4722;;;;4293:16;4271:38;;5912:1107:2;-1:-1:-1;;;;;378:4722:6;;;;;;6001:18:2;378:4722:6;;;6987:25:2;378:4722:6;;;6137:21:2;378:4722:6;6137:21:2;378:4722:6;6137:21:2;:::i;:::-;;378:4722:6;5997:540:2;378:4722:6;;6551:16:2;378:4722:6;;;6714:21:2;378:4722:6;;6714:21:2;378:4722:6;6547:425:2;378:4722:6;;;;;6987:25:2;5912:1107::o;6547:425::-;378:4722:6;6017:1:2;378:4722:6;6017:1:2;378:4722:6;;;6017:1:2;378:4722:6;;;;;;;6547:425:2;;5997:540;6017:1;378:4722:6;;;;;;;;;;;6244:19:2;;;;6240:115;;378:4722:6;;;;;;;;6987:25:2;378:4722:6;;;;;;;;;;5997:540:2;;6240:115;378:4722:6;;-1:-1:-1;;;6290:50:2;;-1:-1:-1;;;;;378:4722:6;;;;6290:50:2;;;378:4722:6;;;;;;;;;;;;;;;;10591:60:2

Swarm Source

ipfs://4c3e0942b9db555c2e4986335f1ac23e0fff8b7951cdf07a9dcbca33b90bdce1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.