-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @gmahe, For BSCscan, or any of the other EVM block explorers (i.e. Etherscan, HecoInfo, PolygonScan, SnowTrace, FTMScan). You need to export the first 4 report types ("Transactions", "Internal Transactions", "Token Transfers" and "NFT Transfers"). Each export file is in a different format, some maybe empty if you haven't performed a transaction of that specific type. When you parse these files with the Conv tool it will generate a different worksheet for each one. You might notice that the "Tokens Transfers" and "NFT Transfers" are matched as Etherscan exports. This is because the export format for these files is the same across all the different EVM explorers. The transaction record It is important to note that each exported file has a filename which contains your wallet address. It is vital that you keep your wallet address in the filename, as this is used to identify if tokens are being sent out, or received to your wallet. Once you have exported all 4 files, you should pass them ALL into the Conv Tool in one go. This will allow them to be analysed as a whole by the merge parser. The merge parser will attempt to match transactions across the different export files with the same TxHash (Transactions ID), and perform the following.
This is all best effort, you should always review that your transactions are correctly categorised. If the merge parser makes any changes to the "Tokens Transfers" or "NFT Transfers" transaction records, it will also correctly rename the worksheet and wallet address according, so they no longer refer to Etherscan. Once you have your BittyTax_Records.xlsx file with all the data merged, you need to review each transaction, and categogise it's The tax report will only be correct if all your transactions complete (all wallets, exchanges) and they are all categorised correctly, otherwise it's a case of garbage in, garbage out. |
Beta Was this translation helpful? Give feedback.
Hi @gmahe,
For BSCscan, or any of the other EVM block explorers (i.e. Etherscan, HecoInfo, PolygonScan, SnowTrace, FTMScan).
You need to export the first 4 report types ("Transactions", "Internal Transactions", "Token Transfers" and "NFT Transfers").
Each export file is in a different format, some maybe empty if you haven't performed a transaction of that specific type. When you parse these files with the Conv tool it will generate a different worksheet for each one.
You might notice that the "Tokens Transfers" and "NFT Transfers" are matched as Etherscan exports. This is because the export format for these files is the same across all the different EVM explorers. The transaction record
W…