ETH Price: $3,065.15 (+1.87%)

Transaction Decoder

Block:
22585076 at May-29-2025 01:16:59 AM +UTC
Transaction Fee:
0.000201531903009312 ETH $0.62
Gas Used:
51,528 Gas / 3.911114404 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.21919432642448427 Eth12.21929738242448427 Eth0.000103056
0xDEf1CA1f...015F497aB
0xDFd5293D...a1343963d
(Binance 16)
26,453.786695960901020319 Eth
Nonce: 11545061
26,453.786494428998011007 Eth
Nonce: 11545062
0.000201531903009312

Execution Trace

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