ETH Price: $2,959.49 (+0.28%)
Gas: 1.2 Gwei

Transaction Decoder

Block:
22585316 at May-29-2025 02:05:47 AM +UTC
Transaction Fee:
0.00005868685189746 ETH $0.17
Gas Used:
29,628 Gas / 1.980790195 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x25Aa6e77...6B471F204
(Upbit Dep: 0x25Aa6e77573F54efa4bd6ebD80F44766B471F204)
3.526457118349404874 Eth
Nonce: 4418
3.526398431497507414 Eth
Nonce: 4419
0.00005868685189746
(Titan Builder)
13.42454056607070588 Eth13.424543231182368528 Eth0.000002665111662648
0xDEf1CA1f...015F497aB

Execution Trace

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