ETH Price: $2,521.92 (+1.13%)

Transaction Decoder

Block:
22585253 at May-29-2025 01:52:59 AM +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)
13.237666620485897247 Eth13.237675819490320695 Eth0.000009199004423448
0xa9C61FE5...7ff34c21d
(Binance Dep: 0xa9C61FE59b5702b1d382fd1d5e495887ff34c21d)
368.72209596152374399 Eth
Nonce: 21198
368.72203665752374399 Eth
Nonce: 21199
0.000059304
0xDEf1CA1f...015F497aB

Execution Trace

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