ETH Price: $4,280.30 (+1.66%)

Transaction Decoder

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 Code
(beaverbuild)
20.234896190092057986 Eth20.234896213767641072 Eth0.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 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: LGPL-3.0-or-later
pragma 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 Developers
contract 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
{
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX