You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🧨 Return type of MultiSig.getHistoricalProposals is now changed to ResultSet<HistoricalMultiSigProposal> to provide more info about the
proposal. This will allow get know information about prunded proposals
as well
🧨 SDK no longer supports chain 6.x
Drops support for 6.3 spec version
type of signers has been changed to Account type in MultiSigDetails and MultiSigSigners.
This affects details method in MultiSig entity and getMultiSigSigners in Identity entity
Deprecated getSubsidy method of the Account entity has been removed.
Deprecated ticker field has been removed from the interface MetadataKeyId. This affects getCollectionKeys method from NftCollection entity
Deprecated ticker field has been removed from HumanReadable interfaces for these entities: Checkpoint, CheckpointSchedule, CorporateAction, DividendDistribution, CustomPermissionGroup, KnownPermissionGroup, MetadataEntry, Offering,
Ticker value has been removed from ScopeType enum
ticker field has been renamed to assetId in ClaimScope interface
Deprecated did and ticker fields of the BaseAsset entity have been removed.
Deprecated joinCreator method of MultiSig entity has been removed
🧨 Methods in the Instruction entity that retrieve information from the
chain were updated to use middleware for fetching data, when available. If middleware is
unavailable, the methods will continue to fetch data directly from the chain.
The following methods were modified with this logic: details, getAffirmations, getLegs, getMediators, getOffChainAffirmations, getOffChainAffirmationForLeg.
When querying via middleware, these methods will now throw an error in the following cases:
a. If the instruction does not exist.
b.If the instruction data has not yet been processed by the middleware.
Also, the pagination options for getAffirmations and getLegs now supports MiddlewarePaginationOptions as well (when querying via middleware)