ETH Price: $2,547.73 (+1.52%)

Transaction Decoder

Block:
22580077 at May-28-2025 08:29:47 AM +UTC
Transaction Fee:
0.00018978695081916 ETH $0.48
Gas Used:
51,540 Gas / 3.682323454 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
7.605729078777702464 Eth7.605832158777702464 Eth0.00010308
0x6a35c225...D76D07EaB
3.22738828282825348 Eth
Nonce: 533
3.22719849587743432 Eth
Nonce: 534
0.00018978695081916
0xDEf1CA1f...015F497aB

Execution Trace

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