Skip to content

Reference

ledger.getConnectedSynchronizers

GET /v2/state/connected-synchronizers — synchronizers connected for a party (optional participant filter).

Calls GET /v2/state/connected-synchronizers with query party (required) and optional participantId.

Receiver: await canton.ledger.getConnectedSynchronizers

Setup

import { Canton } from '@fairmint/canton-node-sdk';

const canton = new Canton({
  network: 'devnet',
  provider: '5n',
  partyId: 'OWN_PARTY_ID',
});

Minimal example

const sync = await canton.ledger.getConnectedSynchronizers({
  party: canton.getPartyId(),
});

Parameters — GetConnectedSynchronizersParams

  • party (required, string)
  • participantId (optional, string)

Returns — GetConnectedSynchronizersResponse

OpenAPI JSON listing synchronizer connectivity.

Auth and party

OAuth scope exposing participant topology introspection for party.

Source

operations/v2/state/get-connected-synchronizers.ts