Transaction Hash:
Block:
22614050 at Jun-02-2025 02:34:47 AM +UTC
Transaction Fee:
0.000201686444457142 ETH
$0.69
Gas Used:
44,453 Gas / 4.537071614 Gwei
Emitted Events:
548 |
Ondo.Transfer( from=[Sender] 0xf214798a8af12ad98e173171ee2d8d7ea11ce75c, to=0x9c6f59f718536701527ed64faDA0D5BDf3419E38, amount=24009700000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.64145964383804952 Eth | 9.641625818721669095 Eth | 0.000166174883619575 | |
0xF214798A...ea11CE75C | (Upbit Dep: 0xF214798A8aF12Ad98e173171ee2D8d7ea11CE75C) |
304.065034707132669193 Eth
Nonce: 22412
|
304.064833020688212051 Eth
Nonce: 22413
| 0.000201686444457142 | |
0xfAbA6f8e...577269BE3 |
Execution Trace
Ondo.transfer( dst=0x9c6f59f718536701527ed64faDA0D5BDf3419E38, rawAmount=24009700000000000000000 ) => ( True )
transfer[Ondo (ln:607)]
safe96[Ondo (ln:608)]
_transferTokens[Ondo (ln:609)]
_getFreedBalance[Ondo (ln:780)]
passedAllVestingPeriods[Ondo (ln:883)]
passedCliff[Ondo (ln:888)]
_getTrancheInfo[Ondo (ln:891)]
sub96[Ondo (ln:893)]
_proportionAvailable[Ondo (ln:895)]
sub96[Ondo (ln:899)]
sub96[Ondo (ln:907)]
sub96[Ondo (ln:784)]
add96[Ondo (ln:789)]
Transfer[Ondo (ln:794)]
_moveDelegates[Ondo (ln:795)]
sub96[Ondo (ln:808)]
_writeCheckpoint[Ondo (ln:809)]
safe32[Ondo (ln:828)]
Checkpoint[Ondo (ln:838)]
DelegateVotesChanged[Ondo (ln:841)]
add96[Ondo (ln:816)]
_writeCheckpoint[Ondo (ln:817)]
safe32[Ondo (ln:828)]
Checkpoint[Ondo (ln:838)]
DelegateVotesChanged[Ondo (ln:841)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity 0.8.3;/** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be