Transaction Hash:
Block:
15977186 at Nov-15-2022 06:21:23 PM +UTC
Transaction Fee:
0.00112228042662225 ETH
$2.77
Gas Used:
49,118 Gas / 22.848658875 Gwei
Emitted Events:
232 |
SingularityNetToken.Transfer( from=[Sender] 0x83ea4eed78f50cc59d580574d9f89531ff084dcd, to=0x7703ECBA881c9Ee234C68A63045D459C315769c6, value=1076734070000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5B753381...D2681b542 | |||||
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 2.316130839625211966 Eth | 2.316204516625211966 Eth | 0.000073677 | |
0x83Ea4eED...1fF084dCd |
0.11708283 Eth
Nonce: 0
|
0.11596054957337775 Eth
Nonce: 1
| 0.00112228042662225 |
Execution Trace
SingularityNetToken.transfer( recipient=0x7703ECBA881c9Ee234C68A63045D459C315769c6, amount=1076734070000 ) => ( True )
transfer[ERC20 (ln:996)]
_transfer[ERC20 (ln:997)]
_beforeTokenTransfer[ERC20 (ln:1092)]
sub[ERC20 (ln:1094)]
add[ERC20 (ln:1095)]
Transfer[ERC20 (ln:1096)]
_msgSender[ERC20 (ln:997)]
1234567891011121314151617181920212223242526// File: node_modules\@openzeppelin\contracts\utils\EnumerableSet.sol// SPDX-License-Identifier: MITpragma solidity ^0.6.0;/*** @dev Library for managing* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive* types.** Sets have the following properties:** - Elements are added, removed, and checked for existence in constant time* (O(1)).* - Elements are enumerated in O(n). No guarantees are made on the ordering.** ```* contract Example {* // Add the library methods* using EnumerableSet for EnumerableSet.AddressSet;** // Declare a set state variable* EnumerableSet.AddressSet private mySet;* }* ```