ETH Price: $2,539.53 (+1.61%)

Transaction Decoder

Block:
22581860 at May-28-2025 02:29:47 PM +UTC
Transaction Fee:
0.000462673583852832 ETH $1.17
Gas Used:
46,728 Gas / 9.901420644 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0497A73e...DE9018E57
0.005911865605984117 Eth
Nonce: 48
0.005449192022131285 Eth
Nonce: 49
0.000462673583852832
4.501091831269300838 Eth4.501095990061300838 Eth0.000004158792
0xDEf1CA1f...015F497aB

Execution Trace

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