Transaction Hash:
Block:
22581860 at May-28-2025 02:29:47 PM +UTC
Transaction Fee:
0.000462673583852832 ETH
$1.17
Gas Used:
46,728 Gas / 9.901420644 Gwei
Emitted Events:
271 |
CowProtocolToken.Transfer( from=[Sender] 0x0497a73e40ab8a7a3b6b0bd57cad42fde9018e57, to=0x2F5C6e17635BEE7B64B366b636bC598949e6c400, value=1800554903612458278343 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0497A73e...DE9018E57 |
0.005911865605984117 Eth
Nonce: 48
|
0.005449192022131285 Eth
Nonce: 49
| 0.000462673583852832 | ||
0x1f9090aa...8e676c326
Miner
| 4.501091831269300838 Eth | 4.501095990061300838 Eth | 0.000004158792 | ||
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0x2F5C6e17635BEE7B64B366b636bC598949e6c400, amount=1800554903612458278343 ) => ( 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{}}