ETH Price: $2,492.04 (-0.84%)

Transaction Decoder

Block:
22585142 at May-29-2025 01:30:11 AM +UTC
Transaction Fee:
0.00005327283001872 ETH $0.13
Gas Used:
29,640 Gas / 1.797328948 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.664676875515208166 Eth12.664682596634351126 Eth0.00000572111914296
0xDEf1CA1f...015F497aB
0xe3792A9c...C41631090
(Upbit Dep: 0xe3792A9c235D434B702023b33F03C48C41631090)
43.181366589886513586 Eth
Nonce: 55621
43.181313317056494866 Eth
Nonce: 55622
0.00005327283001872

Execution Trace

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