Transaction Hash:
Block:
22556836 at May-25-2025 02:21:59 AM +UTC
Transaction Fee:
0.00025082037371556 ETH
$0.71
Gas Used:
46,728 Gas / 5.367667645 Gwei
Emitted Events:
103 |
CowProtocolToken.Transfer( from=[Sender] 0x0df83fb6db068d9db2a512c7a307071eac126351, to=0x6D7F81Fd14dCA44fE0FE97Ba80fB0Ef5CfC0e9f8, value=77800000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0Df83fB6...eAC126351 |
0.232455713945209823 Eth
Nonce: 3852
|
0.232204893571494263 Eth
Nonce: 3853
| 0.00025082037371556 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 15.012815636136232755 Eth | 15.013049276136232755 Eth | 0.00023364 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0x6D7F81Fd14dCA44fE0FE97Ba80fB0Ef5CfC0e9f8, amount=77800000000000000000000 ) => ( 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{}}