first commit of refactor

This commit is contained in:
KS Jannette
2026-02-27 09:58:18 -05:00
commit 0adfd70853
63 changed files with 10558 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/**
* @typedef {import('./NormalizedTx.js').NormalizedTx} NormalizedTx
*/
/**
* @typedef {Object} ObservedTxMetadata
* @property {number} addressId - ID of the tracked address (from addresses table)
* @property {'incoming'|'outgoing'} direction - Direction relative to tracked address
*/
/**
* @typedef {NormalizedTx & ObservedTxMetadata} ObservedTx
*/
export default {};