ETH Price: $2,745.35 (-2.13%)

Transaction Decoder

Block:
22556699 at May-25-2025 01:54:35 AM +UTC
Transaction Fee:
0.000081202263662688 ETH $0.22
Gas Used:
34,404 Gas / 2.360256472 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x28C6c062...43bf21d60
(Binance 14)
129,518.916185936498549935 Eth
Nonce: 12426412
129,518.916104734234887247 Eth
Nonce: 12426413
0.000081202263662688
(beaverbuild)
13.10899571867398261 Eth13.10906452667398261 Eth0.000068808
0xDEf1CA1f...015F497aB

Execution Trace

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