Store Wallet IDs
Always store the wallet ID with your order:
// When creating payment
const wallet = await waas.createWallet({ ... });
await db.orders.update(orderId, {
walletId: wallet.wallet.id,
depositAddress: wallet.wallet.address,
status: 'awaiting_payment',
});