{"address":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","latest":5079838,"price":{"usd":0.574470819267322,"btc":0,"change24h":0,"marketCap":170465319.93694144,"volume24h":0,"source":"onchain","venue":"On-chain pool WDAN/USDT on dannyswap"},"balance":"0","nonce":1,"codeSize":5912,"isContract":true,"contract":{"verified":true,"name":"WINDEE","compiler":"v0.8.19+commit.7dd6d404","optimization":false,"runs":null,"license":"mit","proxy":false,"implementation":null,"sourceCode":"// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\ninterface IERC20{\n    /**\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\n     * another (`to`).\n     *\n     * Note that `value` may be zero.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 value);\n\n    /**\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n     * a call to {approve}. `value` is the new allowance.\n     */\n    event Approval(\n        address indexed owner,\n        address indexed spender,\n        uint256 value\n    );\n\n    /**\n     * @dev Returns the value of tokens in existence.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns the value of tokens owned by `account`.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transfer(address to, uint256 value) external returns (bool);\n\n    /**\n     * @dev Returns the remaining number of tokens that `spender` will be\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\n     * zero by default.\n     *\n     * This value changes when {approve} or {transferFrom} are called.\n     */\n    function allowance(\n        address owner,\n        address spender\n    ) external view returns (uint256);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * caller's tokens.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\n     * that someone may use both the old and the new allowance by unfortunate\n     * transaction ordering. One possible solution to mitigate this race\n     * condition is to first reduce the spender's allowance to 0 and set the\n     * desired value afterwards:\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address spender, uint256 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the\n     * allowance mechanism. `value` is then deducted from the caller's\n     * allowance.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(\n        address from,\n        address to,\n        uint256 value\n    ) external returns (bool);\n}\n\ninterface IERC20Metadata is IERC20 {\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the symbol of the token.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the decimals places of the token.\n     */\n    function decimals() external view returns (uint8);\n}\n\n/**\n * @dev Standard ERC20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.\n */\ninterface IERC20Errors {\n    /**\n     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param balance Current balance for the interacting account.\n     * @param needed Minimum amount required to perform a transfer.\n     */\n    error ERC20InsufficientBalance(\n        address sender,\n        uint256 balance,\n        uint256 needed\n    );\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC20InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC20InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n     * @param spender Address that may be allowed to operate on tokens without being their owner.\n     * @param allowance Amount of tokens a `spender` is allowed to operate with.\n     * @param needed Minimum amount required to perform a transfer.\n     */\n    error ERC20InsufficientAllowance(\n        address spender,\n        uint256 allowance,\n        uint256 needed\n    );\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC20InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n     * @param spender Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC20InvalidSpender(address spender);\n}\n\nabstract contract Context {\n    function _msgSender() internal view virtual returns (address) {\n        return msg.sender;\n    }\n\n    function _msgData() internal view virtual returns (bytes calldata) {\n        return msg.data;\n    }\n}\n\nabstract contract Ownable is Context {\n    address private _owner;\n\n    /**\n     * @dev The caller account is not authorized to perform an operation.\n     */\n    error OwnableUnauthorizedAccount(address account);\n\n    /**\n     * @dev The owner is not a valid owner account. (eg. `address(0)`)\n     */\n    error OwnableInvalidOwner(address owner);\n\n    event OwnershipTransferred(\n        address indexed previousOwner,\n        address indexed newOwner\n    );\n\n    /**\n     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n     */\n    constructor(address initialOwner) {\n        if (initialOwner == address(0)) {\n            revert OwnableInvalidOwner(address(0));\n        }\n        _transferOwnership(initialOwner);\n    }\n\n    /**\n     * @dev Throws if called by any account other than the owner.\n     */\n    modifier onlyOwner() {\n        _checkOwner();\n        _;\n    }\n\n    /**\n     * @dev Returns the address of the current owner.\n     */\n    function owner() public view virtual returns (address) {\n        return _owner;\n    }\n\n    /**\n     * @dev Throws if the sender is not the owner.\n     */\n    function _checkOwner() internal view virtual {\n        if (owner() != _msgSender()) {\n            revert OwnableUnauthorizedAccount(_msgSender());\n        }\n    }\n\n    /**\n     * @dev Leaves the contract without owner. It will not be possible to call\n     * `onlyOwner` functions. Can only be called by the current owner.\n     *\n     * NOTE: Renouncing ownership will leave the contract without an owner,\n     * thereby disabling any functionality that is only available to the owner.\n     */\n    function renounceOwnership() public virtual onlyOwner {\n        _transferOwnership(address(0));\n    }\n\n    /**\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\n     * Can only be called by the current owner.\n     */\n    function transferOwnership(address newOwner) public virtual onlyOwner {\n        if (newOwner == address(0)) {\n            revert OwnableInvalidOwner(address(0));\n        }\n        _transferOwnership(newOwner);\n    }\n\n    /**\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\n     * Internal function without access restriction.\n     */\n    function _transferOwnership(address newOwner) internal virtual {\n        address oldOwner = _owner;\n        _owner = newOwner;\n        emit OwnershipTransferred(oldOwner, newOwner);\n    }\n}\n\nabstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {\n    mapping(address account => uint256) private _balances;\n\n    mapping(address account => mapping(address spender => uint256))\n        private _allowances;\n\n    uint256 private _totalSupply;\n\n    string private _name;\n    string private _symbol;\n    uint8 private _decimals;\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * All two of these values are immutable: they can only be set once during\n     * construction.\n     */\n    constructor(string memory name_, string memory symbol_,uint8 decimals_) {\n        _name = name_;\n        _symbol = symbol_;\n        _decimals = decimals_;\n    }\n\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() public view virtual returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the default value returned by this function, unless\n     * it's overridden.\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual returns (uint8) {\n        return _decimals;\n    }\n\n    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual returns (uint256) {\n        return _totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - the caller must have a balance of at least `value`.\n     */\n    function transfer(address to, uint256 value) public virtual returns (bool) {\n        address owner = _msgSender();\n        _transfer(owner, to, value);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(\n        address owner,\n        address spender\n    ) public view virtual returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n     * `transferFrom`. This is semantically equivalent to an infinite approval.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(\n        address spender,\n        uint256 value\n    ) public virtual returns (bool) {\n        address owner = _msgSender();\n        _approve(owner, spender, value);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Emits an {Approval} event indicating the updated allowance. This is not\n     * required by the EIP. See the note at the beginning of {ERC20}.\n     *\n     * NOTE: Does not update the allowance if the current allowance\n     * is the maximum `uint256`.\n     *\n     * Requirements:\n     *\n     * - `from` and `to` cannot be the zero address.\n     * - `from` must have a balance of at least `value`.\n     * - the caller must have allowance for ``from``'s tokens of at least\n     * `value`.\n     */\n    function transferFrom(\n        address from,\n        address to,\n        uint256 value\n    ) public virtual returns (bool) {\n        address spender = _msgSender();\n        _spendAllowance(from, spender, value);\n        _transfer(from, to, value);\n        return true;\n    }\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to`.\n     *\n     * This internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _transfer(address from, address to, uint256 value) internal {\n        if (from == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        if (to == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(from, to, value);\n    }\n\n    /**\n     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n     * this function.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _update(address from, address to, uint256 value) internal virtual {\n        if (from == address(0)) {\n            // Overflow check required: The rest of the code assumes that totalSupply never overflows\n            _totalSupply += value;\n        } else {\n            uint256 fromBalance = _balances[from];\n            if (fromBalance < value) {\n                revert ERC20InsufficientBalance(from, fromBalance, value);\n            }\n            unchecked {\n                // Overflow not possible: value <= fromBalance <= totalSupply.\n                _balances[from] = fromBalance - value;\n            }\n        }\n\n        if (to == address(0)) {\n            unchecked {\n                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n                _totalSupply -= value;\n            }\n        } else {\n            unchecked {\n                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n                _balances[to] += value;\n            }\n        }\n\n        emit Transfer(from, to, value);\n    }\n\n    /**\n     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n     * Relies on the `_update` mechanism\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _mint(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(address(0), account, value);\n    }\n\n    /**\n     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n     * Relies on the `_update` mechanism.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead\n     */\n    function _burn(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        _update(account, address(0), value);\n    }\n\n    /**\n     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n     *\n     * This internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     *\n     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n     */\n    function _approve(address owner, address spender, uint256 value) internal {\n        _approve(owner, spender, value, true);\n    }\n\n    /**\n     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n     *\n     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n     * `Approval` event during `transferFrom` operations.\n     *\n     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n     * true using the following override:\n     * ```\n     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n     *     super._approve(owner, spender, value, true);\n     * }\n     * ```\n     *\n     * Requirements are the same as {_approve}.\n     */\n    function _approve(\n        address owner,\n        address spender,\n        uint256 value,\n        bool emitEvent\n    ) internal virtual {\n        if (owner == address(0)) {\n            revert ERC20InvalidApprover(address(0));\n        }\n        if (spender == address(0)) {\n            revert ERC20InvalidSpender(address(0));\n        }\n        _allowances[owner][spender] = value;\n        if (emitEvent) {\n            emit Approval(owner, spender, value);\n        }\n    }\n\n    /**\n     * @dev Updates `owner` s allowance for `spender` based on spent `value`.\n     *\n     * Does not update the allowance value in case of infinite allowance.\n     * Revert if not enough allowance is available.\n     *\n     * Does not emit an {Approval} event.\n     */\n    function _spendAllowance(\n        address owner,\n        address spender,\n        uint256 value\n    ) internal virtual {\n        uint256 currentAllowance = allowance(owner, spender);\n        if (currentAllowance != type(uint256).max) {\n            if (currentAllowance < value) {\n                revert ERC20InsufficientAllowance(\n                    spender,\n                    currentAllowance,\n                    value\n                );\n            }\n            unchecked {\n                _approve(owner, spender, currentAllowance - value, false);\n            }\n        }\n    }\n}\n\n\ncontract WINDEE is ERC20, Ownable {\n\n    constructor(address _owner)  ERC20(\"WINDEE COIN WIN\", \"VIN\" , 18) Ownable(_owner) payable {\n        _mint(_owner, 90000000 * 10**decimals());\n    }\n\n    receive() external payable {}\n\n    function _update(address from, address to, uint256 amount) internal override {\n        if (from == address(0x0) || to == address(0x0)) {\n            super._update(from, to, amount);\n            return;\n        }\n        require(amount > 0 , \"amount must be greater than zero\");  \n        super._update(from, to, amount);\n    }\n\n    function rescueBalance(address toAddr) public onlyOwner {\n        (bool success, ) = toAddr.call{value: address(this).balance}(\"\");\n        require(success);\n    }\n\n    function rescueToken(address tokenAddress ,  address receiver) public onlyOwner {\n        uint balance =  IERC20(tokenAddress).balanceOf(address(this));\n        IERC20(tokenAddress).transfer(receiver, balance);\n    }\n\n    function burn(uint256 value) public virtual {\n        _burn(_msgSender(), value);\n    }\n    \n    function burnFrom(address account, uint256 value) public virtual {\n        _spendAllowance(account, _msgSender(), value);\n        _burn(account, value);\n    }\n}","abi":"[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"stateMutability\":\"payable\",\"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\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"burnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"toAddr\",\"type\":\"address\"}],\"name\":\"rescueBalance\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenAddress\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"rescueToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"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\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}]"},"tokens":[],"summary":{"isContract":true,"isVerified":true,"name":"WINDEE COIN WIN","ensName":null,"creator":"0xbb576f8a4283c9cba153f9c79f2ac4fe50fde526","creationTx":null,"publicTags":[],"hasTokens":false,"hasLogs":true,"validatedBlocks":false},"firstLast":{"last":{"hash":"0x40af21151b27f4dec7188c8cb06d61211a58bd437332256a59d70c8a58a19250","timestamp":1788310551,"blockNumber":5037595},"first":null,"fundedBy":null,"complete":false},"tab":"txs","page":1,"offset":25,"scan":{"available":true,"source":"blockscout","ok":true,"message":"OK"},"rows":[{"hash":"0x40af21151b27f4dec7188c8cb06d61211a58bd437332256a59d70c8a58a19250","blockNumber":"5037595","timeStamp":"1788310551","from":"0xc90268b541a6368b82977f3ff2e4b2fefb5df1dd","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"30419","gasPrice":"5257086235767","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000ad0e4c0db05a7b376528bdba56cdd41456322d4b000000000000000000000000000000000000000000000025f273933db5700000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x9ac16845c736e256b9800d6a6b0f10930e67cd3301732d5edc7706f2b17fcdc8","blockNumber":"5019113","timeStamp":"1788273587","from":"0x6e28fab533c565ccb7cae07e42c547d18b1dde0b","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"30419","gasPrice":"5562691784055","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000005dc8b24f273ade821c02444be8ddf05f35ca207300000000000000000000000000000000000000000000000ac9ae05a71ebc0000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x102b12f2621325ede82beb5322f17963a9d8eacad73a4fcc8b89f5f17bf81e64","blockNumber":"5013050","timeStamp":"1788261461","from":"0xf92f75c813929b73178260c229035f32ba339f86","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56845","gasUsed":"46987","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf00000000000000000000000000000000000000000000003635c9adc5dea00000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x9cde6448eb40d67f3fa6a181a14d788b6f763d334257caa0e84b5b3e9b91bba1","blockNumber":"5005252","timeStamp":"1788245865","from":"0x5bd43c0cfedc686f852f9aafbaf5dc2698e9597f","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"78659","gasUsed":"47287","gasPrice":"5850000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xc74715a56f71c6d522fcf0f45952c063b4e44e1b399fad0ee5a487953397596e","blockNumber":"4960975","timeStamp":"1788157307","from":"0x5e181908fc988758f85578b1086188de3b7afa85","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56859","gasUsed":"46999","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf00000000000000000000000000000000000000000000152d02c7e14af6800000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x0a72f904e6e6b567550ba02a1401dc71b369abb9b7e1da1ba558f3c06f3e475d","blockNumber":"4958619","timeStamp":"1788152595","from":"0x07a3cd066ed91f739e477635479125094379a60f","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56859","gasUsed":"46999","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf00000000000000000000000000000000000000000000084231b97924ea600000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xde5d4b0da86ef93e15f8688ed8f630d0047c41c00367b7711b17fccc0b761a3d","blockNumber":"4957108","timeStamp":"1788149573","from":"0xf7ffedd653ac425cb2bcc42fdb2cafbc76abc1be","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"35219","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000049eeb413b1811cd2de1669a27f31ec2ae6eb4f5e000000000000000000000000000000000000000000000025f273933db5700000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x71067d9eb21fb72240d5331d1d9f5d2e5e3b239fe60dd9f9d7fa32d5ed2a9792","blockNumber":"4951307","timeStamp":"1788137971","from":"0x29834ea77e45c3d3f7ec6c09c0501832099be86e","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"52439","gasUsed":"47287","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x99db66fea679c3cf7385faa58ea1f95a57c76109397455019e358603ed4b4ca2","blockNumber":"4934852","timeStamp":"1788105061","from":"0x77cec98615e446f86569f7a9ba69a72ea6c1409a","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"79719","gasUsed":"47555","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000007c457c1bb97551a412127f2cda6e4077b208655d000000000000000000000000000000000000000000001172a7f0805a49938fc7","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xd0a236d60eaf401b70bb990297871b476292f86bf4cbd5c3c93d9d8de9a59577","blockNumber":"4931249","timeStamp":"1788097855","from":"0xac579a52ff0bc61ca0780920b911843872ed895c","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56859","gasUsed":"46999","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf0000000000000000000000000000000000000000000002e43d3148b596fc0000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x002c33504e6437736e39df8443e061f4bda70197e132e0ec50b44c2e6cabcfce","blockNumber":"4930528","timeStamp":"1788096413","from":"0xa79ed5729c4286aa9a48994f5325a65b133229ae","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42710","gasUsed":"30431","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000415a26d4e28a7d520f80ba06aac8cb43c2bbe8b800000000000000000000000000000000000000000000000008e9589b9d08d3c6","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xb6c3b32e9ac11ce2bf2707ae55582ddeb42e025f8af252ebf92625cce3e786b8","blockNumber":"4921113","timeStamp":"1788077581","from":"0x655d26758466b0444df5adb1300eef04eaca320c","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"30419","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000c7abd5aa1e8fdc334bd1745856c7436226458f8a00000000000000000000000000000000000000000000000ad78ebc5ac6200000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xf5e581bd5c6910d725ed440cd2cd431c783e2ed9d744e744015bde8a185727e2","blockNumber":"4887587","timeStamp":"1788010529","from":"0xc19bbaee59ad654b0ee3ce1f04f523e0df46dcb1","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"52439","gasUsed":"47287","gasPrice":"4510879067783","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xab66226c7b466728e1286542f456acf405d18a0ef8686fbcff62e65879369220","blockNumber":"4871715","timeStamp":"1787978785","from":"0x9c51d40c263fdab3963384a3d85bd69ef637b252","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"52439","gasUsed":"47287","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x5cbbec95a5c781f9e27d0d99eae72bcf60c8a471daeab4467dfd7a4f5db3cc53","blockNumber":"4869100","timeStamp":"1787973555","from":"0x0d45c30866a8c576f5d94377b0566948771bbb95","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"52439","gasUsed":"47287","gasPrice":"5076626471020","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xca568ece310ffbd2c63ee3a5352ec82b465dc297aab85c86b560235089f36da9","blockNumber":"4801374","timeStamp":"1787838102","from":"0xd01b7e45f18c5217b837ee5fb3e915b73f1679a2","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42710","gasUsed":"35231","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000016ab04ad7f1e6f0a569f30e8a6ad261176a2e9b3000000000000000000000000000000000000000000000026fa7d78578f926000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x993b39f11e733cab18325477ec27784411a793f6fa00c02f8e677944f908133c","blockNumber":"4799403","timeStamp":"1787834160","from":"0x766419236a1d400b35a7906fa2d0163f5b6acccf","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"78659","gasUsed":"47287","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xd564eac742a639d903ea1fab1ed14c9060a68e5f2e33adc784fc9c44be9c4887","blockNumber":"4799217","timeStamp":"1787833788","from":"0x5e181908fc988758f85578b1086188de3b7afa85","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56859","gasUsed":"46999","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf00000000000000000000000000000000000000000000c92b9a6adc4825c00000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x4378cb0d8bbf642c8eda127cd05003cd374d480df1ef829b4f99a92964698783","blockNumber":"4781629","timeStamp":"1787798612","from":"0xcf82a37370eb6bb5ca7979162b1fee4012d8de02","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42724","gasUsed":"30443","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000034ac33b76f4af76ce92349dbe26cd7f8be1ba4c300000000000000000000000000000000000000000000006f24084b27823a88e6","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x60a9512114182e7287b0f0efce87cf39bf6ed9b38a0abe08a2686fbff2a2ae49","blockNumber":"4776390","timeStamp":"1787788134","from":"0xb1a4e39e6d48fda362cd56ab503ff94a99325476","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56859","gasUsed":"46999","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf0000000000000000000000000000000000000000000005148021278855180000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x073de8ddd86bc146b32a43aeea74c8cb29567ffdef625f33a2eeca2148bb14a3","blockNumber":"4759007","timeStamp":"1787753368","from":"0x3491069a1243210aee03bd1ffff04d64d48a220a","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42710","gasUsed":"35231","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000b1a4e39e6d48fda362cd56ab503ff94a993254760000000000000000000000000000000000000000000002f6f10780d22cc00000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xd4932d6debd99d0af9ef2c0c787e3b6fdecedb00e1a5312c66cef6150489988c","blockNumber":"4752574","timeStamp":"1787740502","from":"0xf97574662ba7a6773a799e7e1c1402d55344c624","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"63746","gasUsed":"47531","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000b9b4daa49fc4ac959401518fb7c5ec510cd6cbc500000000000000000000000000000000000000000000006cf85d48588b1c4000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xa999b88c75e24eb7f94ae5fc0a19129ba3c921ac5a35237c389861c2488926a3","blockNumber":"4752515","timeStamp":"1787740384","from":"0xbebe6342637796b7d3e59303d59884b9cf5e5e40","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"63746","gasUsed":"52331","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000b1a4e39e6d48fda362cd56ab503ff94a9932547600000000000000000000000000000000000000000000021e19e0c9bab2400000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x3ebbcddd18490fab3ed6fed13fdc846b0d9c33742e548dfda13d7d6c0727cbc3","blockNumber":"4751635","timeStamp":"1787738624","from":"0xbc8d0a9ca9d7b262d00dca71c80ad92dd6aedce6","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"63730","gasUsed":"47519","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000f92f75c813929b73178260c229035f32ba339f8600000000000000000000000000000000000000000000003635c9adc5dea00000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xabdd3d06c862559736c65394f1bfd38207cf197d86c0defedd1e3835b39e92df","blockNumber":"4749748","timeStamp":"1787734850","from":"0xbebe6342637796b7d3e59303d59884b9cf5e5e40","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"63730","gasUsed":"52319","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000bc8d0a9ca9d7b262d00dca71c80ad92dd6aedce600000000000000000000000000000000000000000000003635c9adc5dea00000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x69217331d5807349c1f2f40987afe0b14296de9ee9afe3e9c62c8628ad1fb942","blockNumber":"4740849","timeStamp":"1787717052","from":"0x3491069a1243210aee03bd1ffff04d64d48a220a","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"63730","gasUsed":"52319","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000650ca97831d3dbdb3633ba126d674e56b93e958b0000000000000000000000000000000000000000000000a2a15d09519be00000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x000683c1d47873c7f021dd361af578dc9bab3086b00bf6442ee24217edc5a7d3","blockNumber":"4740736","timeStamp":"1787716826","from":"0x3491069a1243210aee03bd1ffff04d64d48a220a","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"35219","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000b4779fe65950f7c360967583555bf47c8f93aafe00000000000000000000000000000000000000000000003635c9adc5dea00000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x476cc47bb9dc8033f0309ff99d4853d04f6327e2e233aea612db60f8aa277be4","blockNumber":"4738744","timeStamp":"1787712842","from":"0x3b4172b00389f80a98da5e4d90c4c41c01ea8473","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56874","gasUsed":"47011","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf00000000000000000000000000000000000000000000197049bb264ea9184500","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xd327836fe73fb4d97d3f6fe4166d752ff1eabb88a4a56e722f585bbc132ce1cb","blockNumber":"4716340","timeStamp":"1787668034","from":"0x77425915e33685556111a70c8bb6f24db251a91c","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"35219","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000d94460a2659784d29004335377d9eb0a78471280000000000000000000000000000000000000000000000039c9b8c81706680000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x237489ac91893f3c3686833d24fa8f6e880445c99639567a7cbd0232f5bf0c3e","blockNumber":"4713906","timeStamp":"1787663166","from":"0xaebd8d03a562b75f195be46ccd758e2194017c06","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56845","gasUsed":"46987","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf000000000000000000000000000000000000000000000005f68e8131ecf80000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xd7d27aa80413c229afb998394d370adc8344c43a24896f0773ea14d822e680b8","blockNumber":"4709362","timeStamp":"1787654077","from":"0x3b6476cfa08e0a8f07484938df67f4ddac8c2d6d","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56888","gasUsed":"47023","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf000000000000000000000000000000000000000000000d961d0bbc3908a7128b","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xfc60959f55ca9fb7b85a3a6745077f0f41987209e6b8130e082efcba9561750c","blockNumber":"4699711","timeStamp":"1787634775","from":"0x8f4ed9e5f25b3260b289d6814871f73a987e9829","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56830","gasUsed":"46975","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf0000000000000000000000000000000000000000000000008ac7230489e80000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x6896a46fbb52f79474663719225831a27d742c5988ceaf56d402fa8410b20694","blockNumber":"4695457","timeStamp":"1787626267","from":"0x44c910adeff96fdc03da19cb54f56b3f3c939c02","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"30419","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000766419236a1d400b35a7906fa2d0163f5b6acccf000000000000000000000000000000000000000000000001158e460913d00000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x8a4ffd88d2ef109556ae2a4133f2bdc08da97cab9ea69811ff781bab5ee1bef1","blockNumber":"4689697","timeStamp":"1787614747","from":"0xb1a4e39e6d48fda362cd56ab503ff94a99325476","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56830","gasUsed":"46975","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf00000000000000000000000000000000000000000000001158e460913d000000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x6c8b4db52dded08cbc2c9758baf37d2012af80a306e64190517c27b4433167b3","blockNumber":"4673653","timeStamp":"1787582659","from":"0xdae13f85899ec2ff689ec794ca2da03c794f000c","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56874","gasUsed":"47011","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf000000000000000000000000000000000000000000000d63ae122869b5c67500","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x5426cd391a266af8426a0c57e554c25ed7d40703e59da2d24f42d04f9dd222ee","blockNumber":"4670522","timeStamp":"1787576397","from":"0x619b18442d8893ad0a706623040b636b1cd51241","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56845","gasUsed":"46987","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf00000000000000000000000000000000000000000000006c6b935b8bbd400000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xd4f7774f5c2411113b43dcd4cfb8100d27bea167b1fce186dccd297e369ca169","blockNumber":"4669546","timeStamp":"1787574445","from":"0xcc0f4521c58ce339d62c6ee67255ebb24b203357","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56859","gasUsed":"46999","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf0000000000000000000000000000000000000000000015892b05224e8a900000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x9228e583b56b9ed88bb9cef4e7f0aee901bf68ebfba4e0898df6af108753ff80","blockNumber":"4669307","timeStamp":"1787573967","from":"0x859751d7b649754165241097142407c7e96b3249","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"47383","gasUsed":"46999","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000062a81f0c4aa2bca4bebfc52db20ce1d7098a27f00000000000000000000000000000000000000000000043c33c1937564800000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xbc6d35b0732531f403b188ec914eb922a597e3a84a981ba6f19a00db5aadffa9","blockNumber":"4665911","timeStamp":"1787567174","from":"0xdedb055258d6f13266b0887214354eade07abbc8","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"35219","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000080484073cf9e6b4b223f19168260bdbe369f15a0000000000000000000000000000000000000000000000056bc75e2d63100000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xde1c376d6c0fba6623e44858fbed04fb6dd412190ed18d1849db6ad85cbc4587","blockNumber":"4650554","timeStamp":"1787536460","from":"0x3a30871f5baeff0ad0a6173f148a42e0ad6996d6","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"60000","gasUsed":"30443","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000b22ca638d5e6bcc796edcb7cf384c05d9d7e9dd8000000000000000000000000000000000000000000000008bcec38f8bed955b0","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x430ab162eaa5084c6455790fe57671f09f09cd2b8692a372000affdf948f35e2","blockNumber":"4647401","timeStamp":"1787530154","from":"0x42a9f4f82bbfda97319ba5602d3637bbb6d3fabc","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"30419","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000c625f973823170ea4197cbafd5120e2855b05c3a00000000000000000000000000000000000000000000000821ab0d4414980000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x102e9c832dba55671b4205ac4237e580628c501d25e978e592146b85096d15e0","blockNumber":"4647182","timeStamp":"1787529716","from":"0x04018728fd291d5c49d1edcf680acfd5300f5104","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"47371","gasUsed":"46987","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000062a81f0c4aa2bca4bebfc52db20ce1d7098a27f00000000000000000000000000000000000000000000002b5e3af16b18800000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xb3140219d3e7c01aec8f751d0073d298001ccb5ae578a674cdfcfe7adba78e69","blockNumber":"4635211","timeStamp":"1787505774","from":"0x4522f8c48b27900217ff32eeb0a958fe5586c115","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"30419","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000586f88f3362e2067a2cdf4c56b4d0c173c4a76f000000000000000000000000000000000000000000000001b1ae4d6e2ef500000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xf02f2a4af128263785d7b8b50896e528414f231b84d31583f6f0b5a8c2d4d640","blockNumber":"4627223","timeStamp":"1787489798","from":"0x7793eed5011cc98457b3e8c819d6c1b0ae2cee36","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"47383","gasUsed":"46999","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000062a81f0c4aa2bca4bebfc52db20ce1d7098a27f00000000000000000000000000000000000000000000021e19e0c9bab2400000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xd1d000458db1e37284e315727378fe5051815880320ed596c34ae6b170f4b832","blockNumber":"4614694","timeStamp":"1787464740","from":"0x8fbe683ef333ba255799acea4f94f5b769db0a42","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56845","gasUsed":"46987","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf00000000000000000000000000000000000000000000006c6b935b8bbd400000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x434f46a2869d668649b3e29e1f98fa097d3c5e8ae3e5c22abbdb988c53b0c483","blockNumber":"4613461","timeStamp":"1787462274","from":"0x77cec98615e446f86569f7a9ba69a72ea6c1409a","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56859","gasUsed":"46999","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf000000000000000000000000000000000000000000000d46f94ba929a0300000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x95afe7b28d00ab4b34c00c89e516c156a7a8a378c4ea7a4ef841589584bc2be5","blockNumber":"4610474","timeStamp":"1787456300","from":"0xe0ebd0b7a786925056be0e9e1cd24ae0526f71de","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"56874","gasUsed":"47011","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf00000000000000000000000000000000000000000000078d2d346b68a6e85600","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xa34af0bc13941525d0bf58fb24f6254f2cdebc4a147f554c22230fc1b4c8ff81","blockNumber":"4606879","timeStamp":"1787449110","from":"0xef39d9c93ff90eda68c501d36e3e1e8f9619d259","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"42696","gasUsed":"30419","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000d2da3fa04a7763ee7ac4398d732585bb60740ac1000000000000000000000000000000000000000000000010357563d481cc0000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x9ae7af5cbc18063c490335b9138451fe98e7f0c3f4337317712bc27aae9a9c80","blockNumber":"4605757","timeStamp":"1787446866","from":"0x9de85373bfb8c6827222c460cd2bcc64236ad231","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"63730","gasUsed":"47519","gasPrice":"4951672941077","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000078397e06d0b1cf741bb6fcd9860c82ad11b2739f00000000000000000000000000000000000000000000000ac9ae05a71ebc0000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x9d548b2ba898c8e59f9d850c8c8753a1d6dfe5141bf04486fc7019d545094cbc","blockNumber":"4603802","timeStamp":"1787442956","from":"0xa9f1466968d7d8d45e2a0e89da534ee0f3c6d79b","to":"0xb64fc6bfe07bc244fc7c3981347bf13284423fb7","contractAddress":"","value":"0","gas":"63730","gasUsed":"52319","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000835394002c522c5406933201c69c785f8b6214a40000000000000000000000000000000000000000000069e10de76676d0800000","methodId":"0xa9059cbb","functionName":"transfer"}],"nextCursor":{"block_number":4603802,"fee":"282522600000000000","hash":"0x9d548b2ba898c8e59f9d850c8c8753a1d6dfe5141bf04486fc7019d545094cbc","index":0,"inserted_at":"2026-08-30T17:42:02.075242Z","items_count":50,"value":"0"}}