This commit is contained in:
Para Dox
2025-06-01 19:45:38 +07:00
parent 367a1890e8
commit 62928caa7a
11 changed files with 960 additions and 0 deletions

23
split-proxy/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "eth-rpc-proxy",
"version": "1.0.0",
"description": "ETH JSON-RPC Proxy with dual upstream comparison",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js"
},
"keywords": ["ethereum", "json-rpc", "proxy"],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"pino": "^8.16.0",
"pino-pretty": "^10.2.3"
},
"engines": {
"node": ">=20.0.0"
}
}