• Academy
  • Blog
  • FAQ

Swap

What tokens are available to swap?
How to get a token whitelisted?
What Is Slippage?
What Is Price Impact?
Why Are Slippage & Price Impact Important?
How To Adjust Slippage?
How much are the trading fees on Sushi?
How Are Swap Fees Distributed?
I Didn't Receive wETH... Where Is It?
X/Y/Z Token Hasn't Arrived!
How To Make A Swap
Swap Settings
I Didn't Receive wETH... Where Is It?
What tokens are available to swap?
How to get a token whitelisted?
What Is Slippage?
What Is Price Impact?
Why Are Slippage & Price Impact Important?
How To Adjust Slippage?
How much are the trading fees on Sushi?
How Are Swap Fees Distributed?
I Didn't Receive wETH... Where Is It?
X/Y/Z Token Hasn't Arrived!
How To Make A Swap
Swap Settings

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)