Security Basics and Virtual Accounts
Virtual Accounts simplify and speed up asset management via an off-chain ledger trading engine.
The Virtual Account ledger communicates with the blockchain when assets are deposited or withdrawn from, or to, a blockchain address you may not control (PrivateKey
holder).
While Tatum conducts regular code and infrastructure audits, Tatum users are also strongly encouraged to conduct due diligence and ensure that their blockchain operations follow best practices to secure their assets.
For deposits and withdrawals, it is strongly recommended to verify effective on-chain assets liquidity as well as the legitimacy of the operation.
UTXO-based chains (like Bitcoin)
Verifying transactions
- Depending on the use case, wait for a few blocks from the tip (optional)
- Account for chain reorg issues, usually 3-6 blocks from the tip
- Fetch transaction by hash independently
- Ideally from 3rd providerβs node, to eliminate chain split or any other possible node issues
- Parse the outputs of a transaction:
- All UTXO-based transactions consume inputs and produce outputs
- Find the output(s) related to the recipient's address
- Verify that the output is directly related only to the recipient's address (not multi-sig address e.g.)
- Check the output is not spent (verify it is UTXO - unspent tx output)
HOT <-> COLD Wallet Schema
- UTXO-based chain Virtual Accounts, all based on one XPUB
- All virtual accounts on this XPUB - consider them as a HOT wallet
- Define logically one specific Virtual Account on the same XPUB as the Account for HOT<->COLD assets movement
- Let's name said Virtual Account as "Cold in-out" Account
- To move assets from HOT to COLD wallet:
- External User deposits to a Deposit Address (Virtual Account)
- You manage ledger transactions to move assets from the user's Virtual Account deposit address to the defined "Cold in-out" Account
- Send Payment: v3 REST API endpoint
- Having balance on "Cold in-out" account - you can move assets using withdrawal to COLD storage
- Send BTC from VA to the blockchain: v3 REST API endpoint
- COLD storage - depending on the specific use case, usually via a physical ledger wallet (sometimes even without internet access, just offline signing) or with an address outside of any other system, with limited access. There should be enough balance allocated between usability and safety.
- To move assets from COLD to HOT wallet - all operations should be in reverse order
- Deposit back from COLD wallet itself to "Cold in-out" Account
- Ledger transaction from "Cold in-out" Account to the user's Account
- Withdrawal from the User's account
Exchange or Application Security Suggestions
- Database and Keys Protection
- Access Protection
- Injection Prevention
- Cross-Site Scripting Protection
- DDoS Protection
- Man in the Middle Protection
- SQL Injection Protection
- Creation of Monitoring and Alerting Strategies
- Creation of Reporting Systems for system activity
- Enable 2FA for users
- Encryption of user data using public/private keys
- Data policy
- Hardware and Software Firewalls
- Ensure Backup systems
- External security audit
User DataBase Security Suggestions
- Stores User signup information
- Stores Country and additional information for Risk & Compliance
- Stores User Deposit Addresses
- Stores User Transaction history
- Stores User Balance information
Disclaimer
- Tatum does not store
PrivateKeys
and orMnemonics
. - The steps outlined in this article are general suggestions based on best practices. Additional security measures and verifications may apply depending on a specific Use Case or User's country legal entity.
- Ensuring on-chain asset liquidity is the responsibility of the user.
- For Mainnet and/or a Production Environment, it is recommended to use KMS.
Updated 5 months ago