ETH Price: $3,733.63 (+4.01%)
Gas: 0.78 Gwei

Transaction Decoder

Block:
22704042 at Jun-14-2025 04:39:11 PM +UTC
Transaction Fee:
0.000139552 ETH $0.52
Gas Used:
69,776 Gas / 2 Gwei

Emitted Events:

140 Amp.Transfer( from=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=2070262000000000000000000 )
141 Amp.TransferByPartition( fromPartition=0000000000000000000000000000000000000000000000000000000000000000, operator=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, from=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=2070262000000000000000000, data=0x, operatorData=0x )

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.013958 Eth
Nonce: 123873
0.013818448 Eth
Nonce: 123874
0.000139552
(beaverbuild)
24.988052371503599584 Eth24.988147789311539136 Eth0.000095417807939552
0xfF208177...8D11095C2

Execution Trace

Amp.transfer( _to=0x28C6c06298d514Db089934071355E5743bf21d60, _value=2070262000000000000000000 ) => ( True )
  • ERC1820Registry.getInterfaceImplementer( _addr=0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0, _interfaceHash=60881B58A7AD1EBD3BC0E92B8277996363A67DED0F43BD95D11C320BAB72B5A4 ) => ( 0x0000000000000000000000000000000000000000 )
  • ERC1820Registry.getInterfaceImplementer( _addr=0x28C6c06298d514Db089934071355E5743bf21d60, _interfaceHash=FA352D6368BBC643BCF9D528FFABA5DD3E826137BC42F935045C6C227BD4C72A ) => ( 0x0000000000000000000000000000000000000000 )
    transfer[Amp (ln:1078)]
    File 1 of 2: Amp
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity 0.6.10;
    /**
    * @dev Wrappers over Solidity's arithmetic operations with added overflow
    * checks.
    *
    * Arithmetic operations in Solidity wrap on overflow. This can easily result
    * in bugs, because programmers usually assume that an overflow raises an
    * error, which is the standard behavior in high level programming languages.
    * `SafeMath` restores this intuition by reverting the transaction when an
    * operation overflows.
    *
    * Using this library instead of the unchecked operations eliminates an entire
    * class of bugs, so it's recommended to use it always.
    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