Transaction Hash:
Block:
22554245 at May-24-2025 05:39:35 PM +UTC
Transaction Fee:
0.00008310067532011 ETH
$0.21
Gas Used:
46,562 Gas / 1.784731655 Gwei
Emitted Events:
166 |
CowProtocolToken.Approval( owner=[Sender] 0x24b8cd7e2599a26d0b524d8416a7e179324cabbb, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x24b8CD7E...9324CaBbB |
0.005231384373492222 Eth
Nonce: 21
|
0.005148283698172112 Eth
Nonce: 22
| 0.00008310067532011 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.75641928181255406 Eth | 6.756465843812740308 Eth | 0.000046562000186248 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.approve( spender=0x881D40237659C251811CEC9c364ef91dC08D300C, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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{}}