@bulletxyz/bullet-sdk 0.25.0-rc.0 → 0.25.0-rc.10
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/dist/browser/index.js +152 -143
- package/dist/browser/index.js.map +2 -2
- package/dist/node/index.js +152 -143
- package/dist/node/index.js.map +2 -2
- package/dist/types/bullet-wasm/index.d.ts +4 -4
- package/dist/types/calc.d.ts +5 -5
- package/dist/types/client.d.ts +31 -24
- package/dist/types/rollupTypes.d.ts +18 -10
- package/dist/types/types.d.ts +16 -4
- package/dist/types/zod-types/index.d.ts +2 -0
- package/dist/types/zod-types/rest.d.ts +2043 -1204
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/zetamarkets/bullet-sdk.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.25.0-rc.
|
|
7
|
+
"version": "0.25.0-rc.10",
|
|
8
8
|
"description": "Bullet SDK",
|
|
9
9
|
"author": "@bulletxyz",
|
|
10
10
|
"license": "Apache-2.0",
|
|
@@ -34,6 +34,9 @@
|
|
|
34
34
|
"dev": "tsx --experimental-wasm-modules examples/test.ts",
|
|
35
35
|
"package": "pnpm build && pnpm pack",
|
|
36
36
|
"prepublishOnly": "pnpm build",
|
|
37
|
+
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
38
|
+
"test:build": "pnpm build && pnpm test",
|
|
39
|
+
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
|
|
37
40
|
"release:rc:major": "npm version premajor --preid rc && git push --tags && npm publish --tag rc",
|
|
38
41
|
"release:rc:minor": "npm version preminor --preid rc && git push --tags && npm publish --tag rc",
|
|
39
42
|
"release:rc:patch": "npm version prepatch --preid rc && git push --tags && npm publish --tag rc",
|
|
@@ -49,15 +52,18 @@
|
|
|
49
52
|
"devDependencies": {
|
|
50
53
|
"@biomejs/biome": "^1.9.4",
|
|
51
54
|
"@eslint/js": "^9.22.0",
|
|
55
|
+
"@jest/globals": "^29.7.0",
|
|
52
56
|
"@types/collections": "^5.1.5",
|
|
53
57
|
"@types/node": "^22.13.10",
|
|
54
58
|
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
55
59
|
"@typescript-eslint/parser": "^8.26.1",
|
|
56
60
|
"dotenv": "^16.4.7",
|
|
57
61
|
"esbuild": "^0.23.1",
|
|
62
|
+
"esbuild-jest": "^0.5.0",
|
|
58
63
|
"esbuild-register": "^3.6.0",
|
|
59
64
|
"eslint": "^9.22.0",
|
|
60
65
|
"globals": "^15.15.0",
|
|
66
|
+
"jest": "^29.7.0",
|
|
61
67
|
"ts-loader": "^9.5.2",
|
|
62
68
|
"ts-node": "^10.9.2",
|
|
63
69
|
"tsx": "^4.19.3",
|
|
@@ -66,8 +72,8 @@
|
|
|
66
72
|
},
|
|
67
73
|
"dependencies": {
|
|
68
74
|
"@noble/ed25519": "^2.2.3",
|
|
69
|
-
"@sovereign-sdk/signers": "^0.0.
|
|
70
|
-
"@sovereign-sdk/web3": "0.
|
|
75
|
+
"@sovereign-sdk/signers": "^0.0.4",
|
|
76
|
+
"@sovereign-sdk/web3": "0.4.0",
|
|
71
77
|
"bs58": "^6.0.0",
|
|
72
78
|
"collections": "^5.1.13",
|
|
73
79
|
"decimal.js": "^10.5.0",
|