Waxify.finance Documentation
Complete guide to using our WAX trading bot, API documentation, and integration examples.
Quick Start Guide
1
Get Contract Address
Visit our trading page to get the current contract address
2
Send WAX with Memo
Transfer WAX using your exchange memo for automatic payouts
3
Receive Profits
Get your original amount + 1.5% profit automatically
API Documentation
Get Contract Information
GET /api/contractReturns current vault account, payout account, and profit margin
Response Example:
{
"vaultAccount": "waxifyfinbot",
"payoutAccount": "bybitwaxonly",
"profitMargin": "1.5%",
"timestamp": "2024-01-15T10:30:00Z"
}Get Trading Statistics
GET /api/statsReturns platform statistics and performance metrics
Get Recent Trades
GET /api/tradesReturns list of recent successful trades
Integration Examples
JavaScript/Node.js
// Fetch contract information
const response = await fetch('https://waxify.finance/api/contract');
const contractInfo = await response.json();
console.log('Vault Account:', contractInfo.vaultAccount);
console.log('Profit Margin:', contractInfo.profitMargin);Python
import requests
# Get contract information
response = requests.get('https://waxify.finance/api/contract')
contract_info = response.json()
print(f"Vault Account: {contract_info['vaultAccount']}")
print(f"Profit Margin: {contract_info['profitMargin']}")Security & Best Practices
✅ Recommended Practices
- • Always use your exchange-assigned memo for automatic payouts
- • Verify contract addresses before sending transactions
- • Start with small amounts to test the system
- • Keep records of your transactions for tracking
- • Read and understand our Terms & Conditions
⚠️ Important Warnings
- • Never share your private keys or wallet credentials
- • Do not send more than you can afford to lose
- • Transactions without proper memos may not receive payouts
- • Be aware of trading limits and restrictions
- • Contact support if you experience any issues
Need Help?
Our support team is here to help you get started with Waxify.finance