Transaction Hash:
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:
143 |
CowProtocolToken.Transfer( from=[Sender] 0x548f27e2c1eb0c90c9c0ef3a4a61a6ae60038f02, to=0x181EFD944d8F3E27664207e51Fc264B895BCf818, value=48579253905770000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x548f27e2...E60038f02 | (Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02) |
46.145954307614866846 Eth
Nonce: 23831
|
46.145834488356933646 Eth
Nonce: 23832
| 0.0001198192579332 | |
0xDEf1CA1f...015F497aB | |||||
0xe7905802...eaCfc3C0F
Miner
| 1.07714410471628322 Eth | 1.0772433113768463 Eth | 0.00009920666056308 |
Execution Trace
CowProtocolToken.transfer( recipient=0x181EFD944d8F3E27664207e51Fc264B895BCf818, amount=48579253905770000000000 ) => ( True )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-or-laterpragma 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 Developerscontract 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{}}