Transaction Hash:
Block:
22554547 at May-24-2025 06:40:47 PM +UTC
Transaction Fee:
0.000034428 ETH
$0.09
Gas Used:
34,428 Gas / 1 Gwei
Emitted Events:
479 |
CowProtocolToken.Transfer( from=[Sender] 0xc95ebf1c90d2774c9e6cc03692a976845527bd96, to=0xdd3d72C53Ff982ff59853da71158bf1538b3Ceee, value=2016149294360000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.414474954491989403 Eth | 14.414491597306130395 Eth | 0.000016642814140992 | |
0xc95Ebf1c...45527BD96 |
0.00014 Eth
Nonce: 0
|
0.000105572 Eth
Nonce: 1
| 0.000034428 | ||
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0xdd3d72C53Ff982ff59853da71158bf1538b3Ceee, amount=2016149294360000000000 ) => ( 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{}}