ETH Price: $2,531.04 (+0.50%)

Transaction Decoder

Block:
22552624 at May-24-2025 12:12:59 PM +UTC
Transaction Fee:
0.000059304 ETH $0.15
Gas Used:
29,652 Gas / 2 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
5.758812804269478219 Eth5.758854544679920383 Eth0.000041740410442164
0xC17A4085...C539bA753
(Binance Dep: 0xC17A40852E4BfE04Bc81Af355Fdf132C539bA753)
0.00747235 Eth
Nonce: 11272
0.007413046 Eth
Nonce: 11273
0.000059304
0xDEf1CA1f...015F497aB

Execution Trace

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