Transaction Hash:
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:
437 |
CowProtocolToken.Transfer( from=[Sender] 0xe3792a9c235d434b702023b33f03c48c41631090, to=0x181EFD944d8F3E27664207e51Fc264B895BCf818, value=49882895331300000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.664676875515208166 Eth | 12.664682596634351126 Eth | 0.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 )
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{}}