opp_parser: relay script + event parser + 116 parsed Ethereum OPP messages

- relay.ts: automated Ethereum->Wire operator relay pipeline
- parse_balances.ts: Ethereum OPP event parser
- types.ts: assertion type constants (2001-3006)
- opp_events_current.json: 116 parsed messages from Hoodi outpost
This commit is contained in:
2026-03-13 17:11:47 +00:00
parent 1dedf2d486
commit a978f76f08
8 changed files with 8464 additions and 0 deletions

19
tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}