Transaction Hash:
Block:
22554668 at May-24-2025 07:05:11 PM +UTC
Transaction Fee:
0.00003274795040004 ETH
$0.08
Gas Used:
51,540 Gas / 0.635389026 Gwei
Emitted Events:
416 |
CowProtocolToken.Transfer( from=[Sender] 0x5bdf85216ec1e38d6458c870992a69e38e03f7ef, to=0xF95B8114495026193b91E17E0af6e11c4aa49125, value=55492778045250000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 2.720354427948609569 Eth | 2.720359584474069569 Eth | 0.00000515652546 | ||
0x5bdf8521...38e03F7Ef | (Bitget 5) |
102.230014962499760029 Eth
Nonce: 452785
|
102.229982214549359989 Eth
Nonce: 452786
| 0.00003274795040004 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0xF95B8114495026193b91E17E0af6e11c4aa49125, amount=55492778045250000000000 ) => ( 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{}}