{"address":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","latest":5110870,"price":{"usd":0.6047591962945873,"btc":0,"change24h":-0.8047788499888544,"marketCap":179438945.37640503,"volume24h":0,"source":"onchain","venue":"On-chain pool WDAN/USDT on dannyswap"},"balance":"0","nonce":1,"codeSize":4161,"isContract":true,"contract":{"verified":true,"name":"DAN20Token_0001","compiler":"v0.8.29+commit.ab55807c","optimization":true,"runs":200,"license":"none","proxy":false,"implementation":null,"sourceCode":"// www.dannychain.com\n// Sources flattened with hardhat v2.22.16 https://hardhat.org\n\n// SPDX-License-Identifier: MIT\n\n// File @openzeppelin/contracts/utils/Address.sol@v4.9.6\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n    /**\n     * @dev Returns true if `account` is a contract.\n     *\n     * [IMPORTANT]\n     * ====\n     * It is unsafe to assume that an address for which this function returns\n     * false is an externally-owned account (EOA) and not a contract.\n     *\n     * Among others, `isContract` will return false for the following\n     * types of addresses:\n     *\n     *  - an externally-owned account\n     *  - a contract in construction\n     *  - an address where a contract will be created\n     *  - an address where a contract lived, but was destroyed\n     *\n     * Furthermore, `isContract` will also return true if the target contract within\n     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n     * which only has an effect at the end of a transaction.\n     * ====\n     *\n     * [IMPORTANT]\n     * ====\n     * You shouldn't rely on `isContract` to protect against flash loan attacks!\n     *\n     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n     * constructor.\n     * ====\n     */\n    function isContract(address account) internal view returns (bool) {\n        // This method relies on extcodesize/address.code.length, which returns 0\n        // for contracts in construction, since the code is only stored at the end\n        // of the constructor execution.\n\n        return account.code.length > 0;\n    }\n\n    /**\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n     * `recipient`, forwarding all available gas and reverting on errors.\n     *\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\n     * imposed by `transfer`, making them unable to receive funds via\n     * `transfer`. {sendValue} removes this limitation.\n     *\n     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n     *\n     * IMPORTANT: because control is transferred to `recipient`, care must be\n     * taken to not create reentrancy vulnerabilities. Consider using\n     * {ReentrancyGuard} or the\n     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n     */\n    function sendValue(address payable recipient, uint256 amount) internal {\n        require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n        (bool success, ) = recipient.call{value: amount}(\"\");\n        require(success, \"Address: unable to send value, recipient may have reverted\");\n    }\n\n    /**\n     * @dev Performs a Solidity function call using a low level `call`. A\n     * plain `call` is an unsafe replacement for a function call: use this\n     * function instead.\n     *\n     * If `target` reverts with a revert reason, it is bubbled up by this\n     * function (like regular Solidity function calls).\n     *\n     * Returns the raw returned data. To convert to the expected return value,\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n     *\n     * Requirements:\n     *\n     * - `target` must be a contract.\n     * - calling `target` with `data` must not revert.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n     * `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but also transferring `value` wei to `target`.\n     *\n     * Requirements:\n     *\n     * - the calling contract must have an ETH balance of at least `value`.\n     * - the called Solidity function must be `payable`.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(\n        address target,\n        bytes memory data,\n        uint256 value,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        require(address(this).balance >= value, \"Address: insufficient balance for call\");\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n        return functionStaticCall(target, data, \"Address: low-level static call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.staticcall(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.delegatecall(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n     *\n     * _Available since v4.8._\n     */\n    function verifyCallResultFromTarget(\n        address target,\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        if (success) {\n            if (returndata.length == 0) {\n                // only check isContract if the call was successful and the return data is empty\n                // otherwise we already know that it was a contract\n                require(isContract(target), \"Address: call to non-contract\");\n            }\n            return returndata;\n        } else {\n            _revert(returndata, errorMessage);\n        }\n    }\n\n    /**\n     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n     * revert reason or using the provided one.\n     *\n     * _Available since v4.3._\n     */\n    function verifyCallResult(\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal pure returns (bytes memory) {\n        if (success) {\n            return returndata;\n        } else {\n            _revert(returndata, errorMessage);\n        }\n    }\n\n    function _revert(bytes memory returndata, string memory errorMessage) private pure {\n        // Look for revert reason and bubble it up if present\n        if (returndata.length > 0) {\n            // The easiest way to bubble the revert reason is using memory via assembly\n            /// @solidity memory-safe-assembly\n            assembly {\n                let returndata_size := mload(returndata)\n                revert(add(32, returndata), returndata_size)\n            }\n        } else {\n            revert(errorMessage);\n        }\n    }\n}\n\n\n// File @openzeppelin/contracts/proxy/utils/Initializable.sol@v4.9.6\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n *     function initialize() initializer public {\n *         __ERC20_init(\"MyToken\", \"MTK\");\n *     }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n *     function initializeV2() reinitializer(2) public {\n *         __ERC20Permit_init(\"MyToken\");\n *     }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n *     _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n    /**\n     * @dev Indicates that the contract has been initialized.\n     * @custom:oz-retyped-from bool\n     */\n    uint8 private _initialized;\n\n    /**\n     * @dev Indicates that the contract is in the process of being initialized.\n     */\n    bool private _initializing;\n\n    /**\n     * @dev Triggered when the contract has been initialized or reinitialized.\n     */\n    event Initialized(uint8 version);\n\n    /**\n     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n     * `onlyInitializing` functions can be used to initialize parent contracts.\n     *\n     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\n     * constructor.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier initializer() {\n        bool isTopLevelCall = !_initializing;\n        require(\n            (isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),\n            \"Initializable: contract is already initialized\"\n        );\n        _initialized = 1;\n        if (isTopLevelCall) {\n            _initializing = true;\n        }\n        _;\n        if (isTopLevelCall) {\n            _initializing = false;\n            emit Initialized(1);\n        }\n    }\n\n    /**\n     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n     * used to initialize parent contracts.\n     *\n     * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n     * are added through upgrades and that require initialization.\n     *\n     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n     * cannot be nested. If one is invoked in the context of another, execution will revert.\n     *\n     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n     * a contract, executing them in the right order is up to the developer or operator.\n     *\n     * WARNING: setting the version to 255 will prevent any future reinitialization.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier reinitializer(uint8 version) {\n        require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\n        _initialized = version;\n        _initializing = true;\n        _;\n        _initializing = false;\n        emit Initialized(version);\n    }\n\n    /**\n     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n     * {initializer} and {reinitializer} modifiers, directly or indirectly.\n     */\n    modifier onlyInitializing() {\n        require(_initializing, \"Initializable: contract is not initializing\");\n        _;\n    }\n\n    /**\n     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n     * through proxies.\n     *\n     * Emits an {Initialized} event the first time it is successfully executed.\n     */\n    function _disableInitializers() internal virtual {\n        require(!_initializing, \"Initializable: contract is initializing\");\n        if (_initialized != type(uint8).max) {\n            _initialized = type(uint8).max;\n            emit Initialized(type(uint8).max);\n        }\n    }\n\n    /**\n     * @dev Returns the highest version that has been initialized. See {reinitializer}.\n     */\n    function _getInitializedVersion() internal view returns (uint8) {\n        return _initialized;\n    }\n\n    /**\n     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n     */\n    function _isInitializing() internal view returns (bool) {\n        return _initializing;\n    }\n}\n\n\n// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.9.6\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\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(address indexed owner, address indexed spender, uint256 value);\n\n    /**\n     * @dev Returns the amount of tokens in existence.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns the amount of tokens owned by `account`.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * @dev Moves `amount` 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 amount) 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(address owner, address spender) external view returns (uint256);\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\n\n    /**\n     * @dev Moves `amount` tokens from `from` to `to` using the\n     * allowance mechanism. `amount` 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(address from, address to, uint256 amount) external returns (bool);\n}\n\n\n// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.9.6\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\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// File contracts/core/ERC20.sol\n\n// Original license: SPDX_License_Identifier: MIT\n//www.dannychain.com\npragma solidity ^0.8.19;\n\n\ncontract ERC20 is Initializable, IERC20Metadata {\n    mapping(address => uint256) private _balances;\n    mapping(address => mapping(address => uint256)) private _allowances;\n\n    uint256 private _totalSupply;\n    \n    string private _name;\n    string private _symbol;\n    uint8  private _decimals;\n\n    function init(\n        string memory name_,\n        string memory symbol_,\n        uint8 decimals_\n    ) internal onlyInitializing {\n        _name     = name_;\n        _symbol   = symbol_;\n        _decimals = decimals_;\n    }\n\n    function name()        public view virtual override returns (string memory) { return _name; }\n    function symbol()      public view virtual override returns (string memory) { return _symbol; }\n    function decimals()    public view virtual override returns (uint8)         { return _decimals; }\n    function totalSupply() public view virtual override returns (uint256)       { return _totalSupply; }\n    \n\n    function balanceOf(address account) public view virtual override returns (uint256) {\n        return _balances[account];\n    }\n\n    function transfer(address to, uint256 amount) public virtual override returns (bool) {\n        _transfer(msg.sender, to, amount);\n        return true;\n    }\n\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\n        _approve(msg.sender, spender, amount);\n        return true;\n    }\n\n    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n        _spendAllowance(from, msg.sender, amount);\n        _transfer(from, to, amount);\n        return true;\n    }\n\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n        _approve(msg.sender, spender, allowance(msg.sender, spender) + addedValue);\n        return true;\n    }\n\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n        uint256 currentAllowance = allowance(msg.sender, spender);\n        require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n        unchecked { _approve(msg.sender, spender, currentAllowance - subtractedValue); }\n        return true;\n    }\n\n    // ── No public burn() here — added only in tokens with Burnable feature ──\n\n    function _transfer(address from, address to, uint256 amount) internal virtual {\n        require(from != address(0), \"ERC20: transfer from the zero address\");\n        require(to   != address(0), \"ERC20: transfer to the zero address\");\n        _beforeTokenTransfer(from, to, amount);\n        uint256 fromBalance = _balances[from];\n        require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n        unchecked {\n            _balances[from] = fromBalance - amount;\n            _balances[to]  += amount;\n        }\n        emit Transfer(from, to, amount);\n        _afterTokenTransfer(from, to, amount);\n    }\n\n    function _mint(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: mint to the zero address\");\n        _beforeTokenTransfer(address(0), account, amount);\n        _totalSupply += amount;\n        unchecked { _balances[account] += amount; }\n        emit Transfer(address(0), account, amount);\n        _afterTokenTransfer(address(0), account, amount);\n    }\n\n    function _burn(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: burn from the zero address\");\n        _beforeTokenTransfer(account, address(0), amount);\n        uint256 accountBalance = _balances[account];\n        require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n        unchecked {\n            _balances[account] = accountBalance - amount;\n            _totalSupply      -= amount;\n        }\n        emit Transfer(account, address(0), amount);\n        _afterTokenTransfer(account, address(0), amount);\n    }\n\n    function _approve(address owner, address spender, uint256 amount) internal virtual {\n        require(owner   != address(0), \"ERC20: approve from the zero address\");\n        require(spender != address(0), \"ERC20: approve to the zero address\");\n        _allowances[owner][spender] = amount;\n        emit Approval(owner, spender, amount);\n    }\n\n    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\n        uint256 currentAllowance = allowance(owner, spender);\n        if (currentAllowance != type(uint256).max) {\n            require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n            unchecked { _approve(owner, spender, currentAllowance - amount); }\n        }\n    }\n\n    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n    function _afterTokenTransfer(address from, address to, uint256 amount)  internal virtual {}\n}\n\n\n// File contracts/generated/DAN20Token_0001.sol\n\n//www.dannychain.com\n// Original license: SPDX_License_Identifier: MIT\npragma solidity ^0.8.19;\n\n/**\n * @title  DAN20Token_0001\n * @notice Auto-generated token — index 1 (binary: 0001)\n * @dev    Features: Burnable\n *         Bit layout → [Blacklist | Pausable | Mintable | Burnable]\n *         Generated by generate.js — do not edit manually.\n */\ncontract DAN20Token_0001 is Initializable, ERC20 {\n    \n    function initialize(\n        address _owner,\n        string memory _name,\n        string memory _symbol,\n        uint8 _decimals,\n        uint256 _initialSupply\n    ) external initializer {\n        uint256 _supply = _initialSupply * 10 ** _decimals;\n        ERC20.init(_name, _symbol, _decimals);\n        _mint(_owner, _supply);\n    }\n\n    function burn(uint256 amount) public {\n        _burn(msg.sender, amount);\n    }\n\n    function burnFrom(address account, uint256 amount) public {\n        _spendAllowance(account, msg.sender, amount);\n        _burn(account, amount);\n    }\n\n}\n","abi":"[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"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\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"_decimals\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"_initialSupply\",\"type\":\"uint256\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}]"},"tokens":[{"address":"0xc7a34fced3d2ac8f1c09c41d00221dc35cdf70dc","name":"DAISY","symbol":"DS","decimals":18,"type":"ERC-20","value":"500000000000000000000","tokenId":null,"price":0.004905718118129154,"logo":"/uploads/token-c7a34fced3d2ac8f1c09c41d00221dc35cdf70dc-14772def034de102.png"},{"address":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","name":"LOVEDAN","symbol":"LD","decimals":18,"type":"ERC-20","value":"346019528790629575553","tokenId":null,"price":0.02729550111226536,"logo":"/uploads/token-6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7-7ff3ddf8b313f1c1.png"},{"address":"0xecb4b9a8ccef843c3e61a4fc675d30acaa0839b5","name":"BABYDAN","symbol":"BBD","decimals":18,"type":"ERC-20","value":"300000000000000000000","tokenId":null,"price":0.0596202421918535,"logo":"/uploads/token-ecb4b9a8ccef843c3e61a4fc675d30acaa0839b5-0b9225a4b98b0214.png"},{"address":"0x0df1e0a50f78b38d4d34931982ed793af72a0055","name":"GMX COIN","symbol":"GMX","decimals":18,"type":"ERC-20","value":"200000000000000000000","tokenId":null,"price":0.0316587917803221,"logo":"/uploads/token-0df1e0a50f78b38d4d34931982ed793af72a0055-fd16a558ca74f520.png"},{"address":"0xd30f6a095228166a4a39b4463fb5df847a855943","name":"SUCCESS","symbol":"SUCCESS","decimals":18,"type":"ERC-20","value":"20000000000000000000","tokenId":null,"price":0.05453971880832886,"logo":"/uploads/token-d30f6a095228166a4a39b4463fb5df847a855943-85d78458d1b251dc.png"},{"address":"0xb9bfa68b6774612e66eb693c7a0d00b2eb6bcdee","name":"Bridge USDT","symbol":"USDT","decimals":8,"type":"ERC-20","value":"100000000","tokenId":null,"price":null,"logo":"/uploads/token-b9bfa68b6774612e66eb693c7a0d00b2eb6bcdee-462b4308692af358.png"}],"summary":{"isContract":true,"isVerified":true,"name":"LOVEDAN","ensName":null,"creator":null,"creationTx":null,"publicTags":[],"hasTokens":true,"hasLogs":true,"validatedBlocks":false},"firstLast":{"last":{"hash":"0x41086499ca21ef9a3c5f8bae1524c691fa591c959f9207be9bffb4df3f334cae","timestamp":null,"blockNumber":null},"first":null,"fundedBy":null,"complete":false},"tab":"txs","page":1,"offset":25,"scan":{"available":true,"source":"blockscout","ok":true,"message":"OK"},"rows":[{"hash":"0x41086499ca21ef9a3c5f8bae1524c691fa591c959f9207be9bffb4df3f334cae","blockNumber":"","timeStamp":"","from":"0x0d4793e36e9257dbeae8bdd1226d36afeaa86430","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"56005","gasUsed":"","gasPrice":"5400000000000","isError":"1","txreceipt_status":"0","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf000000000000000000000000000000000000000000000004563918244f400000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x67182ba62d4aec9ba024e858d75949c57ca253c87b061f44d582dace39201eb1","blockNumber":"5108658","timeStamp":"1788452685","from":"0x0ffb7123635a28825ffc7019b3c5e25567d22ae6","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"56034","gasUsed":"46312","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf0000000000000000000000000000000000000000000000358bfc8870d6cd7a7f","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x994d47fd7c8b33554def4e5a9afff105145f974fa1be11dd85848eba2b9c0143","blockNumber":"5108244","timeStamp":"1788451857","from":"0x0c6c39601c88d85a5137fc6d51fba131acc6446b","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4543275220288","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000096782610d3d65ca65b44a1611c051db55e41571600000000000000000000000000000000000000000000001b1ae4d6e2ef500000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xef199c2a6f7247c557d608a8c0ea8c12f1b50f94a2b8ae96cff9f53da1c83e42","blockNumber":"5108204","timeStamp":"1788451777","from":"0x0c6c39601c88d85a5137fc6d51fba131acc6446b","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4539922318142","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000005ee9fe546cbcc83583a8f0e2924d43c9b1affa170000000000000000000000000000000000000000000000056bc75e2d63100000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xef810675b1969b5f4519f2ac11892bdfaa145a487061c45dae1c09da1c29c9c4","blockNumber":"5107099","timeStamp":"1788449567","from":"0xbf15493b120c3448d651e94ca59083ba1b57887b","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"70007","gasUsed":"46288","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000062a81f0c4aa2bca4bebfc52db20ce1d7098a27f0000000000000000000000000000000000000000000000376719613641380000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x8030d1d01867e69bc39d197b99cf49d032fb6cb636126d3c503b8fce58c3851e","blockNumber":"5105427","timeStamp":"1788446222","from":"0x455aef7b6676950d71c4a4bde5d4e162b948aadb","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5276198488238","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe45600000000000000000000000000000000000000000000005dbab1f35d8a640000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x12a5bd829185330abda9cd8695d08c4a55e73ee6f6200b68997a48776aedaec7","blockNumber":"5105401","timeStamp":"1788446170","from":"0x99634544cec4f71997ace60025418436e1733266","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5350108567690","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe45600000000000000000000000000000000000000000000004fbe39d24ed79c0000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x64505fc5ca394e781699f85921bdc9399749c2f211b3749c9b918ec7b63e718e","blockNumber":"5105355","timeStamp":"1788446078","from":"0x652d74b5d7faf6038ef95a9f9795b33d7b8ce36c","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4782936849423","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe45600000000000000000000000000000000000000000000001e69705fb1d2240000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x106405c533c824f752f966bcb92939d2821b36e58fd93711c8d6b8dc68a9a613","blockNumber":"5105328","timeStamp":"1788446024","from":"0xd487fe481c4bcb2a34626c11c66e05e8cea3ce32","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4881989518786","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe45600000000000000000000000000000000000000000000003bcb33300e37dc0000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x69bcc7a0c1bfafd23de641918af038a0de297d85d226cbb4ad3ce68e24930b52","blockNumber":"5105301","timeStamp":"1788445970","from":"0x56f81577a446587e60a3be860d41c1d62553f151","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4883404237685","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe45600000000000000000000000000000000000000000000001a3cd96ba879100000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x4320b1ca8dd4973c3272bd6d7b474b8e8b85b361c2c586d638fa9fbbebe47da9","blockNumber":"5105203","timeStamp":"1788445774","from":"0x75e9540eb8d7c43020a7491c6ab345a0018e144c","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4927975236049","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe4560000000000000000000000000000000000000000000000161042779f1ffc0000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x4a12bed467999f815cd29c04abc6e5e52a6359a2adfbcb1e4d95d88268cb6327","blockNumber":"5105137","timeStamp":"1788445642","from":"0xbecb467db25f79f9b04e0b20fdec3ef38b4544a9","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5266073125772","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe45600000000000000000000000000000000000000000000001b0a3d953e8cd80000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x0e65d9b027f617682f8a1ad0b0bc8edfd86913885816ebf51ee4ff9ae008553e","blockNumber":"5105077","timeStamp":"1788445522","from":"0xb575e3d7087ef0b18f769c53e0d17e4e92f35da9","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4610552923087","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe45600000000000000000000000000000000000000000000002e141ea081ca080000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x6743be8c44f93f575c82b521ddf70a86ad3ad9b00b65e0f70fb23b8c49b5c047","blockNumber":"5105025","timeStamp":"1788445418","from":"0xfa27a4a0b2b2e50207359300af128af16ba2d549","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4990701795423","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe456000000000000000000000000000000000000000000000017e81abb7b5b440000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xfbf8c9bab9ab400924be7f8e8fceb78ce8ed3dbd57e482a890e559daf9c9ca6d","blockNumber":"5104928","timeStamp":"1788445224","from":"0x7f78b559d0d85b9e4aaaa0663ce1685560847607","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5079879122437","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000004b21fa3c45942b4935020f4b4cc73e16dfbe4560000000000000000000000000000000000000000000000199650db3ca0600000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xe5e0e7ac832e9412b701b8958c0cd2be44603f1d6528d69207b90e4fe5934f13","blockNumber":"5104705","timeStamp":"1788444778","from":"0xa8d2e6254dbe0af7266035f33dad7be22d5ae2e7","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41666","gasUsed":"29563","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000002fbdb1afe73a6f08e6be9e639434e627846b14550000000000000000000000000000000000000000000000024680f09a6b32476e","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x46282029d790456c022990984943aaf161d7bcf6cce6055b3c40313dcf331381","blockNumber":"5103856","timeStamp":"1788443080","from":"0x7a730bb95fe893ee907d8d378b8c6f3ae9336956","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"70007","gasUsed":"46288","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000062a81f0c4aa2bca4bebfc52db20ce1d7098a27f000000000000000000000000000000000000000000000050c5e761a444080000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xb5cd7ea805c4dd3ebdb650daa136c8fb0febf36ba3bdeecdf7add2368e73527c","blockNumber":"5103709","timeStamp":"1788442786","from":"0x7a730bb95fe893ee907d8d378b8c6f3ae9336956","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"70025","gasUsed":"46300","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000062a81f0c4aa2bca4bebfc52db20ce1d7098a27f000000000000000000000000000000000000000000000134ff63f81b0e900000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x8be30127c1648c790cb6986682baf56ed09329806be897dc95983301663b32a8","blockNumber":"5102930","timeStamp":"1788441228","from":"0x1641a850d59466df9d12af3359071ea6090b192c","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4769214224091","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000db809917a3e076d92b47f21a7e16e040eb827295000000000000000000000000000000000000000000000005b12aefafa8040000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x6b12e4c5fe5b932cdc1341bbd9a896a65830fb2560fbbaad6f1d9e2407d07398","blockNumber":"5100915","timeStamp":"1788437198","from":"0x9c3fae9e30d7f278ff3c3a8b8440ae97d9af22f3","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"52101","gasUsed":"29575","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb00000000000000000000000066a85e3e6869ae73aad90290732d144ce1f16b6a00000000000000000000000000000000000000000000016bcaf3e8be01b152f6","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xe6dd7549a4de90bc560488fe1155d762efb4e4ec5f3ea7322e218f1438feef6d","blockNumber":"5099578","timeStamp":"1788434524","from":"0xc5ea6027493f156d98ab02109db3c02743aac679","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"56005","gasUsed":"46288","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf0000000000000000000000000000000000000000000000045d29737e22f20000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0xd81d9f494402e86aba90a540e5b270cc550754dafb6546f546cfa5c77e328703","blockNumber":"5099100","timeStamp":"1788433568","from":"0x0636bc9a3f6018280a0895c5246514448d11a034","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"4700666239995","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000f22939bf7ccc8331bc16219622536012ca1d6218000000000000000000000000000000000000000000000003cb71f51fc5580000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xd517775f90a0bea94fa9638b780d782de45a65c1df432935040eb0ebd655a228","blockNumber":"5098656","timeStamp":"1788432679","from":"0x06ca7be30011650715fa56db98f3a2c49fcd3144","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000b1e6970bf7160db79f52dc8db790a7100aac22e8000000000000000000000000000000000000000000000057473d05dabae80000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x18559cce5dcaa94c7becdd9294b89f4c29e7f4efd948d0feca6f6d18859a7290","blockNumber":"5098623","timeStamp":"1788432613","from":"0x3afd2837361df739d23377fc0d4a478ba135ddc5","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000b1e6970bf7160db79f52dc8db790a7100aac22e8000000000000000000000000000000000000000000000007518058bd45bc0000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xcadf41ec2633516a5c1986893d02c66db027457790b70f2ecfd55b6271e70ca0","blockNumber":"5098594","timeStamp":"1788432555","from":"0x767eeb174f133d363ec85ab1d58740f75a25b77f","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000b1e6970bf7160db79f52dc8db790a7100aac22e800000000000000000000000000000000000000000000001043561a8829300000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x7049f90f0bc77238f9db39a59718cdcf7d9d05eda6c7fb4ee511e37b3ec74df3","blockNumber":"5096754","timeStamp":"1788428875","from":"0x8064ba4b2b7aac2e92166a153e91937a09903010","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"35000","gasUsed":"34339","gasPrice":"10000000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000002e4ee3a373a1592b71888e8c6bac56856b6c21cd000000000000000000000000000000000000000000000015af1d78b58c400000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x6b07e4e4962842a437329af225532482156b1920e4bf20c75c1003121186001f","blockNumber":"5096691","timeStamp":"1788428749","from":"0x8064ba4b2b7aac2e92166a153e91937a09903010","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"32398","gasUsed":"32398","gasPrice":"5193295863394","isError":"1","txreceipt_status":"0","input":"0xa9059cbb0000000000000000000000002e4ee3a373a1592b71888e8c6bac56856b6c21cd000000000000000000000000000000000000000000000012d7e2649979d7c000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x6c9b459e3f7706600eb3524fd30eee0932b96e950e2ea39662cccff6868ece50","blockNumber":"5096642","timeStamp":"1788428651","from":"0x8064ba4b2b7aac2e92166a153e91937a09903010","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"30000","gasUsed":"30000","gasPrice":"25000000000000","isError":"1","txreceipt_status":"0","input":"0xa9059cbb0000000000000000000000002e4ee3a373a1592b71888e8c6bac56856b6c21cd000000000000000000000000000000000000000000000012d7e2649979d7c000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xee52187c84dc31d848dfb1b4cc01a1a8bd8a6d70144ad1d8613fbe7db637cfea","blockNumber":"5096563","timeStamp":"1788428493","from":"0x8064ba4b2b7aac2e92166a153e91937a09903010","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"30000","gasUsed":"30000","gasPrice":"4509714455311","isError":"1","txreceipt_status":"0","input":"0xa9059cbb0000000000000000000000002e4ee3a373a1592b71888e8c6bac56856b6c21cd000000000000000000000000000000000000000000000012d7e2649979d7c000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xb835fd84411729432cab34ecacb703c7a3615295c589542c010c7885586d3e02","blockNumber":"5096421","timeStamp":"1788428209","from":"0x8064ba4b2b7aac2e92166a153e91937a09903010","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41652","gasUsed":"34351","gasPrice":"4549492239612","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000a1d5f4545e259d787e6da37296b10cf4a732426d0000000000000000000000000000000000000000000000117f245ddd46ee8000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x7c79530d7c62e6897e46fc652669d568496660dca9e7ef658219e5a1524153fe","blockNumber":"5094928","timeStamp":"1788425223","from":"0xc19f14288a02b1f6519b9ce7590be2668d031e30","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"55990","gasUsed":"46276","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf0000000000000000000000000000000000000000000000007ce66c50e2840000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x5b02a9639f226942cd670cdaa33c971431e18bf3f0c6524846b9605a6685bc87","blockNumber":"5094816","timeStamp":"1788424999","from":"0x8569d1ec14f3300d128a3edabf986b7feb0a6d40","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41652","gasUsed":"34351","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000a895b91d41197da0e3d72cacfa32bfbd6dc537f6000000000000000000000000000000000000000000000100122acc71da8fec00","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xdcce739e7e3eb64f9846fe9e74329dfec1199770726ef6d9cd1aee6544ea75eb","blockNumber":"5094686","timeStamp":"1788424739","from":"0x0ffb7123635a28825ffc7019b3c5e25567d22ae6","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"46695","gasUsed":"46312","gasPrice":"5384264237658","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000f9c71d018afcd4d6fa80abcf8a52fb2b292f22720000000000000000000000000000000000000000204fce5e3e25026110000000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x58805b3cc6e2e37df1316bd8438f76b2cc6bfd09e6c01031bb7caf48a77665d6","blockNumber":"5094654","timeStamp":"1788424675","from":"0xc8fb1b2ac2f9b84b2e337eb778d6e8f712e86008","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41652","gasUsed":"29551","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000a895b91d41197da0e3d72cacfa32bfbd6dc537f6000000000000000000000000000000000000000000000000f3cc9dd310a86e78","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x19f6a7cfcbd9555fe12f95e67f3b54c54aa0e99e7ee4d3de2d1f44dd8e601bf3","blockNumber":"5094623","timeStamp":"1788424613","from":"0xb17895d725a81c4ae79682510605f79f86a30d1a","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"62227","gasUsed":"51463","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000a895b91d41197da0e3d72cacfa32bfbd6dc537f6000000000000000000000000000000000000000000000002df5634541d6bbab0","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x212ff7df63e8e5d3771d02a172a3c7b43c53ddfdc16257fa262a91f0e1800a73","blockNumber":"5094429","timeStamp":"1788424225","from":"0xfe4ab2f3e7da1679e0effcf3f414f5e0c1a1f243","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"46695","gasUsed":"46312","gasPrice":"4999494944150","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000f9c71d018afcd4d6fa80abcf8a52fb2b292f22720000000000000000000000000000000000000000204fce5e3e25026110000000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x0d3b78b9c581653213153d2d161da300ce5f5eadb4e173577b3fc46d2e3fc080","blockNumber":"5094381","timeStamp":"1788424129","from":"0x8569d1ec14f3300d128a3edabf986b7feb0a6d40","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41680","gasUsed":"34375","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000c8fb1b2ac2f9b84b2e337eb778d6e8f712e8600800000000000000000000000000000000000000000000010a362de3beafa5fbc0","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xf85833196b5f5f19fffa13d09d85412455368db3a4dc4b23358aefbfb6449ded","blockNumber":"5094303","timeStamp":"1788423973","from":"0xbad2fc86b152332c43fdc71f0b3df03ed52778a0","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"62198","gasUsed":"46639","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000fe4ab2f3e7da1679e0effcf3f414f5e0c1a1f243000000000000000000000000000000000000000000000002fb474098f67c0000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x62d535491eee16e9b243ff6c52b5ccd40f6f65d551df7a03b0cafec1c1e229ce","blockNumber":"5094265","timeStamp":"1788423897","from":"0x4cab048df3bf97bdfdc69dc1b57b19ea6261656b","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"29539","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000c8fb1b2ac2f9b84b2e337eb778d6e8f712e86008000000000000000000000000000000000000000000000002fb474098f67c0000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x42a2a05940f59fdd790dd9d00ca2e39e699817b5bd6224bf13b2dc6e0ea12eaa","blockNumber":"5094214","timeStamp":"1788423795","from":"0x8569d1ec14f3300d128a3edabf986b7feb0a6d40","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"62227","gasUsed":"46663","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb000000000000000000000000c8fb1b2ac2f9b84b2e337eb778d6e8f712e86008000000000000000000000000000000000000000000000002cf47de58c3a672b8","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x82d3ea9b8cf0d8b78144e331dc7cfa365e921d538346310c8b5a95eb9cf9829e","blockNumber":"5093779","timeStamp":"1788422925","from":"0x5affe3f8c5e22726aa9aef690d7f92829e9e0d20","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41666","gasUsed":"29563","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000008569d1ec14f3300d128a3edabf986b7feb0a6d4000000000000000000000000000000000000000000000002b142a09eb4dd9c528","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xc1f3c2ecd5145600a34abc4833fe265266014f111bae810b79583d2523dc5879","blockNumber":"5093518","timeStamp":"1788422403","from":"0x971f479210915de254a36069c9b071967ad0592a","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000008632041a6e775f2c89b66a8bf3023a93fc29e6a7000000000000000000000000000000000000000000000012b3d6381c95c40000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x2ac39e123d1901ec26f4d7b8bcc916e4bb0dbab1353781dbc81e08088baf6a1d","blockNumber":"5093456","timeStamp":"1788422279","from":"0x3203d1537776d50fb460ad0dfa53ce88f940ed50","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5238346745461","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000008632041a6e775f2c89b66a8bf3023a93fc29e6a700000000000000000000000000000000000000000000000f732b66015a540000","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x99e46d8cde41f557917adb53d7fec1571deae88f4d27c07daa4eecde583a90d6","blockNumber":"5093421","timeStamp":"1788422209","from":"0x7aaa10e742a0b97719ffe14b2d5a17958bebbb66","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41637","gasUsed":"34339","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000008569d1ec14f3300d128a3edabf986b7feb0a6d40000000000000000000000000000000000000000000000039a1deb91c00e16600","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x7f3add0a6970581f6e26dd948862d28ed7533d5b06a6b2109ed86d494a8bcf75","blockNumber":"5093387","timeStamp":"1788422141","from":"0xa56d15893a5260b734c91978a8598a47b3e121be","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41666","gasUsed":"29563","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000008569d1ec14f3300d128a3edabf986b7feb0a6d40000000000000000000000000000000000000000000000042121b0848828acca9","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x1af14ec820e9d48a03863bfc58dd6a86164667544cf8d8c88789bf9d2b5d4799","blockNumber":"5093359","timeStamp":"1788422085","from":"0x7cdf0b4b5eb5488c4c98ce04afc196e457e8604a","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41666","gasUsed":"29563","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000008569d1ec14f3300d128a3edabf986b7feb0a6d4000000000000000000000000000000000000000000000000c5e548b323ed491f9","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xbed2591a3149b9253fa9e6ed562efa0c79ff5e3c3f1412237de70330b89d05b2","blockNumber":"5092051","timeStamp":"1788419469","from":"0x41e8ea91d36e11d9202d080b630051d1d24d3fce","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"56019","gasUsed":"46300","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x095ea7b3000000000000000000000000708e8574d232e57f6593734b4110efee2a079cdf000000000000000000000000000000000000000000000193dd84e83554280000","methodId":"0x095ea7b3","functionName":"approve"},{"hash":"0x0e617d269a9611532ef8e1a2dd3a5ddcb34646c822f9ddc6e40d542ec5d094a6","blockNumber":"5091043","timeStamp":"1788417453","from":"0x9d06f6ec8171480c9eedff4e90228aab9d0d17f5","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41666","gasUsed":"29563","gasPrice":"5385372935173","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000006e24de2ec7cd3db9ade7d6a2a829472fb99c9f4a00000000000000000000000000000000000000000000007d12db87d0d5922b31","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0x95a33d491d16c49dace7def08f10839e2fd0c6c6ba6cc272e9bf9abc2622e7ed","blockNumber":"5091023","timeStamp":"1788417413","from":"0x78947bc2e3bed811acc55b216b88ec61ed2c8254","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41666","gasUsed":"29563","gasPrice":"5355310778040","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000006e24de2ec7cd3db9ade7d6a2a829472fb99c9f4a00000000000000000000000000000000000000000000007e67daabfe7e57ebd0","methodId":"0xa9059cbb","functionName":"transfer"},{"hash":"0xc921f290b306104999a4add0753b875d3d6cd670a154582473b875a16fcf7b04","blockNumber":"5090667","timeStamp":"1788416701","from":"0x5518d5428357c3126901c60651a35fb81a379d3c","to":"0x6f22d0eab6ddac3d36b9f3043c3524fd4b7936a7","contractAddress":"","value":"0","gas":"41623","gasUsed":"29527","gasPrice":"4648484644442","isError":"0","txreceipt_status":"1","input":"0xa9059cbb0000000000000000000000002dd2399ff56f0b6ab66e43b5ae1a28c8da7287dc0000000000000000000000000000000000000000000000008ac7230489e80000","methodId":"0xa9059cbb","functionName":"transfer"}],"nextCursor":{"block_number":5090667,"fee":"137255806096438934","hash":"0xc921f290b306104999a4add0753b875d3d6cd670a154582473b875a16fcf7b04","index":0,"inserted_at":"2026-09-03T06:25:02.413514Z","items_count":50,"value":"0"}}