You most likely do have it - wallet UIs rarely show internal transactions. These however can be tracked via a block explorer!
Further evidence can also be found by clicking into the transaction hash as shown below:
Looking at the ‘State Change’ tab will show your ETH balance before and after the transaction for reference. You can also verify the transaction by calling your account balance from the block before and after with something like web3.py - as shown here:
address = w3.toChecksumAddress(Your_Wallet_Address)
w3.eth.get_balance(address, block_identifier=Block_Number)
w3.eth.get_balance(address, block_identifier=Block_Number)
You most likely do have it - wallet UIs rarely show internal transactions. These however can be tracked via a block explorer!
Further evidence can also be found by clicking into the transaction hash as shown below:
Looking at the ‘State Change’ tab will show your ETH balance before and after the transaction for reference. You can also verify the transaction by calling your account balance from the block before and after with something like web3.py - as shown here:
address = w3.toChecksumAddress(Your_Wallet_Address)
w3.eth.get_balance(address, block_identifier=Block_Number)
w3.eth.get_balance(address, block_identifier=Block_Number)