ETH Price: $2,532.42 (-1.85%)

Transaction Decoder

Block:
22581294 at May-28-2025 12:35:11 PM +UTC
Transaction Fee:
0.000301232900731032 ETH $0.76
Gas Used:
29,628 Gas / 10.167169594 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
5.434481213358600637 Eth5.434510841358600637 Eth0.000029628
0x8Ea1eB6E...4e2e5ffa3
0.000395922 Eth
Nonce: 35
0.000094689099268968 Eth
Nonce: 36
0.000301232900731032
0xDEf1CA1f...015F497aB

Execution Trace

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