docs(readme): add MCMS adapter update instructions to chain addition guide#722
Conversation
|
There was a problem hiding this comment.
Pull request overview
Updates the chain-addition guide to include the missing MCMS adapter update step when integrating a new chain.
Changes:
- Adds a new “Update MCMS adapter” step with references to
chain_access.goandchain_access_test.go - Documents the expected interface addition (
ChainsFetcher) and an accessor method onChainAccessAdapter - Renumbers the existing “Write comprehensive tests” step accordingly
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Update the README to include instructions for updating the MCMS adapter when adding a new chain to the framework. This step was previously missing and was highlighted in PR #714 during the Stellar chain integration. The new section documents: - How to update chain/mcms/adapters/chain_access.go with the new chain's client accessor method - How to add the chain getter to the ChainsFetcher interface - How to update the corresponding test file with test coverage This ensures developers remember to update MCMS-related code when adding new chains that support MCMS operations.
2dc3a32 to
ba61833
Compare
|





Summary
This PR updates the README to include instructions for updating the MCMS adapter when adding a new chain to the framework. This step was previously missing and was highlighted in PR #714 during the Stellar chain integration.