ETH Price: $2,533.01 (+0.37%)

Transaction Decoder

Block:
22556822 at May-25-2025 02:19:11 AM +UTC
Transaction Fee:
0.000083617399751448 ETH $0.21
Gas Used:
34,428 Gas / 2.428761466 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x28C6c062...43bf21d60
(Binance 14)
132,076.001473032482947339 Eth
Nonce: 12426498
132,076.001389415083195891 Eth
Nonce: 12426499
0.000083617399751448
(Titan Builder)
14.99071514919065428 Eth14.99078400519065428 Eth0.000068856
0xDEf1CA1f...015F497aB

Execution Trace

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