@neutral-trade/sdk 1.0.7 → 1.0.8
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 +2 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -44,6 +44,8 @@ Low-level generated bindings are also available from the `./generated` subpath.
|
|
|
44
44
|
|
|
45
45
|
- `src/registry/**`, `src/constants/**`, `src/types/**` — the vault registry. **PRs welcome** (new vault listings land here).
|
|
46
46
|
- `src/generated/**`, `src/extensions/**`, `test/client/**` — **bot-owned**: replaced wholesale by automated client drops from the (private) program monorepo, verified by `client-drop.manifest` + CI. Don't edit by hand — changes there belong upstream.
|
|
47
|
+
- `packages/widget-sdk/**` - embeddable host SDK with Wallet Standard signing, strict transaction verification, vanilla mounting, and a React entry point.
|
|
48
|
+
- `examples/widget-vanilla/**`, `examples/widget-react/**` - devnet widget integrations using Wallet Standard discovery.
|
|
47
49
|
|
|
48
50
|
## License
|
|
49
51
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neutral-trade/sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.8",
|
|
5
5
|
"description": "Neutral Trade vault registry and Codama-generated ntbundle client for @solana/kit",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/neutral-trade/sdk#readme",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"build": "tsdown",
|
|
80
80
|
"dev": "tsdown --watch",
|
|
81
81
|
"lint": "eslint",
|
|
82
|
-
"release": "bumpp",
|
|
82
|
+
"release": "bumpp package.json packages/widget-sdk/package.json",
|
|
83
83
|
"start": "tsx src/index.ts",
|
|
84
84
|
"test": "vitest",
|
|
85
85
|
"typecheck": "tsc",
|