ETH Price: $2,629.16 (+3.90%)

Transaction Decoder

Block:
14475344 at Mar-28-2022 03:01:40 PM +UTC
Transaction Fee:
0.001564495505318508 ETH $4.11
Gas Used:
29,652 Gas / 52.761888079 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(2Miners: PPLNS)
5,819.240844813067902989 Eth5,819.240889291067902989 Eth0.000044478
0x93C9Cf10...5e20B8B37
0.007378172634267424 Eth
Nonce: 29
0.005813677128948916 Eth
Nonce: 30
0.001564495505318508
0xDEf1CA1f...015F497aB

Execution Trace

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