Transaction Hash:
Block:
22552624 at May-24-2025 12:12:59 PM +UTC
Transaction Fee:
0.000059304 ETH
$0.15
Gas Used:
29,652 Gas / 2 Gwei
Emitted Events:
148 |
CowProtocolToken.Transfer( from=[Sender] 0xc17a40852e4bfe04bc81af355fdf132c539ba753, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=16705441960593972331702 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.758812804269478219 Eth | 5.758854544679920383 Eth | 0.000041740410442164 | |
0xC17A4085...C539bA753 | (Binance Dep: 0xC17A40852E4BfE04Bc81Af355Fdf132C539bA753) |
0.00747235 Eth
Nonce: 11272
|
0.007413046 Eth
Nonce: 11273
| 0.000059304 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=16705441960593972331702 ) => ( 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{}}