By clicking on āAccept all cookiesā, you consent to the storage of cookies on your device and the associated processing of your personal data by Sushi Labs and our partners to improve website navigation, analyse website usage and conduct surveys. You can revoke your consent at any time via the āManage cookie preferencesā button.
For further information on our data processing and cookies, please visit our and our .
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)