-
-
Notifications
You must be signed in to change notification settings - Fork 0
Tech
The burn functionality ensures that only burnable tokens are identified and processed. It separates burn-only assets from sellable ones. Future enhancements include enabling users to burn tokens directly within the application
- The app scans token metadata using Blockscout API
- Tokens flagged as burn-only are filtered out for sales.
- Burn functionality (coming soon) will provide an option to destroy these tokens securely by sending them all to Null address
To determine if a token is burnable, we employ several methods. Initially, we use basic regex rules to scan for common patterns in a token’s name and symbols. For example, a token named “Get $100” would be classified as spam
The second method is more complex and involves using The Graph to verify if a token has at least one liquidity pool available for selling
The sell functionality facilitates simultaneous sales of up to six tokens across EVM-compatible chains. It utilizes ODOS aggregators and The Graph for efficient routing and pricing
- Batch sales for reduced gas fees
- Real-time metadata and balance fetching via Blockscout API
- Optimal price quotes and routes using ODOS
- Tokens are scanned for sellability
- A user approves all selected tokens
- Transactions are routed using ODOS for best pricing. All tokens will be sold in one transaction
📄 Dust wiki
The fastest way to sell multiple tokens across EVM chains
🔗 Quick links:
💡 Contributions are welcome! Check out our Contributing guidelines