Transaction Hash:
Block:
14475365 at Mar-28-2022 03:04:50 PM +UTC
Transaction Fee:
0.002153861372876736 ETH
$7.65
Gas Used:
46,752 Gas / 46.069930118 Gwei
Emitted Events:
208 |
CowProtocolToken.Transfer( from=[Sender] 0x297946c26171008ba8c0e5642814b5fe6b842ab7, to=0x1FF60C59246A7b6B4A5090218881Af7f844458b0, value=27864477314877640566336 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x297946c2...e6b842Ab7 |
36.399636448984365164 Eth
Nonce: 4788
|
36.397482587611488428 Eth
Nonce: 4789
| 0.002153861372876736 | ||
0xDEf1CA1f...015F497aB | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 621.249233342631231182 Eth | 621.249310483431231182 Eth | 0.0000771408 |
Execution Trace
CowProtocolToken.transfer( recipient=0x1FF60C59246A7b6B4A5090218881Af7f844458b0, amount=27864477314877640566336 ) => ( 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{}}