Transaction Hash:
Block:
22582187 at May-28-2025 03:35:47 PM +UTC
Transaction Fee:
0.00029628 ETH
$1.26
Gas Used:
29,628 Gas / 10 Gwei
Emitted Events:
239 |
CowProtocolToken.Transfer( from=[Sender] 0xfe9529b753b412941127fea1981e5ce0a85c101e, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=137430252090910000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 38.300529792669101154 Eth | 38.300551062581265714 Eth | 0.00002126991216456 | |
0xDEf1CA1f...015F497aB | |||||
0xFE9529b7...0A85C101E | (Binance Dep: 0xFE9529b753b412941127Fea1981E5cE0A85C101E) |
0.011217427772876104 Eth
Nonce: 85386
|
0.010921147772876104 Eth
Nonce: 85387
| 0.00029628 |
Execution Trace
CowProtocolToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=137430252090910000000000 ) => ( 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{}}