Transaction Hash:
Block:
22539017 at May-22-2025 02:30:11 PM +UTC
Transaction Fee:
0.000277655 ETH
$0.70
Gas Used:
39,665 Gas / 7 Gwei
Emitted Events:
496 |
Ondo.Transfer( from=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, to=0x28C6c06298d514Db089934071355E5743bf21d60, amount=10501114911780000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06FD4bA7...Caa99E3B0 | (Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0) |
0.013422635968675723 Eth
Nonce: 112898
|
0.013144980968675723 Eth
Nonce: 112899
| 0.000277655 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.60476660831189897 Eth | 9.604788570153448745 Eth | 0.000021961841549775 | |
0xfAbA6f8e...577269BE3 |
Execution Trace
Ondo.transfer( dst=0x28C6c06298d514Db089934071355E5743bf21d60, rawAmount=10501114911780000000000 ) => ( 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