ETH Price: $4,242.38 (+0.58%)

Transaction Decoder

Block:
22582187 at May-28-2025 03:35:47 PM +UTC
Transaction Fee:
0.00029628 ETH $1.26
Gas Used:
29,628 Gas / 10 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(BuilderNet)
38.300529792669101154 Eth38.300551062581265714 Eth0.00002126991216456
0xDEf1CA1f...015F497aB
0xFE9529b7...0A85C101E
(Binance Dep: 0xFE9529b753b412941127Fea1981E5cE0A85C101E)
0.011217427772876104 Eth
Nonce: 85386
0.010921147772876104 Eth
Nonce: 85387
0.00029628

Execution Trace

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