Transaction Hash:
Block:
22556820 at May-25-2025 02:18:47 AM +UTC
Transaction Fee:
0.000082243668224064 ETH
$0.21
Gas Used:
34,428 Gas / 2.388859888 Gwei
Emitted Events:
95 |
CowProtocolToken.Transfer( from=[Sender] 0x28c6c06298d514db089934071355e5743bf21d60, to=0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404, value=16693920000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x28C6c062...43bf21d60 | (Binance 14) |
132,088.178131609857532672 Eth
Nonce: 12426494
|
132,088.178049366189308608 Eth
Nonce: 12426495
| 0.000082243668224064 | |
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.381422409657422526 Eth | 13.381491265657422526 Eth | 0.000068856 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404, amount=16693920000000000000000 ) => ( 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{}}