Releases: PolymeshAssociation/polymesh-rest-api
v2.3.0
v2.2.0-alpha.3
v2.2.0
v2.2.0-alpha.2
2.2.0-alpha.2 (2022-11-25)
Features
v2.2.0-alpha.1
v2.1.0
v2.0.1
v2.0.0
2.0.0 (2022-11-07)
Bug Fixes
- π fix vault signing erroring on large payloads (#117) (a3ef90c)
- π Modify authorizations accept/remove service logic (#116) (503c816)
- π rename missing endpoint (6bee27d)
- π Update max validation check in
paginated-params.dto.ts
(8005c0d)
chore
- π€ Bump SDK version to 15.0.0-alpha.10 (facc00c)
Features
- πΈ Add an endpoint to get Asset's operation history (3d37201)
- πΈ add authentication mechanism (#121) (286b0a8)
- πΈ Add endpoints to modify/revoke account permissions (#131) (1f6c771)
- πΈ Add postgres datastore (#127) (a152a67)
- πΈ Allow optional
memo
field while creating instruction (3b003ea) - πΈ allow webhookUrl param to be passed on write requests (#114) (3a5451c)
- πΈ asset compliance requirements - edit, add, delete, deleteAll (#126) (89a66c7)
- πΈ Endpoint to get account subsidy (16cfddf)
- πΈ freeze/unfreeze secondary accounts (9d19569)
- πΈ improve response time by using an SDK without tx queues (9baf0f1)
- πΈ NetworkModule - getLatestBlock, getNetworkProperties (#128) (1fbd7a4)
- πΈ Option to redeem tokens from a specific portfolio (50b6001)
- πΈ pause/unpause compliance requirements (#123) (d863d6d)
- πΈ Point dep to
polymeshassociation
and bump SDK (b3c117b) - πΈ rename add secondary key endpoint (4d2ab7d)
- rename write endpoints to be more RPC-like (fcdf492)
BREAKING CHANGES
- π§¨
RedeemTokensDto
now containsfrom
attribute to specify the portfolio
from which tokens must be redeemed - 𧨠rename
POST identities/secondary-accounts/add
toPOST identities/secondary-accounts/invite
- π§¨
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
v1.0.0
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
v0.1.1 - fix vault signer with large payloads
What's Changed
- fix: π fix vault signing erroring on large payloads by @polymath-eric in #117
Full Changelog: v0.1.0...v0.1.1