Transaction Hash:
Block:
22712360 at Jun-15-2025 08:36:11 PM +UTC
Transaction Fee:
0.000097914283966368 ETH
$0.32
Gas Used:
34,416 Gas / 2.845022198 Gwei
Emitted Events:
172 |
CowProtocolToken.Transfer( from=[Sender] 0x21a31ee1afc51d94c2efccaa2092ad1028285549, to=0xBEE3211ab312a8D065c4FeF0247448e17A8da000, value=16927200000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x21a31Ee1...028285549 | (Binance 15) |
23,475.491002317201147597 Eth
Nonce: 12201168
|
23,475.490904402917181229 Eth
Nonce: 12201169
| 0.000097914283966368 | |
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 29.489454073199206895 Eth | 29.489522905199206895 Eth | 0.000068832 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0xBEE3211ab312a8D065c4FeF0247448e17A8da000, amount=16927200000000000000000 ) => ( True )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-or-laterpragma 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 Developerscontract 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{}}