false
true
0

Contract Address Details

0x04b37fa64a8d73a37D636608e5F6F8E5ce1541Aa

Token
SunPLS (SUNPLS)
Creator
0x062449–5ac4c9 at 0x2eabf0–dc8c06
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
Fetching transactions...
Transfers
Fetching transfers...
Gas Used
Fetching gas used...
Last Balance Update
26031029
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
SunPLS




Optimization enabled
true
Compiler version
v0.8.20+commit.a1b79de6




Optimization runs
200
EVM Version
shanghai




Verified at
2026-03-11T22:10:38.803512Z

SunPulse_Token.sol

// SPDX-License-Identifier: CC-BY-NC-SA-4.0
pragma solidity ^0.8.20;

/**
 * ╔══════════════════════════════════════════════════════════════════════╗
 * ║                     SunPLS Token v1.3 — ELITE TEAM6                  ║
 * ║                     Autonomous Stable Asset                          ║
 * ║                                                                      ║
 * ║   • Mint/burn controlled exclusively by Vault (post-latch)           ║
 * ║   • Vault address set via one-time latch after Vault deploys         ║
 * ║   • 1000 SunPLS minted to deployer at construction for LP seed       ║
 * ║   • No deployer powers after setVault() is called                    ║
 * ║   • Immutable after latch — forever                                  ║
 * ║                                                                      ║
 * ║   CHANGELOG v1.3:                                                    ║
 * ║   • Replaced bootstrap() function with constructor mint.             ║
 * ║     1000 SunPLS minted directly to deployer at deploy time.          ║
 * ║     Eliminates deployer-callable mint function visible to scanners   ║
 * ║     and token analytics platforms (Dexscreener etc).                 ║
 * ║     Removed: bootstrap(), bootstrapUsed, MAX_BOOTSTRAP_SUPPLY,       ║
 * ║     BootstrapMint event. Constructor mint is simpler, cleaner,       ║
 * ║     and produces identical on-chain outcome with zero scanner risk.  ║
 * ║                                                                      ║
 * ║   CHANGELOG v1.2:                                                    ║
 * ║   • Added bootstrap(address to, uint256 amount) — now removed.       ║
 * ║                                                                      ║
 * ║   CHANGELOG v1.1:                                                    ║
 * ║   • Removed _vault constructor parameter. vault is now set via       ║
 * ║     setVault(address) — a one-time latch callable only by the        ║
 * ║     deployer. After setVault() is called, vaultSet latches true      ║
 * ║     permanently and the function reverts for all future callers      ║
 * ║     including the deployer. Eliminates Token <-> Vault circular      ║
 * ║     deployment dependency without requiring nonce prediction.        ║
 * ║   • mint() and burn() require vaultSet before executing.             ║
 * ║   • deployer stored as immutable — set once at construction.         ║
 * ║   • VaultSet(address vault) event emitted on latch.                  ║
 * ║   • Post-latch security identical to v1.0 immutable design.          ║
 * ║                                                                      ║
 * ║   DEPLOYMENT SEQUENCE:                                               ║
 * ║   Step 1:  Deploy Token        (1000 SUNPLS minted to deployer)      ║
 * ║   Step 2:  Create PulseX SunPLS/WPLS pair + seed with deploy mint    ║
 * ║   Step 3:  Deploy Oracle       (pair, wpls, token)                   ║
 * ║   Step 4:  Deploy Controller   (oracle, initialR, epoch, k, alpha)   ║
 * ║   Step 5:  Deploy Vault v1.3   (wpls, token, oracle, controller)     ║
 * ║   Step 6:  token.setVault(vault)       <- latches forever            ║
 * ║   Step 7:  controller.setVault(vault)  <- latches forever            ║
 * ║   Step 8:  depositAndAutoMintPLS() to mint real SunPLS via vault     ║
 * ║   Step 9:  Deepen PulseX pool with vault-minted SunPLS               ║
 * ║                                                                      ║
 * ║   Dev:     ELITE TEAM6                                               ║
 * ║   Website: https://www.sundaitoken.com                               ║
 * ║   License: CC-BY-NC-SA-4.0 | Immutable After Launch                  ║
 * ╚══════════════════════════════════════════════════════════════════════╝
 */

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

contract SunPLS is ERC20 {

    // ─────────────────────────────────────────────────────────────────────
    // Deployer — immutable, used only to gate setVault()
    // ─────────────────────────────────────────────────────────────────────

    /// @notice Deployer address. Only power: call setVault() once.
    ///         Zero ongoing authority after setVault() is called.
    address private immutable deployer;

    // ─────────────────────────────────────────────────────────────────────
    // Vault — one-time latch
    // ─────────────────────────────────────────────────────────────────────

    /// @notice The only address authorized to mint or burn (post-latch).
    ///         address(0) until setVault() is called.
    ///         Immutable in practice — cannot be changed after latch closes.
    address public vault;

    /// @notice True once setVault() has been called. Permanently latched.
    bool public vaultSet;

    /// @notice Total SunPLS minted to deployer at construction for LP seed.
    uint256 public constant SEED_SUPPLY = 1000 * 1e18;

    // ─────────────────────────────────────────────────────────────────────
    // Events
    // ─────────────────────────────────────────────────────────────────────

    /// @notice Emitted once when vault address is permanently set.
    event VaultSet(address indexed vault);

    event Mint(address indexed to, uint256 amount);
    event Burn(address indexed from, uint256 amount);

    // ─────────────────────────────────────────────────────────────────────
    // Constructor
    // ─────────────────────────────────────────────────────────────────────

    /**
     * @notice Deploy SunPLS token and mint 1000 SUNPLS to deployer.
     *
     * @dev    The 1000 SUNPLS seed supply exists solely to allow the deployer
     *         to create and seed the PulseX SunPLS/WPLS pair before the oracle
     *         is deployed. The oracle constructor requires both reserves > 0.
     *
     *         No mint function is callable by the deployer after construction.
     *         All future minting is exclusively vault-controlled post-latch.
     *
     *         The seed supply is tiny relative to vault-minted supply and
     *         will be diluted immediately as real CDP positions are opened.
     */
    constructor() ERC20("SunPLS", "SUNPLS") {
        deployer = msg.sender;
        _mint(msg.sender, SEED_SUPPLY);
    }

    // ─────────────────────────────────────────────────────────────────────
    // One-time vault latch
    // ─────────────────────────────────────────────────────────────────────

    /**
     * @notice Set the vault address. Callable exactly once by the deployer.
     *
     * @dev Called after Vault is deployed (Step 6 of deployment sequence).
     *      Once called, vaultSet latches true permanently. The deployer
     *      has no further authority over this contract.
     *
     * @param _vault Address of the deployed SunPLSVault contract.
     */
    function setVault(address _vault) external {
        require(msg.sender == deployer, "Only deployer");
        require(!vaultSet,              "Vault already set");
        require(_vault != address(0),   "Zero vault address");

        vault    = _vault;
        vaultSet = true;

        emit VaultSet(_vault);
    }

    // ─────────────────────────────────────────────────────────────────────
    // Mint / Burn — vault only, requires latch closed
    // ─────────────────────────────────────────────────────────────────────

    /**
     * @notice Mint SunPLS to an address.
     * @dev    Only callable by the vault. No exceptions.
     *         Requires vaultSet — no minting before vault is linked.
     *         Called when a user opens or increases a CDP position.
     */
    function mint(address to, uint256 amount) external {
        require(vaultSet,            "Vault not set");
        require(msg.sender == vault, "Only vault");
        _mint(to, amount);
        emit Mint(to, amount);
    }

    /**
     * @notice Burn SunPLS from an address.
     * @dev    Only callable by the vault. No exceptions.
     *         Requires vaultSet — no burning before vault is linked.
     *         Called on repay, liquidation, or redemption.
     *         Caller must hold sufficient balance — ERC20 enforces this.
     */
    function burn(address from, uint256 amount) external {
        require(vaultSet,            "Vault not set");
        require(msg.sender == vault, "Only vault");
        _burn(from, amount);
        emit Burn(from, amount);
    }
}
        

/IERC20.sol

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

/extensions/IERC20Metadata.sol

// 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.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}
          

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.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);
}
          

/ERC20.sol

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

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"shanghai","compilationTarget":{"SunPulse_Token.sol":"SunPLS"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"ERC20InsufficientAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"allowance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InsufficientBalance","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InvalidApprover","inputs":[{"type":"address","name":"approver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidReceiver","inputs":[{"type":"address","name":"receiver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSender","inputs":[{"type":"address","name":"sender","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSpender","inputs":[{"type":"address","name":"spender","internalType":"address"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Burn","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Mint","inputs":[{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"VaultSet","inputs":[{"type":"address","name":"vault","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"SEED_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setVault","inputs":[{"type":"address","name":"_vault","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"vault","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"vaultSet","inputs":[]}]
              

Contract Creation Code

0x60a060405234801562000010575f80fd5b506040518060400160405280600681526020016553756e504c5360d01b8152506040518060400160405280600681526020016553554e504c5360d01b8152508160039081620000609190620002a2565b5060046200006f8282620002a2565b50503360808190526200008d9150683635c9adc5dea0000062000093565b62000390565b6001600160a01b038216620000c25760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b620000cf5f8383620000d3565b5050565b6001600160a01b03831662000101578060025f828254620000f591906200036a565b90915550620001739050565b6001600160a01b0383165f9081526020819052604090205481811015620001555760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000b9565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166200019157600280548290039055620001af565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620001f591815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200022b57607f821691505b6020821081036200024a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200029d575f81815260208120601f850160051c81016020861015620002785750805b601f850160051c820191505b81811015620002995782815560010162000284565b5050505b505050565b81516001600160401b03811115620002be57620002be62000202565b620002d681620002cf845462000216565b8462000250565b602080601f8311600181146200030c575f8415620002f45750858301515b5f19600386901b1c1916600185901b17855562000299565b5f85815260208120601f198616915b828110156200033c578886015182559484019460019091019084016200031b565b50858210156200035a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200038a57634e487b7160e01b5f52601160045260245ffd5b92915050565b608051610b55620003a95f395f61042b0152610b555ff3fe608060405234801561000f575f80fd5b50600436106100f0575f3560e01c80636817031b116100935780639dc29fac116100635780639dc29fac146101e5578063a9059cbb146101f8578063dd62ed3e1461020b578063fbfa77cf14610243575f80fd5b80636817031b1461018e57806370a08231146101a15780638dac07b3146101c957806395d89b41146101dd575f80fd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a5780633ba86ee01461016957806340c10f1914610179575f80fd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f80fd5b6100fc61026e565b60405161010991906109b0565b60405180910390f35b610125610120366004610a16565b6102fe565b6040519015158152602001610109565b6002545b604051908152602001610109565b610125610155366004610a3e565b610317565b60405160128152602001610109565b610139683635c9adc5dea0000081565b61018c610187366004610a16565b61033a565b005b61018c61019c366004610a77565b610420565b6101396101af366004610a77565b6001600160a01b03165f9081526020819052604090205490565b60055461012590600160a01b900460ff1681565b6100fc610570565b61018c6101f3366004610a16565b61057f565b610125610206366004610a16565b610654565b610139610219366004610a97565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b600554610256906001600160a01b031681565b6040516001600160a01b039091168152602001610109565b60606003805461027d90610ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546102a990610ac8565b80156102f45780601f106102cb576101008083540402835291602001916102f4565b820191905f5260205f20905b8154815290600101906020018083116102d757829003601f168201915b5050505050905090565b5f3361030b818585610661565b60019150505b92915050565b5f33610324858285610673565b61032f8585856106ef565b506001949350505050565b600554600160a01b900460ff166103885760405162461bcd60e51b815260206004820152600d60248201526c15985d5b1d081b9bdd081cd95d609a1b60448201526064015b60405180910390fd5b6005546001600160a01b031633146103cf5760405162461bcd60e51b815260206004820152600a60248201526913db9b1e481d985d5b1d60b21b604482015260640161037f565b6103d9828261074c565b816001600160a01b03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161041491815260200190565b60405180910390a25050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146104885760405162461bcd60e51b815260206004820152600d60248201526c27b7363c903232b83637bcb2b960991b604482015260640161037f565b600554600160a01b900460ff16156104d65760405162461bcd60e51b815260206004820152601160248201527015985d5b1d08185b1c9958591e481cd95d607a1b604482015260640161037f565b6001600160a01b0381166105215760405162461bcd60e51b81526020600482015260126024820152715a65726f207661756c74206164647265737360701b604482015260640161037f565b600580546001600160a81b0319166001600160a01b038316908117600160a01b179091556040517fe7ae49f883c825b05681b3e00e8be6fdea9ed2a8a45e4c6ecb9390fc44cce615905f90a250565b60606004805461027d90610ac8565b600554600160a01b900460ff166105c85760405162461bcd60e51b815260206004820152600d60248201526c15985d5b1d081b9bdd081cd95d609a1b604482015260640161037f565b6005546001600160a01b0316331461060f5760405162461bcd60e51b815260206004820152600a60248201526913db9b1e481d985d5b1d60b21b604482015260640161037f565b6106198282610784565b816001600160a01b03167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405161041491815260200190565b5f3361030b8185856106ef565b61066e83838360016107b8565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156106e957818110156106db57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161037f565b6106e984848484035f6107b8565b50505050565b6001600160a01b03831661071857604051634b637e8f60e11b81525f600482015260240161037f565b6001600160a01b0382166107415760405163ec442f0560e01b81525f600482015260240161037f565b61066e83838361088a565b6001600160a01b0382166107755760405163ec442f0560e01b81525f600482015260240161037f565b6107805f838361088a565b5050565b6001600160a01b0382166107ad57604051634b637e8f60e11b81525f600482015260240161037f565b610780825f8361088a565b6001600160a01b0384166107e15760405163e602df0560e01b81525f600482015260240161037f565b6001600160a01b03831661080a57604051634a1406b160e11b81525f600482015260240161037f565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106e957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161087c91815260200190565b60405180910390a350505050565b6001600160a01b0383166108b4578060025f8282546108a99190610b00565b909155506109249050565b6001600160a01b0383165f90815260208190526040902054818110156109065760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161037f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166109405760028054829003905561095e565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109a391815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b818110156109db578581018301518582016040015282016109bf565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a11575f80fd5b919050565b5f8060408385031215610a27575f80fd5b610a30836109fb565b946020939093013593505050565b5f805f60608486031215610a50575f80fd5b610a59846109fb565b9250610a67602085016109fb565b9150604084013590509250925092565b5f60208284031215610a87575f80fd5b610a90826109fb565b9392505050565b5f8060408385031215610aa8575f80fd5b610ab1836109fb565b9150610abf602084016109fb565b90509250929050565b600181811c90821680610adc57607f821691505b602082108103610afa57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561031157634e487b7160e01b5f52601160045260245ffdfea2646970667358221220fb7f0b93d75d123da826055650f104609afdb8f53aad628050d0f8b05eda860164736f6c63430008140033

Deployed ByteCode

0x608060405234801561000f575f80fd5b50600436106100f0575f3560e01c80636817031b116100935780639dc29fac116100635780639dc29fac146101e5578063a9059cbb146101f8578063dd62ed3e1461020b578063fbfa77cf14610243575f80fd5b80636817031b1461018e57806370a08231146101a15780638dac07b3146101c957806395d89b41146101dd575f80fd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a5780633ba86ee01461016957806340c10f1914610179575f80fd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f80fd5b6100fc61026e565b60405161010991906109b0565b60405180910390f35b610125610120366004610a16565b6102fe565b6040519015158152602001610109565b6002545b604051908152602001610109565b610125610155366004610a3e565b610317565b60405160128152602001610109565b610139683635c9adc5dea0000081565b61018c610187366004610a16565b61033a565b005b61018c61019c366004610a77565b610420565b6101396101af366004610a77565b6001600160a01b03165f9081526020819052604090205490565b60055461012590600160a01b900460ff1681565b6100fc610570565b61018c6101f3366004610a16565b61057f565b610125610206366004610a16565b610654565b610139610219366004610a97565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b600554610256906001600160a01b031681565b6040516001600160a01b039091168152602001610109565b60606003805461027d90610ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546102a990610ac8565b80156102f45780601f106102cb576101008083540402835291602001916102f4565b820191905f5260205f20905b8154815290600101906020018083116102d757829003601f168201915b5050505050905090565b5f3361030b818585610661565b60019150505b92915050565b5f33610324858285610673565b61032f8585856106ef565b506001949350505050565b600554600160a01b900460ff166103885760405162461bcd60e51b815260206004820152600d60248201526c15985d5b1d081b9bdd081cd95d609a1b60448201526064015b60405180910390fd5b6005546001600160a01b031633146103cf5760405162461bcd60e51b815260206004820152600a60248201526913db9b1e481d985d5b1d60b21b604482015260640161037f565b6103d9828261074c565b816001600160a01b03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161041491815260200190565b60405180910390a25050565b336001600160a01b037f000000000000000000000000062449e0574e282e0caaabae02434487ec5ac4c916146104885760405162461bcd60e51b815260206004820152600d60248201526c27b7363c903232b83637bcb2b960991b604482015260640161037f565b600554600160a01b900460ff16156104d65760405162461bcd60e51b815260206004820152601160248201527015985d5b1d08185b1c9958591e481cd95d607a1b604482015260640161037f565b6001600160a01b0381166105215760405162461bcd60e51b81526020600482015260126024820152715a65726f207661756c74206164647265737360701b604482015260640161037f565b600580546001600160a81b0319166001600160a01b038316908117600160a01b179091556040517fe7ae49f883c825b05681b3e00e8be6fdea9ed2a8a45e4c6ecb9390fc44cce615905f90a250565b60606004805461027d90610ac8565b600554600160a01b900460ff166105c85760405162461bcd60e51b815260206004820152600d60248201526c15985d5b1d081b9bdd081cd95d609a1b604482015260640161037f565b6005546001600160a01b0316331461060f5760405162461bcd60e51b815260206004820152600a60248201526913db9b1e481d985d5b1d60b21b604482015260640161037f565b6106198282610784565b816001600160a01b03167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405161041491815260200190565b5f3361030b8185856106ef565b61066e83838360016107b8565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156106e957818110156106db57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161037f565b6106e984848484035f6107b8565b50505050565b6001600160a01b03831661071857604051634b637e8f60e11b81525f600482015260240161037f565b6001600160a01b0382166107415760405163ec442f0560e01b81525f600482015260240161037f565b61066e83838361088a565b6001600160a01b0382166107755760405163ec442f0560e01b81525f600482015260240161037f565b6107805f838361088a565b5050565b6001600160a01b0382166107ad57604051634b637e8f60e11b81525f600482015260240161037f565b610780825f8361088a565b6001600160a01b0384166107e15760405163e602df0560e01b81525f600482015260240161037f565b6001600160a01b03831661080a57604051634a1406b160e11b81525f600482015260240161037f565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106e957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161087c91815260200190565b60405180910390a350505050565b6001600160a01b0383166108b4578060025f8282546108a99190610b00565b909155506109249050565b6001600160a01b0383165f90815260208190526040902054818110156109065760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161037f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166109405760028054829003905561095e565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109a391815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b818110156109db578581018301518582016040015282016109bf565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a11575f80fd5b919050565b5f8060408385031215610a27575f80fd5b610a30836109fb565b946020939093013593505050565b5f805f60608486031215610a50575f80fd5b610a59846109fb565b9250610a67602085016109fb565b9150604084013590509250925092565b5f60208284031215610a87575f80fd5b610a90826109fb565b9392505050565b5f8060408385031215610aa8575f80fd5b610ab1836109fb565b9150610abf602084016109fb565b90509250929050565b600181811c90821680610adc57607f821691505b602082108103610afa57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561031157634e487b7160e01b5f52601160045260245ffdfea2646970667358221220fb7f0b93d75d123da826055650f104609afdb8f53aad628050d0f8b05eda860164736f6c63430008140033