@sip-protocol/sdk 0.2.7 → 0.2.9
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 +349 -0
- package/dist/browser.d.mts +1 -1
- package/dist/browser.d.ts +1 -1
- package/dist/browser.js +614 -159
- package/dist/browser.mjs +5 -1
- package/dist/chunk-KXN6IWL5.mjs +10736 -0
- package/dist/chunk-UPTISVCY.mjs +10304 -0
- package/dist/index.d.mts +289 -1
- package/dist/index.d.ts +289 -1
- package/dist/index.js +614 -159
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
- package/src/adapters/near-intents.ts +31 -5
- package/src/index.ts +12 -0
- package/src/zcash/bridge.ts +738 -0
- package/src/zcash/index.ts +36 -1
- package/src/zcash/swap-service.ts +793 -0
package/dist/browser.mjs
CHANGED
|
@@ -47,6 +47,7 @@ import {
|
|
|
47
47
|
ZcashRPCClient,
|
|
48
48
|
ZcashRPCError,
|
|
49
49
|
ZcashShieldedService,
|
|
50
|
+
ZcashSwapService,
|
|
50
51
|
addBlindings,
|
|
51
52
|
addCommitments,
|
|
52
53
|
addOracle,
|
|
@@ -80,6 +81,7 @@ import {
|
|
|
80
81
|
createWalletFactory,
|
|
81
82
|
createZcashClient,
|
|
82
83
|
createZcashShieldedService,
|
|
84
|
+
createZcashSwapService,
|
|
83
85
|
decodeStealthMetaAddress,
|
|
84
86
|
decryptMemo,
|
|
85
87
|
decryptWithViewing,
|
|
@@ -197,7 +199,7 @@ import {
|
|
|
197
199
|
walletRegistry,
|
|
198
200
|
withSecureBuffer,
|
|
199
201
|
withSecureBufferSync
|
|
200
|
-
} from "./chunk-
|
|
202
|
+
} from "./chunk-KXN6IWL5.mjs";
|
|
201
203
|
import {
|
|
202
204
|
fulfillment_proof_default,
|
|
203
205
|
funding_proof_default,
|
|
@@ -882,6 +884,7 @@ export {
|
|
|
882
884
|
ZcashRPCClient,
|
|
883
885
|
ZcashRPCError,
|
|
884
886
|
ZcashShieldedService,
|
|
887
|
+
ZcashSwapService,
|
|
885
888
|
addBlindings,
|
|
886
889
|
addCommitments,
|
|
887
890
|
addOracle,
|
|
@@ -916,6 +919,7 @@ export {
|
|
|
916
919
|
createWalletFactory,
|
|
917
920
|
createZcashClient,
|
|
918
921
|
createZcashShieldedService,
|
|
922
|
+
createZcashSwapService,
|
|
919
923
|
decodeStealthMetaAddress,
|
|
920
924
|
decryptMemo,
|
|
921
925
|
decryptWithViewing,
|