You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/index.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ interface LncConstructor {
70
70
/** remote public key; part of the second handshake authentication process. Only need to specify this if you handle storage of auth data yourself and set `onRemoteKeyReceive`. */
71
71
remoteKey?: string;
72
72
/** Custom location for the WASM client code. Can be remote or local. If not specified we’ll default to our instance on our CDN. */
73
-
wasmClientCode: any;// URL or WASM client object
73
+
wasmClientCode?: any;// URL or WASM client object
74
74
/** JavaScript namespace used for the main WASM calls. You can maintain multiple connections if you use different namespaces. If not specified we'll default to `default`. */
75
75
namespace?: string;
76
76
/** By default, this module will handle storage of your local and remote keys for you in local storage. We highly recommend encrypting that data with a password you set here. */
0 commit comments