Transaction Hash:
Block:
22579518 at May-28-2025 06:35:59 AM +UTC
Transaction Fee:
0.000058594879932938 ETH
$0.25
Gas Used:
46,274 Gas / 1.266259237 Gwei
Emitted Events:
192 |
CowProtocolToken.Approval( owner=[Sender] 0xf01916737fef5a1ebd3610b7b058411f8c2bf583, spender=0x1231DEB6...7486F4EaE, value=74258877252674547740 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 20.234896190092057986 Eth | 20.234896213767641072 Eth | 0.000000023675583086 | |
0xDEf1CA1f...015F497aB | |||||
0xf0191673...F8c2bf583 |
0.001686483842103425 Eth
Nonce: 91
|
0.001627888962170487 Eth
Nonce: 92
| 0.000058594879932938 |
Execution Trace
CowProtocolToken.approve( spender=0x1231DEB6f5749EF6cE6943a275A1D3E7486F4EaE, amount=74258877252674547740 ) => ( 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{}}