Transaction Hash:
Block:
22611214 at Jun-01-2025 05:03:35 PM +UTC
Transaction Fee:
0.00006316095299904 ETH
$0.23
Gas Used:
29,640 Gas / 2.130936336 Gwei
Emitted Events:
575 |
CowProtocolToken.Transfer( from=[Sender] 0x548f27e2c1eb0c90c9c0ef3a4a61a6ae60038f02, to=0x6937837EAcfdB455626d076de48077cA9b293BF7, value=43286285061100000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x548f27e2...E60038f02 | (Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02) |
46.126615494356146142 Eth
Nonce: 24055
|
46.126552333403147102 Eth
Nonce: 24056
| 0.00006316095299904 | |
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 56.808573601657207912 Eth | 56.808573618302557672 Eth | 0.00000001664534976 | |
0xDEf1CA1f...015F497aB |
Execution Trace
CowProtocolToken.transfer( recipient=0x6937837EAcfdB455626d076de48077cA9b293BF7, amount=43286285061100000000000 ) => ( 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{}}