Transaction Hash:
Block:
22711068 at Jun-15-2025 04:16:35 PM +UTC
Transaction Fee:
0.000079954936459104 ETH
$0.30
Gas Used:
34,404 Gas / 2.324001176 Gwei
Emitted Events:
150 |
CowProtocolToken.Transfer( from=[Sender] 0xdda35a6b42d74146b3d93c3718666a774a0fafd3, to=0x6FDA3EA7408e82B7A822cf777200ec3703a7610c, value=53207950000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.713971964241603084 Eth | 6.713989166241603084 Eth | 0.000017202 | |
0xddA35a6b...74a0faFD3 |
0.000393643975411283 Eth
Nonce: 856
|
0.000313689038952179 Eth
Nonce: 857
| 0.000079954936459104 | ||
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0x6FDA3EA7408e82B7A822cf777200ec3703a7610c, amount=53207950000000000000 ) => ( 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{}}