@portal-hq/connect 2.0.9 → 2.0.10
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/lib/commonjs/index.js +1 -1
- package/lib/esm/index.js +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/lib/commonjs/index.js
CHANGED
|
@@ -14,7 +14,7 @@ const provider_1 = require("@portal-hq/provider");
|
|
|
14
14
|
class PortalConnect {
|
|
15
15
|
constructor({ apiKey, chainId, keychain, gatewayConfig,
|
|
16
16
|
// Optional
|
|
17
|
-
isSimulator = false, autoApprove = false, version = '
|
|
17
|
+
isSimulator = false, autoApprove = false, version = 'v5', apiHost = 'api.portalhq.io', mpcHost = 'mpc.portalhq.io', webSocketServer = 'connect.portalhq.io', }) {
|
|
18
18
|
this.connectionState = ConnectionStates.DISCONNECTED;
|
|
19
19
|
this.handleSigningRejected = (data) => {
|
|
20
20
|
var _a;
|
package/lib/esm/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import { Provider } from '@portal-hq/provider';
|
|
|
11
11
|
class PortalConnect {
|
|
12
12
|
constructor({ apiKey, chainId, keychain, gatewayConfig,
|
|
13
13
|
// Optional
|
|
14
|
-
isSimulator = false, autoApprove = false, version = '
|
|
14
|
+
isSimulator = false, autoApprove = false, version = 'v5', apiHost = 'api.portalhq.io', mpcHost = 'mpc.portalhq.io', webSocketServer = 'connect.portalhq.io', }) {
|
|
15
15
|
this.connectionState = ConnectionStates.DISCONNECTED;
|
|
16
16
|
this.handleSigningRejected = (data) => {
|
|
17
17
|
var _a;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@portal-hq/connect",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.10",
|
|
4
4
|
"main": "lib/commonjs/index",
|
|
5
5
|
"module": "lib/esm/index",
|
|
6
6
|
"source": "src/index",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"react": "*",
|
|
33
33
|
"react-native": "*"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "9614b8afc13c4cb0a7a6dba7df276de6a690bba9"
|
|
36
36
|
}
|