Transaction Hash:
Block:
22556820 at May-25-2025 02:18:47 AM +UTC
Transaction Fee:
0.000123093172308864 ETH
$0.31
Gas Used:
51,528 Gas / 2.388859888 Gwei
Emitted Events:
87 |
CowProtocolToken.Transfer( from=[Sender] 0xdfd5293d8e347dfe59e90efd55b2956a1343963d, to=0x673E5B12c19891276353343F9A342BF5c1cc45Db, value=1368726251800000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.380607741657422526 Eth | 13.380710797657422526 Eth | 0.000103056 | |
0xDEf1CA1f...015F497aB | |||||
0xDFd5293D...a1343963d | (Binance 16) |
24,767.290439593937912419 Eth
Nonce: 11516661
|
24,767.290316500765603555 Eth
Nonce: 11516662
| 0.000123093172308864 |
Execution Trace
CowProtocolToken.transfer( recipient=0x673E5B12c19891276353343F9A342BF5c1cc45Db, amount=1368726251800000000000 ) => ( 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{}}