@tatumio/wallet-sdk 0.3.0 → 0.3.1

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.
Files changed (2) hide show
  1. package/README.md +1 -15
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -166,13 +166,7 @@ const recovered = await client.recoverWallet({
166
166
  ### RPC URL
167
167
 
168
168
  Enclave operations that touch a chain (`sign`, `sendAssets`) **require an explicit `rpcUrl`** in
169
- the body — the SDK no longer injects one. Pass any node:
170
-
171
- - **Your own node**, or any provider (Infura, Alchemy, self-hosted).
172
- - **A Tatum gateway** — `https://<network>.gateway.tatum.io` (the `<network>` slug is each chain's
173
- `tatumNetwork`; see `WALLET_CHAINS`). For production, authenticate it with your key via the
174
- `x-api-key` header — **never** put the key in the URL path (it leaks through logs/referrers).
175
- The keyless anonymous gateway works but is rate-limited to a few requests/min — fine for dev only.
169
+ the body
176
170
 
177
171
  Authentication note: custodian-scoped calls use your Tatum `x-api-key`. Client-scoped calls
178
172
  (`initClient`) use the client token and need **no** Tatum key.
@@ -185,11 +179,3 @@ npm test
185
179
  npm run typecheck
186
180
  npm run build
187
181
  ```
188
-
189
- ## Publishing
190
-
191
- The package is configured for public npm publishing under the scoped package name:
192
-
193
- ```sh
194
- npm publish --access public
195
- ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tatumio/wallet-sdk",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "TypeScript SDK for Tatum-hosted MPC wallets — wallet generation, signing, sending, backup/recovery, and custodian/client management.",
5
5
  "license": "MIT",
6
6
  "author": "Tatum",