@portal-hq/web 3.5.0-alpha → 3.5.2
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/mpc/index.js +1 -1
- package/lib/esm/mpc/index.js +1 -1
- package/package.json +2 -3
- package/src/index.ts +17 -17
- package/src/integrations/yield/yieldxyz.ts +1 -1
- package/src/mpc/index.ts +1 -1
|
@@ -12,7 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.MpcErrorCodes = exports.MpcError = void 0;
|
|
13
13
|
const errors_1 = require("./errors");
|
|
14
14
|
const index_1 = require("../index");
|
|
15
|
-
const WEB_SDK_VERSION = '3.5.
|
|
15
|
+
const WEB_SDK_VERSION = '3.5.2';
|
|
16
16
|
class Mpc {
|
|
17
17
|
get ready() {
|
|
18
18
|
return this._ready;
|
package/lib/esm/mpc/index.js
CHANGED
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
};
|
|
10
10
|
import { PortalMpcError } from './errors';
|
|
11
11
|
import { BackupMethods, } from '../index';
|
|
12
|
-
const WEB_SDK_VERSION = '3.5.
|
|
12
|
+
const WEB_SDK_VERSION = '3.5.2';
|
|
13
13
|
class Mpc {
|
|
14
14
|
get ready() {
|
|
15
15
|
return this._ready;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Portal MPC Support for Web",
|
|
4
4
|
"author": "Portal Labs, Inc.",
|
|
5
5
|
"homepage": "https://portalhq.io/",
|
|
6
|
-
"version": "3.5.
|
|
6
|
+
"version": "3.5.2",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "lib/commonjs/index",
|
|
9
9
|
"module": "lib/esm/index",
|
|
@@ -49,6 +49,5 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@solana/web3.js": "^1.91.8"
|
|
52
|
-
}
|
|
53
|
-
"stableVersion": "3.4.1"
|
|
52
|
+
}
|
|
54
53
|
}
|
package/src/index.ts
CHANGED
|
@@ -1023,23 +1023,23 @@ class Portal {
|
|
|
1023
1023
|
}
|
|
1024
1024
|
|
|
1025
1025
|
export {
|
|
1026
|
-
YieldXyzEnterRequest,
|
|
1027
|
-
YieldXyzEnterYieldResponse,
|
|
1028
|
-
YieldXyzExitRequest,
|
|
1029
|
-
YieldXyzExitResponse,
|
|
1030
|
-
YieldXyzGetBalancesRequest,
|
|
1031
|
-
YieldXyzGetBalancesResponse,
|
|
1032
|
-
YieldXyzGetHistoricalActionsRequest,
|
|
1033
|
-
YieldXyzGetHistoricalActionsResponse,
|
|
1034
|
-
YieldXyzGetTransactionRequest,
|
|
1035
|
-
YieldXyzGetTransactionResponse,
|
|
1036
|
-
YieldXyzGetYieldsRequest,
|
|
1037
|
-
YieldXyzGetYieldsResponse,
|
|
1038
|
-
YieldXyzManageYieldRequest,
|
|
1039
|
-
YieldXyzManageYieldResponse,
|
|
1040
|
-
YieldXyzTrackTransactionRequest,
|
|
1041
|
-
YieldXyzTrackTransactionResponse,
|
|
1042
|
-
} from 'yieldxyz-types'
|
|
1026
|
+
type YieldXyzEnterRequest,
|
|
1027
|
+
type YieldXyzEnterYieldResponse,
|
|
1028
|
+
type YieldXyzExitRequest,
|
|
1029
|
+
type YieldXyzExitResponse,
|
|
1030
|
+
type YieldXyzGetBalancesRequest,
|
|
1031
|
+
type YieldXyzGetBalancesResponse,
|
|
1032
|
+
type YieldXyzGetHistoricalActionsRequest,
|
|
1033
|
+
type YieldXyzGetHistoricalActionsResponse,
|
|
1034
|
+
type YieldXyzGetTransactionRequest,
|
|
1035
|
+
type YieldXyzGetTransactionResponse,
|
|
1036
|
+
type YieldXyzGetYieldsRequest,
|
|
1037
|
+
type YieldXyzGetYieldsResponse,
|
|
1038
|
+
type YieldXyzManageYieldRequest,
|
|
1039
|
+
type YieldXyzManageYieldResponse,
|
|
1040
|
+
type YieldXyzTrackTransactionRequest,
|
|
1041
|
+
type YieldXyzTrackTransactionResponse,
|
|
1042
|
+
} from '../yieldxyz-types'
|
|
1043
1043
|
|
|
1044
1044
|
export { MpcError, MpcErrorCodes } from './mpc'
|
|
1045
1045
|
export {
|