@cardano-sdk/e2e 0.20.0 → 0.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/cjs/util/handle-util.d.ts +33 -0
- package/dist/cjs/util/handle-util.d.ts.map +1 -0
- package/dist/cjs/util/handle-util.js +108 -0
- package/dist/cjs/util/handle-util.js.map +1 -0
- package/dist/cjs/util/index.d.ts +1 -0
- package/dist/cjs/util/index.d.ts.map +1 -1
- package/dist/cjs/util/index.js +1 -0
- package/dist/cjs/util/index.js.map +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/util/handle-util.d.ts +33 -0
- package/dist/esm/util/handle-util.d.ts.map +1 -0
- package/dist/esm/util/handle-util.js +97 -0
- package/dist/esm/util/handle-util.js.map +1 -0
- package/dist/esm/util/index.d.ts +1 -0
- package/dist/esm/util/index.d.ts.map +1 -1
- package/dist/esm/util/index.js +1 -0
- package/dist/esm/util/index.js.map +1 -1
- package/local-network/scripts/mint-handles.sh +1 -1
- package/package.json +19 -19
- package/src/util/handle-util.ts +151 -0
- package/src/util/index.ts +1 -0
- package/test/k6/endpoints/stake-pool/search.test.js +60 -0
- package/test/long-running/delegation-rewards.test.ts +1 -0
- package/test/projection/single-tenant-utxo.test.ts +2 -1
- package/test/tsconfig.json +7 -2
- package/test/wallet/PersonalWallet/delegationDistribution.test.ts +14 -3
- package/test/wallet/PersonalWallet/handle.test.ts +45 -127
- package/test/wallet/PersonalWallet/nft.test.ts +0 -3
- package/test/wallet/PersonalWallet/phase2validation.test.ts +2 -2
- package/test/web-extension/extension/const.ts +2 -0
- package/test/web-extension/extension/stubWalletApi.ts +3 -3
- package/test/web-extension/extension/ui.html +3 -0
- package/test/web-extension/extension/ui.ts +22 -0
- package/test/web-extension/specs/dapp-cip95.spec.ts +1 -1
- package/test/web-extension/specs/wallet.spec.ts +15 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.21.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.20.0...@cardano-sdk/e2e@0.21.0) (2023-09-20)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* delegation distribution portfolio is now persisted on chain and taken into account during change distribution
|
|
11
|
+
* remove the CML serialization code from core package
|
|
12
|
+
* remove AssetInfo.history and AssetInfo.mintOrBurnCount
|
|
13
|
+
* incompatible with previous revisions of cardano-services
|
|
14
|
+
- rename utxo and transactions PouchDB stores
|
|
15
|
+
- update type of Tx.witness.redeemers
|
|
16
|
+
- update type of Tx.witness.datums
|
|
17
|
+
- update type of TxOut.datum
|
|
18
|
+
- remove Cardano.Datum type
|
|
19
|
+
|
|
20
|
+
fix(cardano-services): correct chain history openApi endpoints path url to match version
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* add getExtensions() to CIP-30 wallet API ([944e0ce](https://github.com/input-output-hk/cardano-js-sdk/commit/944e0cea55bcd8c91e1888e708e717adc7b1ea4b))
|
|
25
|
+
* add NFT metadata projection ([91fe7df](https://github.com/input-output-hk/cardano-js-sdk/commit/91fe7df50a37bce2ac8cba350fafe788a8174112))
|
|
26
|
+
* add support for signing data with a DRepID in CIP-95 API ([3057cce](https://github.com/input-output-hk/cardano-js-sdk/commit/3057cce6ac1585d6ae2a62a89d0417e5fb2416f4))
|
|
27
|
+
* delegation distribution portfolio is now persisted on chain and taken into account during change distribution ([7573938](https://github.com/input-output-hk/cardano-js-sdk/commit/75739385ea422a0621ded87f2b72c5878e3fcf81))
|
|
28
|
+
* **e2e:** hoist handle minting utils to src ([e49f3fd](https://github.com/input-output-hk/cardano-js-sdk/commit/e49f3fd28b29ff398acb4e2386124e25a570918a))
|
|
29
|
+
* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55))
|
|
30
|
+
* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c))
|
|
31
|
+
|
|
32
|
+
### Code Refactoring
|
|
33
|
+
|
|
34
|
+
* remove AssetInfo.history and AssetInfo.mintOrBurnCount ([4c0a7ee](https://github.com/input-output-hk/cardano-js-sdk/commit/4c0a7ee77d9ffcf5583fc922597475c4025be17b))
|
|
35
|
+
|
|
6
36
|
## [0.20.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.19.3...@cardano-sdk/e2e@0.20.0) (2023-09-12)
|
|
7
37
|
|
|
8
38
|
### ⚠ BREAKING CHANGES
|