@cardano-sdk/e2e 0.36.9 → 0.37.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/.env.example +2 -1
- package/CHANGELOG.md +35 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/cjs/util/util.d.ts.map +1 -1
- package/dist/cjs/util/util.js +3 -0
- package/dist/cjs/util/util.js.map +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/util/util.d.ts.map +1 -1
- package/dist/esm/util/util.js +3 -0
- package/dist/esm/util/util.js.map +1 -1
- package/docker-compose.yml +1 -0
- package/local-network/Dockerfile +20 -18
- package/local-network/scripts/install.sh +3 -3
- package/local-network/scripts/make-babbage.sh +8 -2
- package/local-network/scripts/pools/update-node-utils.sh +226 -159
- package/local-network/scripts/setup-new-delegator-keys.sh +2 -1
- package/local-network/scripts/start.sh +2 -0
- package/local-network/templates/babbage/alonzo-babbage-test-genesis.json +11 -1
- package/local-network/templates/babbage/conway-babbage-test-genesis.json +281 -22
- package/local-network/templates/babbage/db-sync-config.json +1 -0
- package/package.json +21 -21
- package/src/util/util.ts +3 -0
- package/test/wallet_epoch_0/PersonalWallet/txChainHistory.test.ts +2 -2
- package/test/{wallet_epoch_0 → wallet_epoch_3}/PersonalWallet/conwayTransactions.test.ts +104 -26
package/.env.example
CHANGED
|
@@ -48,8 +48,9 @@ STAKE_POOL_PROJECTOR_URL='http://localhost:4002/'
|
|
|
48
48
|
# PRE_CONWAY=stable starts the local-network in babbage era. If this variable is not set, the local-network will start in conway era.
|
|
49
49
|
# TODO: Once conway era is stable, remove this variable and start the local-network in conway era by default.
|
|
50
50
|
#
|
|
51
|
-
PRE_CONWAY=stable
|
|
51
|
+
# PRE_CONWAY=stable
|
|
52
52
|
|
|
53
53
|
# NETWORK_SPEED (fast|slow) determines the timeout tests will use when for blockchain events, like transaction confirmation.
|
|
54
54
|
# It should be configured to 'slow' when running against real networks like preprod.
|
|
55
|
+
# The local-network slotLength is 0.2s when running in fast mode (default), and 1s when running in slow mode.
|
|
55
56
|
NETWORK_SPEED=fast
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
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.37.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.36.10...@cardano-sdk/e2e@0.37.0) (2024-07-31)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* **cardano-services:** conway protocol parameters could be undefined in PV8 or lower
|
|
11
|
+
* remove OgmiosTxSubmitProvider
|
|
12
|
+
* add ObservableCardanoNode.submitTx method
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* add ObservableCardanoNode.submitTx method ([8289062](https://github.com/input-output-hk/cardano-js-sdk/commit/8289062455b561f00cbfedc0900b0e46eb7befc4))
|
|
17
|
+
* **cardano-services:** sanchonet support ([13109d6](https://github.com/input-output-hk/cardano-js-sdk/commit/13109d60361730c5c36ee0f616f1a478e9b71b98))
|
|
18
|
+
* **e2e:** run e2e test on slow networks like preprod/preview ([772c026](https://github.com/input-output-hk/cardano-js-sdk/commit/772c0268afb5c3a413bd0d34ace43dc6ab4e8c8c))
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **cardano-services:** conway protocol parameters could be undefined in PV8 or lower ([e68c59b](https://github.com/input-output-hk/cardano-js-sdk/commit/e68c59b9c80b9df5992f0e7b04d97719c8d72005))
|
|
23
|
+
* **e2e:** cli deprecated protocol-params arg ([f8b190d](https://github.com/input-output-hk/cardano-js-sdk/commit/f8b190d4f9409ff14674d80d511dea7f603d47b7))
|
|
24
|
+
* **e2e:** do not remove inexistent file ([a1200fb](https://github.com/input-output-hk/cardano-js-sdk/commit/a1200fb956918e5541176474e039220f7bb1c50e))
|
|
25
|
+
* **e2e:** ignore inexistent files when cleaning up ([ed08a0a](https://github.com/input-output-hk/cardano-js-sdk/commit/ed08a0ae7e864e275577ec9ebd47d2a87383c406))
|
|
26
|
+
* **e2e:** local-network cardano-node download url ([c024840](https://github.com/input-output-hk/cardano-js-sdk/commit/c024840a0fa41a90a4e77b61633ecd7bd2ab5639))
|
|
27
|
+
* **e2e:** more robust local-network script name logline ([eb78b76](https://github.com/input-output-hk/cardano-js-sdk/commit/eb78b761be97837b739a9338c0dce6284ae3a2ac))
|
|
28
|
+
* **e2e:** use node 9.0.0 in install script too ([b02092d](https://github.com/input-output-hk/cardano-js-sdk/commit/b02092d9e9c2b63acfd3875c47927e76ff034152))
|
|
29
|
+
* local-network startup script ([30a115d](https://github.com/input-output-hk/cardano-js-sdk/commit/30a115dd761d5704081b4f79556d15a1f47c089b))
|
|
30
|
+
* produced coins error data is present only for ValueNotConserved ([e01a30c](https://github.com/input-output-hk/cardano-js-sdk/commit/e01a30ce056f1886c0ddbacf245b195f13111244))
|
|
31
|
+
* **wallet:** tx not withdrawing all rewards ([9c74668](https://github.com/input-output-hk/cardano-js-sdk/commit/9c746689c6050373feff857fe9d9b0b03642976d))
|
|
32
|
+
|
|
33
|
+
### Code Refactoring
|
|
34
|
+
|
|
35
|
+
* remove OgmiosTxSubmitProvider ([8c56c5e](https://github.com/input-output-hk/cardano-js-sdk/commit/8c56c5eddb73a4888013798acf97879f9ce741f7))
|
|
36
|
+
|
|
37
|
+
## [0.36.10](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.36.9...@cardano-sdk/e2e@0.36.10) (2024-07-25)
|
|
38
|
+
|
|
39
|
+
**Note:** Version bump only for package @cardano-sdk/e2e
|
|
40
|
+
|
|
6
41
|
## [0.36.9](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.36.8...@cardano-sdk/e2e@0.36.9) (2024-07-25)
|
|
7
42
|
|
|
8
43
|
### Features
|