signet.js 0.0.12-beta.10 → 0.0.12-beta.12
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/README.md +26 -41
- package/browser/index.browser.cjs +2 -2
- package/browser/index.browser.cjs.map +1 -1
- package/browser/index.browser.js +2 -2
- package/browser/index.browser.js.map +1 -1
- package/node/index.node.cjs +2 -2
- package/node/index.node.cjs.map +1 -1
- package/node/index.node.js +2 -2
- package/node/index.node.js.map +1 -1
- package/package.json +5 -13
- package/types/index.d.cts +650 -234
- package/types/index.d.ts +650 -234
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signet.js",
|
|
3
|
-
"version": "0.0.12-beta.
|
|
3
|
+
"version": "0.0.12-beta.12",
|
|
4
4
|
"description": "A TypeScript library for handling multi-chain transactions and signatures using Signet MPC",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -27,6 +27,8 @@
|
|
|
27
27
|
"build:browser": "tsup --env.TARGET=browser",
|
|
28
28
|
"build:node": "tsup --env.TARGET=node",
|
|
29
29
|
"build:post": "mkdir -p dist/types && cp dist/node/index.d.ts dist/node/index.d.cts dist/types/ && rm dist/node/index.d.ts dist/node/index.d.cts",
|
|
30
|
+
"test:solana": "vitest run tests/integration/solana/Solana.integration.test.ts",
|
|
31
|
+
"test:solana:watch": "vitest --watch tests/integration/solana/Solana.integration.test.ts",
|
|
30
32
|
"pre:deploy": "npm run build && npm run docs:build",
|
|
31
33
|
"publish-npm": "npm run pre:deploy && cd dist && npm publish",
|
|
32
34
|
"publish-npm:beta": "npm run pre:deploy && cd dist && npm publish --tag beta",
|
|
@@ -51,8 +53,7 @@
|
|
|
51
53
|
"multi-chain",
|
|
52
54
|
"ethereum",
|
|
53
55
|
"bitcoin",
|
|
54
|
-
"cosmos"
|
|
55
|
-
"near"
|
|
56
|
+
"cosmos"
|
|
56
57
|
],
|
|
57
58
|
"devDependencies": {
|
|
58
59
|
"@aa-sdk/core": "^4.13.0",
|
|
@@ -89,25 +90,16 @@
|
|
|
89
90
|
"@cosmjs/math": "^0.32.4",
|
|
90
91
|
"@cosmjs/proto-signing": "^0.32.4",
|
|
91
92
|
"@cosmjs/stargate": "^0.32.4",
|
|
92
|
-
"@near-js/accounts": "^1.3.0",
|
|
93
|
-
"@near-js/crypto": "^1.4.0",
|
|
94
|
-
"@near-js/keystores": "^0.2.0",
|
|
95
|
-
"@near-js/transactions": "^1.3.1",
|
|
96
|
-
"@near-js/types": "^0.3.1",
|
|
97
|
-
"@near-wallet-selector/core": "^8.9.5",
|
|
98
93
|
"@scure/base": "^1.2.4",
|
|
99
94
|
"@solana/web3.js": "^1.98.0",
|
|
100
95
|
"bech32": "^2.0.0",
|
|
101
96
|
"bitcoinjs-lib": "^6.1.5",
|
|
102
97
|
"bn.js": "^5.2.1",
|
|
103
|
-
"bs58": "^6.0.0",
|
|
104
98
|
"chain-registry": "^1.69.72",
|
|
105
99
|
"coinselect": "^3.1.13",
|
|
106
100
|
"cosmjs-types": "^0.9.0",
|
|
107
101
|
"elliptic": "^6.6.1",
|
|
108
|
-
"js-sha3": "^0.9.3",
|
|
109
|
-
"near-api-js": "^5.0.1",
|
|
110
102
|
"viem": "^2.22.14"
|
|
111
103
|
},
|
|
112
|
-
"packageManager": "pnpm@10.
|
|
104
|
+
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a"
|
|
113
105
|
}
|