@midnight-ntwrk/wallet-sdk-node-client 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.
@@ -1,5 +1,5 @@
1
1
  import { Error, FileSystem } from '@effect/platform';
2
- import * as ledger from '@midnight-ntwrk/ledger-v6';
2
+ import * as ledger from '@midnight-ntwrk/ledger-v7';
3
3
  import { SerializedTransaction } from '@midnight-ntwrk/wallet-sdk-abstractions';
4
4
  import { ProverClient } from '@midnight-ntwrk/wallet-sdk-prover-client/effect';
5
5
  import { ClientError, ServerError } from '@midnight-ntwrk/wallet-sdk-utilities/networking';
@@ -11,7 +11,7 @@
11
11
  // See the License for the specific language governing permissions and
12
12
  // limitations under the License.
13
13
  import { FileSystem } from '@effect/platform';
14
- import * as ledger from '@midnight-ntwrk/ledger-v6';
14
+ import * as ledger from '@midnight-ntwrk/ledger-v7';
15
15
  import { SerializedTransaction } from '@midnight-ntwrk/wallet-sdk-abstractions';
16
16
  import { HttpProverClient, ProverClient } from '@midnight-ntwrk/wallet-sdk-prover-client/effect';
17
17
  import { TestContainers } from '@midnight-ntwrk/wallet-sdk-utilities/testing';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midnight-ntwrk/wallet-sdk-node-client",
3
- "version": "1.0.0-beta.10",
3
+ "version": "1.0.0-beta.11",
4
4
  "type": "module",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -45,7 +45,7 @@
45
45
  "bn.js": "^5.2.2",
46
46
  "effect": "^3.17.3",
47
47
  "rxjs": "^7.5",
48
- "testcontainers": "^11.8.1"
48
+ "testcontainers": "^11.10.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@effect/cluster": "^0.46.2",
@@ -55,18 +55,19 @@
55
55
  "@effect/rpc": "^0.68.0",
56
56
  "@effect/sql": "^0.44.0",
57
57
  "@effect/workflow": "^0.8.1",
58
- "@midnight-ntwrk/ledger-v6": "6.1.0-alpha.6",
59
- "@midnight-ntwrk/wallet-sdk-abstractions": "1.0.0-beta.9",
60
- "@midnight-ntwrk/wallet-sdk-prover-client": "1.0.0-beta.10",
61
- "@midnight-ntwrk/wallet-sdk-utilities": "1.0.0-beta.7",
58
+ "@midnight-ntwrk/ledger-v7": "7.0.0-alpha.1",
59
+ "@midnight-ntwrk/wallet-sdk-abstractions": "1.0.0-beta.10",
60
+ "@midnight-ntwrk/wallet-sdk-prover-client": "1.0.0-beta.12",
61
+ "@midnight-ntwrk/wallet-sdk-utilities": "1.0.0-beta.9",
62
62
  "@polkadot/typegen": "^16.3.1",
63
63
  "@types/yargs": "^17.0.33",
64
64
  "eslint": "^9.37.0",
65
+ "prettier": "^3.7.0",
65
66
  "publint": "~0.3.14",
66
67
  "rimraf": "^6.0.1",
67
68
  "tsx": "^4.20.4",
68
69
  "typescript": "^5.9.3",
69
- "vitest": "^3.2.4",
70
+ "vitest": "^4.0.16",
70
71
  "yargs": "^18.0.0"
71
72
  },
72
73
  "scripts": {
@@ -75,8 +76,8 @@
75
76
  "typecheck": "tsc -b ./tsconfig.json --noEmit",
76
77
  "test": "vitest run",
77
78
  "lint": "eslint --max-warnings 0",
78
- "format": "prettier --write \"**/*.{ts,js,json,yaml,yml}\"",
79
- "format:check": "prettier --check \"**/*.{ts,js,json,yaml,yml}\"",
79
+ "format": "prettier --write \"**/*.{ts,js,json,yaml,yml,md}\"",
80
+ "format:check": "prettier --check \"**/*.{ts,js,json,yaml,yml,md}\"",
80
81
  "dist": "tsc -b ./tsconfig.build.json",
81
82
  "dist:publish": "tsc -b ./tsconfig.publish.json",
82
83
  "clean": "rimraf --glob dist 'tsconfig.*.tsbuildinfo' && date +%s > .clean-timestamp",