Transaction Hash:
Block:
22579741 at May-28-2025 07:20:59 AM +UTC
Transaction Fee:
0.00016695005683464 ETH
$0.42
Gas Used:
51,528 Gas / 3.23998713 Gwei
Emitted Events:
167 |
CowProtocolToken.Transfer( from=[Sender] 0xdfd5293d8e347dfe59e90efd55b2956a1343963d, to=0x4B3BfCE15A064acf3178a91Fe1E3D0fe579dDA52, value=3835135000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.102987340038117888 Eth | 8.103090396038117888 Eth | 0.000103056 | |
0xDEf1CA1f...015F497aB | |||||
0xDFd5293D...a1343963d | (Binance 16) |
37,419.979606217118410969 Eth
Nonce: 11538830
|
37,419.979439267061576329 Eth
Nonce: 11538831
| 0.00016695005683464 |
Execution Trace
CowProtocolToken.transfer( recipient=0x4B3BfCE15A064acf3178a91Fe1E3D0fe579dDA52, amount=3835135000000000000000 ) => ( 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{}}