WIP: HYBX OMNL and deployment documentation updates

This commit is contained in:
defiQUG
2026-06-02 06:09:56 -07:00
parent f04a7cb7c8
commit d31aad7d66
33 changed files with 78 additions and 2878 deletions

View File

@@ -125,7 +125,7 @@ All deployed contracts use the same admin address, providing consistent access c
**ChainID 138 Configuration Complete**
- File: `pr-workspace/app-ethereum/src/network.c` (line 42)
- File: `../app-ethereum/src/network.c` (line 42)
- Chain ID: 138
- Name: "Defi Oracle Meta"
- Ticker: "ETH"

View File

@@ -340,13 +340,13 @@
**Description**: Verify RPC endpoints in Ledger app-ethereum configuration match current infrastructure.
**Current Configuration**:
- File: `pr-workspace/app-ethereum/src/network.c` (line 42)
- File: `../app-ethereum/src/network.c` (line 42)
- Chain ID: 138 ✅
- Name: "Defi Oracle Meta" ✅
- Ticker: "ETH" ✅
**Steps**:
1. Check `pr-workspace/app-ethereum/src/network.c` for RPC endpoint configuration
1. Check `../app-ethereum/src/network.c` for RPC endpoint configuration
2. Search for RPC URL settings in app-ethereum configuration files
3. Verify RPC endpoints match:
- Public: `https://rpc-http-pub.d-bis.org`

View File

@@ -155,7 +155,7 @@ forge verify-contract --chain-id 1 \
**Gap**: ChainID 138 is configured in app-ethereum, but RPC endpoints may not match current infrastructure.
**Current Configuration** (in `pr-workspace/app-ethereum/src/network.c`):
**Current Configuration** (in `../app-ethereum/src/network.c`):
- Chain ID: 138 ✅
- Name: "Defi Oracle Meta" ✅
- Ticker: "ETH" ✅

View File

@@ -100,9 +100,9 @@ Environment variables that need to be checked:
ChainID 138 is already configured in `app-ethereum`:
- `pr-workspace/app-ethereum/src/network.c` - Line 42: ChainID 138 entry exists
- `pr-workspace/app-ethereum/makefile_conf/chain/defi_oracle.mk` - Configuration file exists
- Test file `pr-workspace/app-ethereum/tests/ragger/test_get_address.py` - Line 24: Includes ChainID 138 in test params
- `../app-ethereum/src/network.c` - Line 42: ChainID 138 entry exists
- `../app-ethereum/makefile_conf/chain/defi_oracle.mk` - Configuration file exists
- Test file `../app-ethereum/tests/ragger/test_get_address.py` - Line 24: Includes ChainID 138 in test params
**Configuration Details**:
- Chain ID: 138

View File

@@ -9,14 +9,14 @@
**ChainID 138 Configuration Verified**
**File**: `pr-workspace/app-ethereum/src/network.c` (line 42)
**File**: `../app-ethereum/src/network.c` (line 42)
**Configuration**:
```c
{.chain_id = 138, .name = "Defi Oracle Meta", .ticker = "ETH"}
```
**Makefile Configuration**: `pr-workspace/app-ethereum/makefile_conf/chain/defi_oracle.mk`
**Makefile Configuration**: `../app-ethereum/makefile_conf/chain/defi_oracle.mk`
```
CHAIN_ID = 138
APPNAME = "Defi Oracle Meta"
@@ -47,7 +47,7 @@ PATH_APP_LOAD_PARAMS += "44'/60'"
### Test File Verification
**File**: `pr-workspace/app-ethereum/tests/ragger/test_get_address.py` (line 24)
**File**: `../app-ethereum/tests/ragger/test_get_address.py` (line 24)
ChainID 138 included in test parameters:
```python
@@ -64,7 +64,7 @@ The app source code includes ChainID 138 configuration with correct chain ID, na
### RPC discovery for Ledger / wallets
- **Chainlist / chains**: `pr-workspace/chains/_data/chains/eip155-138.json` includes `https://rpc-http-pub.d-bis.org` and `wss://rpc-ws-pub.d-bis.org` so Ledger Live and other clients can discover ChainID 138 RPCs.
- **Chainlist / chains**: `../chains/_data/chains/eip155-138.json` includes `https://rpc-http-pub.d-bis.org` and `wss://rpc-ws-pub.d-bis.org` so Ledger Live and other clients can discover ChainID 138 RPCs.
- **Doc**: [PUBLIC_RPC_CHAIN138_LEDGER.md](../../../docs/04-configuration/PUBLIC_RPC_CHAIN138_LEDGER.md) public RPCs, Proxmox VM / NPMplus mapping, and Ledger access.
---

View File

@@ -87,8 +87,8 @@
**Completed**: 2025-01-18
**Actions Taken**:
1. Verified ChainID 138 configuration in `pr-workspace/app-ethereum/src/network.c` (line 42)
2. Verified makefile configuration: `pr-workspace/app-ethereum/makefile_conf/chain/defi_oracle.mk`
1. Verified ChainID 138 configuration in `../app-ethereum/src/network.c` (line 42)
2. Verified makefile configuration: `../app-ethereum/makefile_conf/chain/defi_oracle.mk`
3. Confirmed configuration values:
- Chain ID: 138 ✅
- Name: "Defi Oracle Meta" ✅