Transaction Hash:
Block:
22556641 at May-25-2025 01:42:47 AM +UTC
Transaction Fee:
0.000082944854865204 ETH
$0.21
Gas Used:
34,428 Gas / 2.409226643 Gwei
Emitted Events:
114 |
CowProtocolToken.Transfer( from=[Sender] 0x181efd944d8f3e27664207e51fc264b895bcf818, to=0x6937837EAcfdB455626d076de48077cA9b293BF7, value=122000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x181EFD94...895BCf818 |
3.2200938460792543 Eth
Nonce: 622
|
3.220010901224389096 Eth
Nonce: 623
| 0.000082944854865204 | ||
0x39634336...6fb82Aa49
Miner
| (quasarbuilder) | 20.529756920374142711 Eth | 20.529825776374142711 Eth | 0.000068856 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0x6937837EAcfdB455626d076de48077cA9b293BF7, amount=122000000000000000000000 ) => ( 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{}}