@midnight-ntwrk/wallet-sdk-utilities 1.0.0-beta.10 → 1.0.0-beta.11

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.
@@ -18,7 +18,7 @@ const startContainer = (container) => {
18
18
  return Effect.acquireRelease(Effect.promise(() => container.start()), (container) => Effect.promise(() => container.stop({ timeout: 5_000 })));
19
19
  };
20
20
  export const runNodeContainer = (adjustment = identity) => {
21
- const container = new GenericContainer('ghcr.io/midnight-ntwrk/midnight-node:0.20.0-alpha.1')
21
+ const container = new GenericContainer('ghcr.io/midnight-ntwrk/midnight-node:0.20.0-rc.6')
22
22
  .withEnvironment({
23
23
  CFG_PRESET: 'dev',
24
24
  SIDECHAIN_BLOCK_BENEFICIARY: '04bcf7ad3be7a5c790460be82a713af570f22e0f801f6659ab8e84a52be6969e',
@@ -28,7 +28,7 @@ export const runNodeContainer = (adjustment = identity) => {
28
28
  return startContainer(adjustment(container));
29
29
  };
30
30
  export const runProofServerContainer = (adjustment = identity) => {
31
- const container = new GenericContainer('ghcr.io/midnight-ntwrk/proof-server:7.0.0-rc.1')
31
+ const container = new GenericContainer('ghcr.io/midnight-ntwrk/proof-server:7.0.0')
32
32
  .withEnvironment({
33
33
  RUST_BACKTRACE: 'full',
34
34
  })
@@ -38,7 +38,7 @@ export const runProofServerContainer = (adjustment = identity) => {
38
38
  return startContainer(adjustment(container));
39
39
  };
40
40
  export const runTxGenerator = (config, adjustment = identity) => {
41
- const container = new GenericContainer('ghcr.io/midnight-ntwrk/midnight-node-toolkit:0.20.0-alpha.1')
41
+ const container = new GenericContainer('ghcr.io/midnight-ntwrk/midnight-node-toolkit:0.20.0-rc.1')
42
42
  .withBindMounts([{ source: config.destPath, target: '/tmp', mode: 'rw' }])
43
43
  .withCommand([
44
44
  'generate-txs',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@midnight-ntwrk/wallet-sdk-utilities",
3
3
  "description": "Domain-agnostic utilities for the wallet SDK - common operations and types",
4
- "version": "1.0.0-beta.10",
4
+ "version": "1.0.0-beta.11",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -37,7 +37,7 @@
37
37
  }
38
38
  },
39
39
  "dependencies": {
40
- "effect": "^3.17.3",
40
+ "effect": "^3.19.14",
41
41
  "portfinder": "^1.0.37",
42
42
  "rxjs": "^7.5",
43
43
  "testcontainers": "^11.10.0"