@kaleidorg/wallet-engine 1.0.0-beta.32 → 1.0.0-beta.33
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.
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Arkade-only native adapter entry.
|
|
3
|
+
*
|
|
4
|
+
* Opt-in sub-path export: `@kaleidorg/wallet-engine/adapters/arkade`. Unlike
|
|
5
|
+
* `adapters/native` (which statically pulls Spark + RGB + kaleido SDKs), this
|
|
6
|
+
* entry pulls ONLY `@arkade-os/sdk` (+ optional `@arkade-os/boltz-swap`), so a
|
|
7
|
+
* host that just wants Arkade doesn't bundle the other protocols' SDKs.
|
|
8
|
+
*
|
|
9
|
+
* The platform-agnostic VTXO lifecycle + delegator helpers + settings live in
|
|
10
|
+
* the SDK-free root barrel (`@kaleidorg/wallet-engine`).
|
|
11
|
+
*/
|
|
12
|
+
export { ArkadeAdapter } from './ArkadeAdapter.js';
|
|
13
|
+
export { arkadeClientManager, type ArkadePlatformProviders } from '../lib/arkade-client-manager.js';
|
|
14
|
+
export { arkadeSwapsClientManager, type ArkadeSwapsInitOptions, } from '../lib/arkade-swaps-client-manager.js';
|
|
15
|
+
//# sourceMappingURL=arkade.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arkade.d.ts","sourceRoot":"","sources":["../../src/adapters/arkade.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,mBAAmB,EAAE,KAAK,uBAAuB,EAAE,MAAM,8BAA8B,CAAA;AAChG,OAAO,EACL,wBAAwB,EACxB,KAAK,sBAAsB,GAC5B,MAAM,oCAAoC,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Arkade-only native adapter entry.
|
|
3
|
+
*
|
|
4
|
+
* Opt-in sub-path export: `@kaleidorg/wallet-engine/adapters/arkade`. Unlike
|
|
5
|
+
* `adapters/native` (which statically pulls Spark + RGB + kaleido SDKs), this
|
|
6
|
+
* entry pulls ONLY `@arkade-os/sdk` (+ optional `@arkade-os/boltz-swap`), so a
|
|
7
|
+
* host that just wants Arkade doesn't bundle the other protocols' SDKs.
|
|
8
|
+
*
|
|
9
|
+
* The platform-agnostic VTXO lifecycle + delegator helpers + settings live in
|
|
10
|
+
* the SDK-free root barrel (`@kaleidorg/wallet-engine`).
|
|
11
|
+
*/
|
|
12
|
+
export { ArkadeAdapter } from './ArkadeAdapter.js';
|
|
13
|
+
export { arkadeClientManager } from '../lib/arkade-client-manager.js';
|
|
14
|
+
export { arkadeSwapsClientManager, } from '../lib/arkade-swaps-client-manager.js';
|
|
15
|
+
//# sourceMappingURL=arkade.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arkade.js","sourceRoot":"","sources":["../../src/adapters/arkade.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,mBAAmB,EAAgC,MAAM,8BAA8B,CAAA;AAChG,OAAO,EACL,wBAAwB,GAEzB,MAAM,oCAAoC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaleidorg/wallet-engine",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.33",
|
|
4
4
|
"description": "WDK-based multi-protocol wallet engine (Spark, RGB/RLN, Liquid, Arkade): IProtocolAdapter contract + WDK adapters, cross-protocol router, BIP321 unified receive, and lite/advanced disclosure.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
"types": "./dist/adapters/native.d.ts",
|
|
15
15
|
"default": "./dist/adapters/native.js"
|
|
16
16
|
},
|
|
17
|
+
"./adapters/arkade": {
|
|
18
|
+
"types": "./dist/adapters/arkade.d.ts",
|
|
19
|
+
"default": "./dist/adapters/arkade.js"
|
|
20
|
+
},
|
|
17
21
|
"./adapters/wdk": {
|
|
18
22
|
"types": "./dist/adapters/wdk/index.d.ts",
|
|
19
23
|
"default": "./dist/adapters/wdk/index.js"
|