Transaction Hash:
Block:
22555302 at May-24-2025 09:12:59 PM +UTC
Transaction Fee:
0.000048956 ETH
$0.12
Gas Used:
24,478 Gas / 2 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 22.778160988864585323 Eth | 22.778198893473453567 Eth | 0.000037904608868244 | |
0xC17A4085...C539bA753 | (Binance Dep: 0xC17A40852E4BfE04Bc81Af355Fdf132C539bA753) |
0.007314868 Eth
Nonce: 11472
|
0.007265912 Eth
Nonce: 11473
| 0.000048956 |
Execution Trace
CowProtocolToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=20123775187435188257897 )
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{}}