1.0.0 (2022-11-03)
BREAKING CHANGES
-
๐งจ
ticker-reservations/:ticker
now doesn't throw errors if ticker is not
present or Asset is already created. To check ticker availability, we can now usedetails.status
-
chore: ๐ค Fix SDK version in yarn.lock
-
feat: ๐ธ Add an endpoint to get Asset's operation history
-
feat: rename write endpoints to be more RPC-like
BREAKING CHANGES:
POST accounts/transfers
->POST accounts/transfer
POST assets/:ticker/set-documents
->POST assets/:ticker/documents/set
POST assets/create-asset
->POST assets/create
POST assets/:ticker/checkpoints/schedules
->POST assets/:ticker/checkpoints/schedules/create
DELETE assets/:ticker/checkpoints/schedules/:id
->
POST assets/:ticker/checkpoints/schedules/:id/delete
PUT assets/:ticker/compliance-requirements
->
POST assets/:ticker/compliance-requirements/set
PATCH assets/:ticker/corporate-actions/default-config
->
POST assets/:ticker/corporate-actions/default-config/modify
POST assets/:ticker/corporate-actions/dividend-distributions
->
POST assets/:ticker/corporate-actions/dividend-distributions/create
DELETE assets/:ticker/corporate-actions/:id
->
POST assets/:ticker/corporate-actions/:id/delete
POST assets/:ticker/corporate-actions/:id/payments
->
POST assets/:ticker/corporate-actions/dividend-distributions/:id/payments/pay
PUT assets/:ticker/corporate-actions/:id/documents
->
POST assets/:ticker/corporate-actions/:id/documents/link
PUT assets/:ticker/corporate-actions/:id/checkpoint
->
POST assets/:ticker/corporate-actions/dividend-distributions/:id/modify-checkpoint
POST identities/secondary-accounts
->POST identities/secondary-accounts/add
POST identities/:did/portfolios/asset-movements
->
POST identities/:did/portfolios/move-assets
POST portfolios
->POST portfolios/create
DELETE identities/:did/portfolios/:id
->POST identities/:did/portfolios/:id/delete
POST venues/:id/instructions
->POST venues/:id/instructions/create
POST venues
->POST venues/create
PATCH venues/:id
->POST venues/:id/modify
-
fix: ๐ rename missing endpoint
-
docs: โ๏ธ Update summary
-
feat: ๐ธ rename add secondary key endpoint
-
๐งจ rename
POST identities/secondary-accounts/add
toPOST identities/secondary-accounts/invite
-
chore: ๐ค Address review comments
-
feat: ๐ธ Point dep to
polymeshassociation
and bump SDK -
feat: ๐ธ improve response time by using an SDK without tx queues
by using an SDK that uses batching the response times of some endpoints
is significantly improved. The most improved createAsset call can be up
to 4 times faster (1 minute -> 15 seconds)
-
style: ๐ remove developer comment
-
style: ๐ remove unused import
-
refactor: ๐ก address PR comments
-
chore: ๐ค Update CODEOWNERS
-
chore: ๐ค Remove Jere's account from TODO comments
-
style: ๐ rename
transactions
totransaction
in .spec files