ETH Price: $3,841.10 (+2.15%)

Transaction Decoder

Block:
22720583 at Jun-17-2025 12:13:47 AM +UTC
Transaction Fee:
0.000189584673250608 ETH $0.73
Gas Used:
34,416 Gas / 5.508620213 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
6.727504772873102945 Eth6.727573604873102945 Eth0.000068832
0xDEf1CA1f...015F497aB
0xDFd5293D...a1343963d
(Binance 16)
24,351.620767957577774228 Eth
Nonce: 11687288
24,351.62057837290452362 Eth
Nonce: 11687289
0.000189584673250608

Execution Trace

CowProtocolToken.transfer( recipient=0xBEE3211ab312a8D065c4FeF0247448e17A8da000, amount=21263300000000000000000 ) => ( 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