Transaction Hash:
Block:
22556822 at May-25-2025 02:19:11 AM +UTC
Transaction Fee:
0.000125149220820048 ETH
$0.32
Gas Used:
51,528 Gas / 2.428761466 Gwei
Emitted Events:
289 |
CowProtocolToken.Transfer( from=[Sender] 0x28c6c06298d514db089934071355e5743bf21d60, to=0x4fcACef854bfB0Af139080437A8B8aEf899Dda66, value=6723020000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x28C6c062...43bf21d60 | (Binance 14) |
132,076.001192860275275443 Eth
Nonce: 12426500
|
132,076.001067711054455395 Eth
Nonce: 12426501
| 0.000125149220820048 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.99094586119065428 Eth | 14.99104891719065428 Eth | 0.000103056 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0x4fcACef854bfB0Af139080437A8B8aEf899Dda66, amount=6723020000000000000000 ) => ( 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{}}