ETH Price: $2,778.25 (+3.16%)

Transaction Decoder

Block:
22544089 at May-23-2025 07:30:11 AM +UTC
Transaction Fee:
0.000058898 ETH $0.16
Gas Used:
29,449 Gas / 2 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.013665276 Eth
Nonce: 113464
0.013606378 Eth
Nonce: 113465
0.000058898
(Titan Builder)
8.685305636021227932 Eth8.685328817158028628 Eth0.000023181136800696
0xD533a949...bA034cd52

Execution Trace

Vyper_contract.transfer( _to=0x28C6c06298d514Db089934071355E5743bf21d60, _value=15210706722630000000000 ) => ( 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