@portal-hq/web 3.3.2 → 3.3.4-0
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 +4 -2
- 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.3.
|
|
15
|
+
const WEB_SDK_VERSION = '3.3.4-0';
|
|
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.3.
|
|
12
|
+
const WEB_SDK_VERSION = '3.3.4-0';
|
|
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.3.
|
|
6
|
+
"version": "3.3.4-0",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "lib/commonjs/index",
|
|
9
9
|
"module": "lib/esm/index",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"prepare:esm": "tsc --outDir lib/esm --module es2015 --target es2015",
|
|
26
26
|
"prerelease": "sh ./scripts/version.sh",
|
|
27
27
|
"release": "npm publish --access public",
|
|
28
|
+
"release-alpha": "npm publish --access public --tag alpha",
|
|
28
29
|
"test": "jest",
|
|
29
30
|
"unversion": "sh ./scripts/unversion.sh"
|
|
30
31
|
},
|
|
@@ -48,5 +49,6 @@
|
|
|
48
49
|
},
|
|
49
50
|
"dependencies": {
|
|
50
51
|
"@solana/web3.js": "^1.91.8"
|
|
51
|
-
}
|
|
52
|
+
},
|
|
53
|
+
"stableVersion": "3.3.3"
|
|
52
54
|
}
|