@sodax/wallet-sdk-core 1.5.7-beta → 2.0.0-rc.2
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 +231 -1
- package/ai-exported/AGENTS.md +139 -0
- package/ai-exported/integration/README.md +108 -0
- package/ai-exported/integration/ai-rules.md +141 -0
- package/ai-exported/integration/architecture.md +212 -0
- package/ai-exported/integration/features/README.md +22 -0
- package/ai-exported/integration/features/bitcoin.md +103 -0
- package/ai-exported/integration/features/evm.md +102 -0
- package/ai-exported/integration/features/icon.md +88 -0
- package/ai-exported/integration/features/injective.md +92 -0
- package/ai-exported/integration/features/near.md +92 -0
- package/ai-exported/integration/features/solana.md +104 -0
- package/ai-exported/integration/features/stacks.md +91 -0
- package/ai-exported/integration/features/stellar.md +95 -0
- package/ai-exported/integration/features/sui.md +96 -0
- package/ai-exported/integration/quickstart.md +259 -0
- package/ai-exported/integration/recipes/README.md +15 -0
- package/ai-exported/integration/recipes/bridge-to-sdk.md +145 -0
- package/ai-exported/integration/recipes/defaults-and-overrides.md +159 -0
- package/ai-exported/integration/recipes/library-exports.md +129 -0
- package/ai-exported/integration/recipes/setup-browser-extension.md +137 -0
- package/ai-exported/integration/recipes/setup-private-key.md +115 -0
- package/ai-exported/integration/recipes/sign-and-broadcast.md +201 -0
- package/ai-exported/integration/recipes/testing.md +163 -0
- package/ai-exported/integration/reference/README.md +13 -0
- package/ai-exported/integration/reference/chain-support.md +65 -0
- package/ai-exported/integration/reference/glossary.md +28 -0
- package/ai-exported/integration/reference/interfaces.md +131 -0
- package/ai-exported/integration/reference/provider-classes.md +54 -0
- package/ai-exported/integration/reference/public-api.md +128 -0
- package/ai-exported/migration/README.md +84 -0
- package/ai-exported/migration/ai-rules.md +139 -0
- package/ai-exported/migration/breaking-changes/README.md +14 -0
- package/ai-exported/migration/breaking-changes/base-wallet-provider.md +52 -0
- package/ai-exported/migration/breaking-changes/defaults-config.md +57 -0
- package/ai-exported/migration/breaking-changes/folder-layout.md +99 -0
- package/ai-exported/migration/breaking-changes/library-exports.md +58 -0
- package/ai-exported/migration/checklist.md +62 -0
- package/ai-exported/migration/recipes/README.md +12 -0
- package/ai-exported/migration/recipes/adopt-defaults.md +84 -0
- package/ai-exported/migration/recipes/adopt-library-exports.md +99 -0
- package/ai-exported/migration/reference/README.md +12 -0
- package/ai-exported/migration/reference/added-fields.md +71 -0
- package/ai-exported/migration/reference/deleted-exports.md +35 -0
- package/ai-exported/migration/reference/renamed-symbols.md +31 -0
- package/ai-exported/migration/reference/return-shapes.md +23 -0
- package/dist/index.cjs +3200 -2392
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +415 -128
- package/dist/index.d.ts +415 -128
- package/dist/index.mjs +3197 -2395
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -8
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "
|
|
7
|
+
"version": "2.0.0-rc.2",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"description": "Sodax Wallet SDK Core",
|
|
10
10
|
"keywords": [
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"frontend",
|
|
15
15
|
"interface"
|
|
16
16
|
],
|
|
17
|
-
"homepage": "https://github.com/icon-project/sodax-
|
|
17
|
+
"homepage": "https://github.com/icon-project/sodax-sdks/tree/main/packages/wallet-sdk-core",
|
|
18
18
|
"bugs": {
|
|
19
|
-
"url": "https://github.com/icon-project/sodax-
|
|
19
|
+
"url": "https://github.com/icon-project/sodax-sdks/issues"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/icon-project/sodax-
|
|
23
|
+
"url": "https://github.com/icon-project/sodax-sdks"
|
|
24
24
|
},
|
|
25
25
|
"type": "module",
|
|
26
26
|
"main": "./dist/index.cjs",
|
|
@@ -34,10 +34,11 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
|
-
"node": ">=
|
|
37
|
+
"node": ">=20.0.0"
|
|
38
38
|
},
|
|
39
39
|
"files": [
|
|
40
|
-
"dist"
|
|
40
|
+
"dist",
|
|
41
|
+
"ai-exported"
|
|
41
42
|
],
|
|
42
43
|
"dependencies": {
|
|
43
44
|
"@bitcoinerlab/secp256k1": "^1.2.0",
|
|
@@ -51,7 +52,7 @@
|
|
|
51
52
|
"@solana/spl-token": "0.4.9",
|
|
52
53
|
"@solana/wallet-adapter-base": "0.9.26",
|
|
53
54
|
"@solana/web3.js": "1.98.0",
|
|
54
|
-
"@stellar/stellar-sdk": "
|
|
55
|
+
"@stellar/stellar-sdk": "15.1.0",
|
|
55
56
|
"@stacks/connect": "8.2.6",
|
|
56
57
|
"@stacks/transactions": "7.3.1",
|
|
57
58
|
"@stacks/network": "7.3.1",
|
|
@@ -62,7 +63,7 @@
|
|
|
62
63
|
"near-api-js": "7.2.0",
|
|
63
64
|
"secp256k1": "^5.0.1",
|
|
64
65
|
"viem": "2.29.2",
|
|
65
|
-
"@sodax/types": "
|
|
66
|
+
"@sodax/types": "2.0.0-rc.2"
|
|
66
67
|
},
|
|
67
68
|
"devDependencies": {
|
|
68
69
|
"@arethetypeswrong/cli": "0.17.4",
|
|
@@ -85,6 +86,7 @@
|
|
|
85
86
|
"pretty": "biome format . --write",
|
|
86
87
|
"lint": "biome lint . --write",
|
|
87
88
|
"check-exports": "attw $(pnpm pack) --ignore-rules=cjs-resolves-to-esm",
|
|
89
|
+
"check-ai-exported": "bash scripts/check-ai-exported.sh",
|
|
88
90
|
"local-release": "changeset version && changeset publish",
|
|
89
91
|
"clean": "rm -rf node_modules && rm -rf dist && rm -rf .turbo"
|
|
90
92
|
}
|