ETH Price: $3,769.71 (+0.70%)

Transaction Decoder

Block:
22711068 at Jun-15-2025 04:16:35 PM +UTC
Transaction Fee:
0.000079954936459104 ETH $0.30
Gas Used:
34,404 Gas / 2.324001176 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
6.713971964241603084 Eth6.713989166241603084 Eth0.000017202
0xddA35a6b...74a0faFD3
0.000393643975411283 Eth
Nonce: 856
0.000313689038952179 Eth
Nonce: 857
0.000079954936459104
0xDEf1CA1f...015F497aB

Execution Trace

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