Skip to main content

0.11.0

Released on October 10th, 2025
  • Added support to tap internal parties
previously you could only tap external parties using signing flow, now it can be done for internal parties. this is useful for tapping the validator operator party right after startup in case of missing funds.
  • Dar-file manage
the functionality have been added for the adminLedgerController to upload dars, this is useful for testing custom dar flows
  • Full support for token standard allocations
  • Party onboarding can now be done on the ledgerController instead of the TopologyController
this removes the need for grpc admin access you can replace as such: ================================================= ============================================== Previous Method new Method ================================================= ============================================== sdk.topology?.prepareExternalPartyTopology sdk.userLedger?.generateExternalParty sdk.topology?.submitExternalPartyTopology sdk.userLedger?.allocateExternalParty sdk.topology?.prepareSignAndSubmitExternalParty sdk.userLedger?.signAndAllocateExternalParty ================================================= ============================================== the multi-hosted configuration is the same, except that the ledger you call should not be included in the array
for backwards compatibility the previous endpoints are still there and available.
  • User creation and rights management
you can now create new users and manage rights through the Wallet SDK. This can be useful for setting up a master user
  • ListWallets now returns a list of partyIds instead of partyDetails
  • ListWallets now correctly returns the parties that the user has access to (including CanReadAsAnyParty)
  • Extended the max timeout when onboarding a party from 20s to 1 minute
  • Party onboarding now queries the specific party instead of all parties (performance improvement)
  • Party onboarding now has idempotent behavior
  • Default values changed for Wallet SDK from localLedgerDefault to localNetledgerDefault on all controllers