Transaction Hash:
Block:
22579408 at May-28-2025 06:13:59 AM +UTC
Transaction Fee:
0.000118805473789488 ETH
$0.30
Gas Used:
34,416 Gas / 3.452041893 Gwei
Emitted Events:
226 |
CowProtocolToken.Transfer( from=[Sender] 0x28c6c06298d514db089934071355e5743bf21d60, to=0xBEE3211ab312a8D065c4FeF0247448e17A8da000, value=15281180000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x28C6c062...43bf21d60 | (Binance 14) |
286,701.778659075060383596 Eth
Nonce: 12449153
|
286,701.778540269586594108 Eth
Nonce: 12449154
| 0.000118805473789488 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.101774758415466636 Eth | 7.101843590415466636 Eth | 0.000068832 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0xBEE3211ab312a8D065c4FeF0247448e17A8da000, amount=15281180000000000000000 ) => ( 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{}}