Add real Solana wallet observation and raw transaction persistence

This commit is contained in:
2026-08-16 09:41:29 +00:00
parent dc23412c3f
commit 37ee805b96
7 changed files with 575 additions and 17 deletions

View File

@@ -23,11 +23,12 @@ export interface WalletTransactionObservation {
signature: string;
slot: number;
walletAddress: string;
tokenMint: string;
side: 'buy' | 'sell';
amountSol: number | null;
tokenAmount: number | null;
tokenMint?: string | null;
side?: 'buy' | 'sell' | null;
amountSol?: number | null;
tokenAmount?: number | null;
timestamp: Date;
correlationId?: string;
}
export interface IWalletWatcher {