26.0.0 (2024-10-30)
Bug Fixes
- ๐
InstructionDetails.createdAt
is nullable (769c487) - ๐ add stats transfer report runtime type (09a95f6)
- ๐ Correctly handle scopeToMiddlewareScope for Asset types (3dc52c3)
- ๐ Handle asset type middleware scope conversion correctly (0e08131)
- ๐ Handle self transfer case when checking asset transfer (4d69080)
- ๐ Make
venueId
optional inHistoricInstrution
(411a522) - ๐ Return rejected status correctly for Instructions (2e76e91)
- ๐ undefined variables corrupting claims gql (d518801)
- ๐ v7 multiSig errors by using payer/admin over creator (7a2c9b5)
Documentation
- โ๏ธ Update interfaces with notes about ticker deprecation (aab288a)
Features
- ๐ธ add pagination, filters to getHistoricalInstructions (21da365)
- ๐ธ Add dual version support for 6.x-7.x chain (a1369fc)
- ๐ธ add getHistoricalInstructions to Settlements (4063b92)
- ๐ธ add guard for no offchain leg without venue (5453e90)
- ๐ธ add link ticker to asset ID method (1e0166c)
- ๐ธ Add method to get portfolio by name (1a3c9e6)
- ๐ธ Add method to register custom asset types (255650d)
- ๐ธ Add procedure to unlink ticker from an Asset (8966c83)
- ๐ธ add raw ID to BaseAsset class (9513775)
- ๐ธ add set admin method to multi instance (db2c542)
- ๐ธ Add support for btreeset portfolio ID (08aa612)
- ๐ธ Allow creation of nft collection with custom nft type (a9627f7)
- ๐ธ allow optional venues for 7.0 chains (8750fe9)
- ๐ธ allow removal of a multiSig payer (617358c)
- ๐ธ auto register ticker when linking to asset (ab3a6cb)
- ๐ธ Bump min SQ version to
16.0.0-alpha.1
(2c7c80f) - ๐ธ Bump polymesh-types to
5.14.0
(0819084) - ๐ธ fix incorrect conflict resolutions (32b2b14)
- ๐ธ get genesisHash and sq version (d52ef84)
- ๐ธ handle optional venues when processing instruction (a0ea5a4)
- ๐ธ Make
ticker
optional while creating an asset (9460b22) - ๐ธ pass key count when redeeming NFT (76140dd)
- ๐ธ reintroduce joinCreator for dual-version (46ff3f1)
- ๐ธ return
ticker
fromBaseAsset.details
method (2b89526) - ๐ธ throw error from getAuthorization (efa196c)
- ๐ธ update getMultiSigSigners for v7 (103f7c8)
- ๐ธ Update logic for generating legacy ticker Asset IDs (519565f)
- ๐ธ Update middleware types compatible with 7.x chain (8cedbad)
- ๐ธ Update middleware types with latest SQ (5b26058)
- ๐ธ Update polkadot types for 7.0 chain release (fc731b8)
- ๐ธ update polkadot types to latest (76b5a03)
- ๐ธ Update polymesh types which rename AssetID to AssetId (da1b716)
- ๐ธ updated multiSig procedure + getPermissions (01a9ec4)
- ๐ธ Use genesis hash to generate next Asset ID (01f8fd6)
- ๐ธ use stats runtime API to get transfer restriction errs (7ca46a3)
- ๐ธ use uuid formatted asset ids (ea3c7c0)
BREAKING CHANGES
- ๐งจ
venueId
is now optional inHistoricInstruction
. This affects the
methodsgetHistoricInstructions
in Identity entity - ๐งจ
ticker
,did
has been deprecated inBaseAsset
. To get the ticker
associated with an Asset, useBaseAsset.details
method which now
returnsticker
along with other Asset details - ๐งจ - Since its not mandatory to specify a ticker while creating an Asset,
ticker
field inBaseAsset
is now optional.did
field inBaseAsset
is now also optional.
- Since an instruction can be created without specifying a venue,
venue
field in
InstructionDetails
is now nullable. TickerReservationDetails
optionally returnsassetId
when the status is
TickerReservationStatus.AssetCreated
.ticker
field inCreateNftCollectionParams
is now optional. Also, a new optional
fieldassetId
has been added to specify ID of the asset while creating NFT collection.Ticker
value has been marked as deprecated in favour of newAsset
value for
the enums:ScopeType
andClaimScopeTypeEnum
ticker
field has been deprecated in favour ofassetId
field in:
a.HumanReadable
interfaces for these entities:Checkpoint
,CheckpointSchedule
,
CorporateAction
,DividendDistribution
,CustomPermissionGroup
,KnownPermissionGroup
,
MetadataEntry
,Offering
b.MetadataKeyId
interface
- ๐งจ
InstructionDetails.createdAt
is nullable