22.0.0 (2023-09-05)
Bug Fixes
- ๐
asset.details
on v5.4 (a0d4a66) - ๐
canTransfer
method for 5.4 with dual version (d2a5e6f) - ๐ create custom asset type for v6 (8d730cb)
- ๐ instruction affirmation does not need leg count (#1017) (5aea612)
- ๐ offering and move funds for 5.4 (fd34a43)
- ๐ unwrap fundraiser for 5.4 chains (c782e67)
Documentation
- โ๏ธ Update README to point compatible version as 6.x.x (452159c)
Features
- ๐ธ Add method to fetch historical authorizations (c6a0ebc)
- ๐ธ Add method to get POLYX transactions for an account (fdf3060)
- ๐ธ Allow manual execution of failed instructions (4cfe8be)
- ๐ธ Drop support for
Executed
instruction status (e73a2e8) - ๐ธ merge alpha into beta (c7cb783)
- ๐ธ Remove middleware V1 (fd9e27e)
- ๐ธ Remove middleware v1 ordering (530fd88)
- ๐ธ remove react dependency (#1021) (0fb9955)
- ๐ธ support 5.4 version for createAsset (55cd447)
- ๐ธ Update dependencies (49431e5)
- ๐ธ Update middleware types compatible with 6.0.0 chain (fd8ef98)
- ๐ธ update to accomodate new 6.0 types (995f0fd)
- ๐ธ update types to 6.0 (01baae0)
Performance Improvements
BREAKING CHANGES
- ๐งจ
TransactionOrderByInput
has been removed in favour
ofExtrinsicsOrderBy
- ๐งจ Removed
middleware
fromConnectParams
- ๐งจ Remove all the V2 methods added for middlewareV2 support. V1 methods now directly query middleware V2
- ๐งจ Investor Uniqueness methods have been removed.
This removes the methodsaddInvestorUniquenessClaim
,
getInvestorUniquenessClaims
fromClaims
entity.
- ๐งจ
ClaimType
enum drops the following values:
InvestorUniqueness
,InvestorUniquenessV2
,NoType
,NoData
.
Associated interfaces for these claim types have also been removed. - ๐งจ
AssetDetails
interface drops support forrequireInvestorUniquess
- ๐งจ
CheckpointSchedule
no longer hasperiod
attribute,
instead has a new attributependingPoints
, a Date array which points
to date in future where checkpoints are scheduled to be created. - ๐งจ
CheckpointSchedule
has also droppedstart
andcomplexity
attributes. - ๐งจ
CalendarUnit
andCalendarPeriod
interfaces have been removed. - ๐งจ
Identity.getVenues
no longer supports subscription - ๐งจ
Identity.getScopeId
has been removed - ๐งจ
Instruction.reschedule
has been removed. Failed instructions can
useexecuteManually
instead now - ๐งจ
InstructionStatus
can now be distinguished betweenSuccess
and
Rejected
status.InstructionStatus
enum drops support forExecuted
- ๐งจ
CreateCheckpointScheduleParams
now only containspoints: Date[]