ETH Price: $2,519.99 (-0.52%)

Transaction Decoder

Block:
22555302 at May-24-2025 09:12:59 PM +UTC
Transaction Fee:
0.000048956 ETH $0.12
Gas Used:
24,478 Gas / 2 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
22.778160988864585323 Eth22.778198893473453567 Eth0.000037904608868244
0xC17A4085...C539bA753
(Binance Dep: 0xC17A40852E4BfE04Bc81Af355Fdf132C539bA753)
0.007314868 Eth
Nonce: 11472
0.007265912 Eth
Nonce: 11473
0.000048956

Execution Trace

CowProtocolToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=20123775187435188257897 )
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