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 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 };