ETH Price: $2,964.25 (-0.88%)
Gas: 0.62 Gwei

Transaction Decoder

Block:
22717514 at Jun-16-2025 01:55:47 PM +UTC
Transaction Fee:
0.00016286162260392 ETH $0.48
Gas Used:
34,416 Gas / 4.732148495 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x21a31Ee1...028285549
(Binance 15)
24,110.740354036949080876 Eth
Nonce: 12206342
24,110.740191175326476956 Eth
Nonce: 12206343
0.00016286162260392
(Titan Builder)
6.704666588981500786 Eth6.704735420981500786 Eth0.000068832
0xDEf1CA1f...015F497aB

Execution Trace

CowProtocolToken.transfer( recipient=0xBEE3211ab312a8D065c4FeF0247448e17A8da000, amount=13899500000000000000000 ) => ( 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
// SPDX-License-Identifier: LGPL-3.0-or-later
pragma solidity ^0.8.10;
import "./mixins/InflationaryToken.sol";
import "./vendored/mixins/StorageAccessible.sol";
/// @dev The governance token for the CoW Protocol.
/// @title CoW Protocol Governance Token
/// @author CoW Protocol Developers
contract CowProtocolToken is InflationaryToken, StorageAccessible {
string private constant ERC20_SYMBOL = "COW";
string private constant ERC20_NAME = "CoW Protocol Token";
constructor(
address initialTokenHolder,
address cowDao,
uint256 totalSupply
)
InflationaryToken(
initialTokenHolder,
cowDao,
totalSupply,
ERC20_NAME,
ERC20_SYMBOL
)
// solhint-disable-next-line no-empty-blocks
{
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX