n3-sdk 0.1.11 → 0.1.13
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/dist/client.d.ts +4 -1
- package/dist/client.js +3277 -59
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3277 -76
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
- package/dist/chunk-7XKOPXQE.js +0 -3315
- package/dist/chunk-7XKOPXQE.js.map +0 -1
package/dist/client.d.ts
CHANGED
|
@@ -128,6 +128,8 @@ declare function buildWithdrawIntent(args: {
|
|
|
128
128
|
relayer: bigint;
|
|
129
129
|
}>;
|
|
130
130
|
|
|
131
|
+
declare function initN3Crypto(): Promise<void>;
|
|
132
|
+
declare const n3Ready: Promise<void>;
|
|
131
133
|
declare class N3ClientSDK {
|
|
132
134
|
readonly env: N3Env;
|
|
133
135
|
readonly info: {
|
|
@@ -146,5 +148,6 @@ declare class N3ClientSDK {
|
|
|
146
148
|
};
|
|
147
149
|
constructor(env: N3Env);
|
|
148
150
|
}
|
|
151
|
+
declare function createN3Client(env: N3Env): N3ClientSDK;
|
|
149
152
|
|
|
150
|
-
export { N3ClientSDK, N3Env, NoteStore, NoteStore as NoteStoreT, buildOrderIntent, buildOrderIntentFromStore, buildWithdrawIntent, N3ClientSDK as default, fetchPinFromIndexer, getDomainEnvClient };
|
|
153
|
+
export { N3ClientSDK, N3Env, NoteStore, NoteStore as NoteStoreT, buildOrderIntent, buildOrderIntentFromStore, buildWithdrawIntent, createN3Client, N3ClientSDK as default, fetchPinFromIndexer, getDomainEnvClient, initN3Crypto, n3Ready };
|