ETH Price: $2,531.60 (-7.48%)

Transaction Decoder

Block:
22554668 at May-24-2025 07:05:11 PM +UTC
Transaction Fee:
0.00003274795040004 ETH $0.08
Gas Used:
51,540 Gas / 0.635389026 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
2.720354427948609569 Eth2.720359584474069569 Eth0.00000515652546
0x5bdf8521...38e03F7Ef
(Bitget 5)
102.230014962499760029 Eth
Nonce: 452785
102.229982214549359989 Eth
Nonce: 452786
0.00003274795040004
0xDEf1CA1f...015F497aB

Execution Trace

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