Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/canton-mcms-read-as-party-ids.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"chainlink-deployments-framework": patch
---

Wire Canton `ReadAsPartyIDs` from CLDF chain metadata through the MCMS chain access adapter.

Bump `mcms` to pick up Canton participant `ReadAsPartyIDs` support in `sdk/canton`.
3 changes: 2 additions & 1 deletion chain/mcms/adapters/chain_access.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ func cantonChainFromCLDF(ch cldfcanton.Chain) mcmscanton.Chain {
participants := make([]mcmscanton.Participant, 0, len(ch.Participants))
for _, p := range ch.Participants {
participants = append(participants, mcmscanton.Participant{
PartyID: p.PartyID,
PartyID: p.PartyID,
ReadAsPartyIDs: append([]string(nil), p.ReadAsPartyIDs...),
LedgerServices: mcmscanton.LedgerServices{
State: p.LedgerServices.State,
Command: p.LedgerServices.Command,
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ require (
github.com/smartcontractkit/freeport v0.1.3-0.20250828155247-add56fa28aad
github.com/smartcontractkit/go-daml v0.0.0-20260604143752-c6f6567940ba
github.com/smartcontractkit/libocr v0.0.0-20260304194147-a03701e2c02e
github.com/smartcontractkit/mcms v0.47.1-0.20260609163952-0b2bf692ba6a
github.com/smartcontractkit/mcms v0.47.1-0.20260610155329-856384f2ce70

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we just keep the tag instead of a specific commit here?

github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
github.com/spf13/viper v1.21.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading