ETH Price: $3,612.43 (-0.85%)

Transaction Decoder

Block:
22605796 at May-31-2025 10:50:47 PM +UTC
Transaction Fee:
0.0001198192579332 ETH $0.43
Gas Used:
34,440 Gas / 3.47907253 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x548f27e2...E60038f02
(Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02)
46.145954307614866846 Eth
Nonce: 23831
46.145834488356933646 Eth
Nonce: 23832
0.0001198192579332
0xDEf1CA1f...015F497aB
1.07714410471628322 Eth1.0772433113768463 Eth0.00009920666056308

Execution Trace

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