Transaction Hash:
Block:
22581294 at May-28-2025 12:35:11 PM +UTC
Transaction Fee:
0.000301232900731032 ETH
$0.77
Gas Used:
29,628 Gas / 10.167169594 Gwei
Emitted Events:
283 |
CowProtocolToken.Transfer( from=[Sender] 0x8ea1eb6ef1dbb646253cadef0e1a8aa4e2e5ffa3, to=0xA9D1e08C7793af67e9d92fe308d5697FB81d3E43, value=6851560000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.434481213358600637 Eth | 5.434510841358600637 Eth | 0.000029628 | |
0x8Ea1eB6E...4e2e5ffa3 |
0.000395922 Eth
Nonce: 35
|
0.000094689099268968 Eth
Nonce: 36
| 0.000301232900731032 | ||
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0xA9D1e08C7793af67e9d92fe308d5697FB81d3E43, amount=6851560000000000000000 ) => ( 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{}}