ETH Price: $3,867.11 (+0.61%)

Transaction Decoder

Block:
22612223 at Jun-01-2025 08:27:11 PM +UTC
Transaction Fee:
0.000066312312696125 ETH $0.26
Gas Used:
65,125 Gas / 1.018231289 Gwei

Emitted Events:

620 VraToken.Sent( operator=[Sender] 0xa152f8bb749c55e9943a3a0a3111d18ee2b3f94e, from=0x2BdfeD0dd62aB5Ad2B94498e42ff0aD587E2dA44, to=0x58edF78281334335EfFa23101bBe3371b6a36A51, amount=469000000000000000000000, data=0x, operatorData=0x )
621 VraToken.Transfer( from=0x2BdfeD0dd62aB5Ad2B94498e42ff0aD587E2dA44, to=0x58edF78281334335EfFa23101bBe3371b6a36A51, value=469000000000000000000000 )
622 VraToken.Approval( owner=0x2BdfeD0dd62aB5Ad2B94498e42ff0aD587E2dA44, spender=[Sender] 0xa152f8bb749c55e9943a3a0a3111d18ee2b3f94e, value=115792089237316195423570985008687907853269984665640554273098421091278232289869 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
10.99304239988716252 Eth10.99304305113716252 Eth0.00000065125
0xa152F8bb...ee2B3f94E
(KuCoin 22)
24.396674110126893305 Eth
Nonce: 2966601
24.39660779781419718 Eth
Nonce: 2966602
0.000066312312696125
0xF411903c...a66507255

Execution Trace

VraToken.transferFrom( holder=0x2BdfeD0dd62aB5Ad2B94498e42ff0aD587E2dA44, recipient=0x58edF78281334335EfFa23101bBe3371b6a36A51, amount=469000000000000000000000 ) => ( True )
  • ERC1820Registry.getInterfaceImplementer( _addr=0x2BdfeD0dd62aB5Ad2B94498e42ff0aD587E2dA44, _interfaceHash=29DDB589B1FB5FC7CF394961C1ADF5F8C6454761ADF795E67FE149F658ABE895 ) => ( 0x0000000000000000000000000000000000000000 )
  • ERC1820Registry.getInterfaceImplementer( _addr=0x58edF78281334335EfFa23101bBe3371b6a36A51, _interfaceHash=B281FC8C12954D22544DB45DE3159A39272895B169A852B314F9CC762E44C53B ) => ( 0x0000000000000000000000000000000000000000 )
    File 1 of 2: VraToken
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity >=0.6.0 <0.8.0;
    /*
    * @dev Provides information about the current execution context, including the
    * sender of the transaction and its data. While these are generally available
    * via msg.sender and msg.data, they should not be accessed in such a direct
    * manner, since when dealing with GSN meta-transactions the account sending and
    * paying for execution may not be the actual sender (as far as an application
    * is concerned).
    *
    * This contract is only required for intermediate, library-like contracts.
    */
    abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: ERC1820Registry
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    /* ERC1820 Pseudo-introspection Registry Contract
    * This standard defines a universal registry smart contract where any address (contract or regular account) can
    * register which interface it supports and which smart contract is responsible for its implementation.
    *
    * Written in 2019 by Jordi Baylina and Jacques Dafflon
    *
    * To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to
    * this software to the public domain worldwide. This software is distributed without any warranty.
    *
    * You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
    * <http://creativecommons.org/publicdomain/zero/1.0/>.
    *
    * ███████╗██████╗ ██████╗ ██╗ █████╗ ██████╗ ██████╗
    * ██╔════╝██╔══██╗██╔════╝███║██╔══██╗╚════██╗██╔═████╗
    * █████╗ ██████╔╝██║ ╚██║╚█████╔╝ █████╔╝██║██╔██║
    * ██╔══╝ ██╔══██╗██║ ██║██╔══██╗██╔═══╝ ████╔╝██║
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX