@cardano-sdk/e2e 0.42.2 → 0.43.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 +10 -0
- package/CHANGELOG.md +14 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/docker-compose.yml +11 -0
- package/local-network/Dockerfile +6 -6
- package/local-network/scripts/install.sh +1 -1
- package/local-network/scripts/make-babbage.sh +3 -1
- package/local-network/scripts/prepare_blockfrost_ryo.sh +13 -0
- package/local-network/scripts/start.sh +1 -0
- package/local-network/templates/blockfrost-ryo/byron_genesis.json +6 -0
- package/local-network/templates/blockfrost-ryo/genesis.json +12 -0
- package/local-network/templates/blockfrost-ryo/local-network.yaml +14 -0
- package/package.json +20 -19
- package/test/k6/scenarios/wallets.test.js +9 -1
- package/test/projection/offline-fork.test.ts +5 -9
- package/test/projection/single-tenant-utxo.test.ts +2 -2
- package/test/wallet_epoch_0/PersonalWallet/byron.test.ts +2 -13
- package/test/wallet_epoch_0/PersonalWallet/metadata.test.ts +3 -11
- package/test/wallet_epoch_0/PersonalWallet/mint.test.ts +2 -12
- package/test/wallet_epoch_0/PersonalWallet/multiAddress.test.ts +4 -22
- package/test/wallet_epoch_0/PersonalWallet/phase2validation.test.ts +4 -22
- package/test/wallet_epoch_0/PersonalWallet/plutusTest.test.ts +7 -39
- package/test/wallet_epoch_0/PersonalWallet/txChainHistory.test.ts +2 -2
- package/test/wallet_epoch_0/PersonalWallet/unspendableUtxos.test.ts +3 -23
- package/test/wallet_epoch_0/SharedWallet/simpleTx.test.ts +2 -1
package/.env.example
CHANGED
|
@@ -57,3 +57,13 @@ STAKE_POOL_PROJECTOR_URL='http://localhost:4002/'
|
|
|
57
57
|
# It should be configured to 'slow' when running against real networks like preprod.
|
|
58
58
|
# The local-network slotLength is 0.2s when running in fast mode (default), and 1s when running in slow mode.
|
|
59
59
|
NETWORK_SPEED=fast
|
|
60
|
+
|
|
61
|
+
# to run tests against local blockfrost
|
|
62
|
+
# Blockfrost secrets
|
|
63
|
+
#BLOCKFROST_CUSTOM_BACKEND_URL='http://blockfrost-ryo:3000'
|
|
64
|
+
#ASSET_PROVIDER: 'blockfrost'
|
|
65
|
+
#UTXO_PROVIDER: 'blockfrost'
|
|
66
|
+
#CHAIN_HISTORY_PROVIDER: 'blockfrost'
|
|
67
|
+
#REWARDS_PROVIDER: 'blockfrost'
|
|
68
|
+
#NETWORK_INFO_PROVIDER: 'blockfrost'
|
|
69
|
+
#TX_SUBMIT_PROVIDER: 'blockfrost'
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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.43.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.42.2...@cardano-sdk/e2e@0.43.0) (2024-09-25)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* OgmiosObservableCardanoNode and bufferChainSyncEvent were moved from core package to projection package
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* dockerize blockfrost-ryo ([d548040](https://github.com/input-output-hk/cardano-js-sdk/commit/d548040c85ea23a3c72457fccc760578c62d8c26))
|
|
15
|
+
|
|
16
|
+
### Code Refactoring
|
|
17
|
+
|
|
18
|
+
* hoist bufferChainSyncEvent to projection package ([dd8b52f](https://github.com/input-output-hk/cardano-js-sdk/commit/dd8b52fac280e2ff090ded2020adb6078b90ab2e))
|
|
19
|
+
|
|
6
20
|
## [0.42.2](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.42.1...@cardano-sdk/e2e@0.42.2) (2024-09-12)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @cardano-sdk/e2e
|