ETH Price: $3,553.34 (+3.18%)

Transaction Decoder

Block:
14475365 at Mar-28-2022 03:04:50 PM +UTC
Transaction Fee:
0.002153861372876736 ETH $7.65
Gas Used:
46,752 Gas / 46.069930118 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x297946c2...e6b842Ab7
36.399636448984365164 Eth
Nonce: 4788
36.397482587611488428 Eth
Nonce: 4789
0.002153861372876736
0xDEf1CA1f...015F497aB
(Ethermine)
621.249233342631231182 Eth621.249310483431231182 Eth0.0000771408

Execution Trace

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