chore: consolidate documentation — delete status/fix/progress cruft

Before: 335 tracked .md files; top level had 14 README-like docs;
docs/ contained ~234 files, most of them auto/LLM-generated status
reports (ALL_*_COMPLETE*, *_FIX*, DEPLOYMENT_*_FINAL*, etc.).

After: 132 tracked .md files. Repo now has exactly five top-level
docs: README.md, QUICKSTART.md, RUNBOOK.md, CONTRIBUTING.md,
CHANGELOG.md (moved up from docs/).

Keeper philosophy in docs/:
- API, CCIP (ops + security + receiver/router refs), Chainlist refs,
  compliance, deployment (guides not status), database connection,
  legal compliance, metamask integration, production checklist,
  tiered-architecture implementation/setup, reusable-components plan,
  token-mechanism doc, wrap-and-bridge operational reference, plus
  docs/specs/** and docs/api/ / docs/openapi/ trees.

Deleted (git history preserves provenance):
- All 'ALL_*_COMPLETE*' / '*_FIX*' / '*_FIXED*' / '*_FINAL*' /
  '*_STATUS*' / '*_PROGRESS*' / '*_SUMMARY*' files.
- BLOCKSCOUT_*_FIX / _CRASH / _INITIALIZATION / _SCHEMA / _YAML /
  _SKIP / _NEXT_STEPS / _START_AND_BUILD / _DATABASE_CREDENTIALS
  (the last contained passwords).
- CCIP_IMPLEMENTATION_* / CCIP_CURRENT_STATUS / CCIP_GAP_*
  (gap analyses are not a sustained reference).
- NPMPLUS_CREDENTIALS_GUIDE.md (contained creds).
- LETSENCRYPT_CONFIGURATION_GUIDE.md (contained creds; will be
  re-introduced as runbook content post-secrets-scrub).
- docs/diagnostic-reports/, docs/feature-flags/ (run-time artifacts).

README.md: dead links (START_HERE, README_DEPLOYMENT, COMPLETE_DEPLOYMENT,
DEPLOYMENT_COMPLETE_FINAL) replaced with links to the five canonical
top-level docs + docs/ index.
This commit is contained in:
2026-04-18 18:56:17 +00:00
parent e1c3b40cb0
commit 40c9af678f
205 changed files with 8 additions and 37633 deletions

View File

@@ -1,81 +0,0 @@
# RPC Endpoints Update - ChainID 138
## ✅ Updated RPC Endpoint Information
### Correct RPC Endpoints
1. **Public RPC** (for general use, MetaMask, dApps):
- URL: `https://rpc-http-pub.d-bis.org`
- Status: ✅ Public and accessible
- Use Case: General public access, MetaMask integration, dApp connections
2. **Permissioned RPC** (for authorized/private access):
- URL: `https://rpc-http-prv.d-bis.org`
- Status: ✅ Permissioned access
- Use Case: Authorized users, private access, restricted operations
3. **Internal RPC** (VMID 2500 - internal network only):
- URL: `http://192.168.11.250:8545` (HTTP)
- URL: `ws://192.168.11.250:8546` (WebSocket)
- Status: ⚠️ **Internal only, NOT public**
- Use Case: Internal services, local development, VM-to-VM communication
### ❌ Incorrect/Deprecated
- ~~`https://rpc-core.d-bis.org`~~ - This is **internal only** and should NOT be used as a public endpoint
---
## 📝 Files Updated
### Chainlist Configuration
-`token-lists/chainlists/chain-138.json` - Updated RPC URLs to use public and permissioned endpoints
### Documentation
-`explorer-monorepo/docs/CHAINLIST_AND_METAMASK_DATA_FLOW.md` - Updated all RPC references
-`explorer-monorepo/docs/CHAINLIST_METAMASK_BLOCKSCOUT_RELATIONSHIP.md` - Updated RPC information
### Token List
- ✅ Token list is hosted at: https://raw.githubusercontent.com/Defi-Oracle-Meta-Blockchain/metamask-integration/main/config/token-list.json
- ✅ Token list content is correct and matches local version
---
## 🔍 Verification
### Test Public RPC
```bash
curl -X POST https://rpc-http-pub.d-bis.org \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'
# Should return: {"jsonrpc":"2.0","id":1,"result":"0x8a"}
```
### Test Permissioned RPC
```bash
curl -X POST https://rpc-http-prv.d-bis.org \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'
# Should return: {"jsonrpc":"2.0","id":1,"result":"0x8a"}
```
### Verify Token List
```bash
curl -s https://raw.githubusercontent.com/Defi-Oracle-Meta-Blockchain/metamask-integration/main/config/token-list.json | jq '.tokens | length'
# Should return: 3 (WETH9, WETH10, ETH/USD Oracle)
```
---
## 📚 References
- **Public RPC**: https://rpc-http-pub.d-bis.org
- **Permissioned RPC**: https://rpc-http-prv.d-bis.org
- **Token List**: https://raw.githubusercontent.com/Defi-Oracle-Meta-Blockchain/metamask-integration/main/config/token-list.json
- **Chainlist Config**: `token-lists/chainlists/chain-138.json`
---
**Last Updated**: 2025-12-24
**Status**: ✅ RPC endpoints corrected and documentation updated