ETH Price: $3,428.71 (+1.28%)

Transaction Decoder

Block:
22693372 at Jun-13-2025 04:52:47 AM +UTC
Transaction Fee:
0.000058874 ETH $0.20
Gas Used:
29,437 Gas / 2 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.016479625762445375 Eth
Nonce: 123459
0.016420751762445375 Eth
Nonce: 123460
0.000058874
(Titan Builder)
5.274021103951858589 Eth5.27404736819823435 Eth0.000026264246375761
0xD533a949...bA034cd52

Execution Trace

Vyper_contract.transfer( _to=0x28C6c06298d514Db089934071355E5743bf21d60, _value=36337100000000000000000 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# @version 0.2.4
"""
@title Curve DAO Token
@author Curve Finance
@license MIT
@notice ERC20 with piecewise-linear mining supply.
@dev Based on the ERC-20 token standard as defined at
https://eips.ethereum.org/EIPS/eip-20
"""
from vyper.interfaces import ERC20
implements: ERC20
event Transfer:
_from: indexed(address)
_to: indexed(address)
_value: uint256
event Approval:
_owner: indexed(address)
_spender: indexed(address)
_value: uint256
event UpdateMiningParameters:
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX