Transaction Hash:
Block:
22553623 at May-24-2025 03:34:35 PM +UTC
Transaction Fee:
0.0000601562 ETH
$0.16
Gas Used:
46,274 Gas / 1.3 Gwei
Emitted Events:
673 |
CowProtocolToken.Approval( owner=[Sender] 0x06faab61b8b72981c3004c1d060e8a67d826f97c, spender=0x11111112...0f8842A65, value=16624730118573114747 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06faab61...7d826F97C |
0.00761532001130653 Eth
Nonce: 291
|
0.00755516381130653 Eth
Nonce: 292
| 0.0000601562 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.667304905662687733 Eth | 8.667336927082861567 Eth | 0.000032021420173834 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.approve( spender=0x111111125421cA6dc452d289314280a0f8842A65, amount=16624730118573114747 ) => ( 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{}}