Transaction Hash:
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:
282 |
Vyper_contract.Transfer( _from=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, _to=0x28C6c06298d514Db089934071355E5743bf21d60, _value=36337100000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06FD4bA7...Caa99E3B0 | (Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0) |
0.016479625762445375 Eth
Nonce: 123459
|
0.016420751762445375 Eth
Nonce: 123460
| 0.000058874 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.274021103951858589 Eth | 5.27404736819823435 Eth | 0.000026264246375761 | |
0xD533a949...bA034cd52 |
Execution Trace
Vyper_contract.transfer( _to=0x28C6c06298d514Db089934071355E5743bf21d60, _value=36337100000000000000000 ) => ( True )
1234567891011121314151617181920212223242526# @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 athttps://eips.ethereum.org/EIPS/eip-20"""from vyper.interfaces import ERC20implements: ERC20event Transfer:_from: indexed(address)_to: indexed(address)_value: uint256event Approval:_owner: indexed(address)_spender: indexed(address)_value: uint256event UpdateMiningParameters: