Transaction Hash:
Block:
14475344 at Mar-28-2022 03:01:40 PM +UTC
Transaction Fee:
0.001564495505318508 ETH
$4.11
Gas Used:
29,652 Gas / 52.761888079 Gwei
Emitted Events:
203 |
CowProtocolToken.Transfer( from=[Sender] 0x93c9cf100f370764c168471023fe57c5e20b8b37, to=0xf0fC1DF8Adc7C6f899514b2609785d6afeb9BCf0, value=15922558465644366037906 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x00192Fb1...d1BF599E8
Miner
| (2Miners: PPLNS) | 5,819.240844813067902989 Eth | 5,819.240889291067902989 Eth | 0.000044478 | |
0x93C9Cf10...5e20B8B37 |
0.007378172634267424 Eth
Nonce: 29
|
0.005813677128948916 Eth
Nonce: 30
| 0.001564495505318508 | ||
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0xf0fC1DF8Adc7C6f899514b2609785d6afeb9BCf0, amount=15922558465644366037906 ) => ( 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{}}