vaults-multichain-sdk 1.1.0
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 +27 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +1955 -0
- package/dist/index.d.ts +1955 -0
- package/dist/index.js +2 -0
- package/package.json +70 -0
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# vaults-multichain-sdk
|
|
2
|
+
|
|
3
|
+
TypeScript SDK for multi-chain wallet and multisig operations. Supports EVM (Ethereum, Polygon, Base, Arbitrum, Optimism, BNB, Avalanche), Solana, Tron, Bitcoin, Cardano (ADA), and XRP Ledger.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install vaults-multichain-sdk
|
|
9
|
+
# or
|
|
10
|
+
yarn add vaults-multichain-sdk
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
> **Browser note**: add `buffer` as a dependency and shim it before importing the SDK.
|
|
14
|
+
|
|
15
|
+
## Build
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
yarn build
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Outputs to `dist/`:
|
|
22
|
+
|
|
23
|
+
- `dist/index.js` — ESM
|
|
24
|
+
- `dist/index.cjs` — CommonJS
|
|
25
|
+
- `dist/index.d.ts` — Type declarations
|
|
26
|
+
|
|
27
|
+
> Cardano WASM (`@emurgo/cardano-serialization-lib-browser`) is excluded from the bundle and loaded dynamically at runtime.
|