Files
proxmox/docs/06-besu/CHAINLIST_PR_TEMPLATE.md
defiQUG fbda1b4beb
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
docs: Ledger Live integration, contract deploy learnings, NEXT_STEPS updates
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands
- CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround
- CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check
- NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere
- MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates
- LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 15:46:57 -08:00

2.5 KiB

Chainlist PR Template - ChainID 138

Last Updated: 2026-01-31
Document Version: 1.0
Status: Active Documentation


Title: Add DBIS Chain (ChainID 138)

Description:

## Summary

Adds DBIS Chain (ChainID 138) to Chainlist for automatic network discovery in MetaMask and other wallets.

## Chain Details

- **Name**: DBIS Chain
- **ChainID**: 138
- **Network ID**: 138
- **Native Currency**: ETH
- **RPC Endpoints**: 
  - Public: `https://rpc-http-pub.d-bis.org`
  - Permissioned: `https://rpc-http-prv.d-bis.org`
- **Block Explorer**: Blockscout at `https://explorer.d-bis.org`
- **Info URL**: `https://d-bis.org`

## Verification

- ✅ All required fields present
- ✅ Schema validated
- ✅ RPC endpoints accessible
- ✅ Explorer URL working
- ✅ Native currency configuration correct

## Related Links

- Network Info: https://d-bis.org
- Explorer: https://explorer.d-bis.org
- RPC Docs: https://d-bis.org/docs

## Checklist

- [x] Chain ID is unique (138 not in use)
- [x] All required fields present
- [x] RPC endpoints accessible
- [x] Explorer URL working
- [x] Configuration validated

PR Creation Steps

  1. Fork Chainlist Repository:

    # Visit: https://github.com/ethereum-lists/chains
    # Click "Fork" button
    
  2. Clone Your Fork:

    git clone https://github.com/YOUR_USERNAME/chains.git
    cd chains
    
  3. Create Branch:

    git checkout -b add-dbis-chain-138
    
  4. Add Chain Configuration:

    # Copy chain-138.json to appropriate location
    cp /path/to/token-lists/chainlists/chain-138.json _data/chains/eip155-138.json
    
  5. Commit Changes:

    git add _data/chains/eip155-138.json
    git commit -m "Add DBIS Chain (ChainID 138)"
    
  6. Push to Fork:

    git push origin add-dbis-chain-138
    
  7. Create Pull Request:


File Location in Chainlist Repository

File: _data/chains/eip155-138.json

Format: Chainlist uses eip155-{chainId}.json format


Validation Before Submission

Run validation (if available in Chainlist repo):

cd chains
npm install
npm run validate

Or check manually:

  • All required fields present
  • Chain ID unique
  • RPC URLs accessible
  • Explorer URL working
  • JSON valid

Last Updated: 2026-01-18