@web3auth/no-modal 5.0.0 → 5.0.1

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.
@@ -39,6 +39,10 @@ export interface Web3AuthNoModalOptions {
39
39
  * @defaultValue mainnet
40
40
  */
41
41
  web3AuthNetwork?: OPENLOGIN_NETWORK_TYPE;
42
+ /**
43
+ * Uses core-kit key with web3auth provider
44
+ * @defaultValue false
45
+ */
42
46
  useCoreKitKey?: boolean;
43
47
  }
44
48
  export declare class Web3AuthNoModal extends SafeEventEmitter implements IWeb3Auth {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@web3auth/no-modal",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "Multi chain wallet aggregator for web3Auth",
5
5
  "keywords": [
6
6
  "web3Auth/no-modal",
@@ -37,8 +37,8 @@
37
37
  "dependencies": {
38
38
  "@toruslabs/openlogin": "^3.2.1",
39
39
  "@toruslabs/openlogin-jrpc": "^3.2.0",
40
- "@web3auth/base": "^5.0.0",
41
- "@web3auth/base-plugin": "^5.0.0"
40
+ "@web3auth/base": "^5.0.1",
41
+ "@web3auth/base-plugin": "^5.0.1"
42
42
  },
43
43
  "lint-staged": {
44
44
  "!(*d).ts": [
@@ -56,5 +56,5 @@
56
56
  "bugs": {
57
57
  "url": "https://github.com/Web3Auth/Web3Auth/issues"
58
58
  },
59
- "gitHead": "8702657a42f44ff5ebc0a4be796e68a10f506dde"
59
+ "gitHead": "82f054192a0f892f5e749ad7bc3f5df5bf12b2d8"
60
60
  }
package/src/noModal.ts CHANGED
@@ -64,6 +64,10 @@ export interface Web3AuthNoModalOptions {
64
64
  */
65
65
  web3AuthNetwork?: OPENLOGIN_NETWORK_TYPE;
66
66
 
67
+ /**
68
+ * Uses core-kit key with web3auth provider
69
+ * @defaultValue false
70
+ */
67
71
  useCoreKitKey?: boolean;
68
72
  }
69
73