@injectivelabs/wallet-base 1.15.20 → 1.15.21
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.
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { WalletErrorActionModule } from '@injectivelabs/exceptions';
|
|
2
|
+
export declare enum BroadcastMode {
|
|
3
|
+
/** Return after tx commit */
|
|
4
|
+
Block = "block",
|
|
5
|
+
/** Return after CheckTx */
|
|
6
|
+
Sync = "sync",
|
|
7
|
+
/** Return right away */
|
|
8
|
+
Async = "async"
|
|
9
|
+
}
|
|
2
10
|
export declare enum Wallet {
|
|
3
11
|
Leap = "leap",
|
|
4
12
|
Keplr = "keplr",
|
package/dist/cjs/types/enums.js
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WalletAction = exports.WalletEventListener = exports.WalletDeviceType = exports.MagicProvider = exports.Wallet = void 0;
|
|
3
|
+
exports.WalletAction = exports.WalletEventListener = exports.WalletDeviceType = exports.MagicProvider = exports.Wallet = exports.BroadcastMode = void 0;
|
|
4
4
|
const exceptions_1 = require("@injectivelabs/exceptions");
|
|
5
|
+
var BroadcastMode;
|
|
6
|
+
(function (BroadcastMode) {
|
|
7
|
+
/** Return after tx commit */
|
|
8
|
+
BroadcastMode["Block"] = "block";
|
|
9
|
+
/** Return after CheckTx */
|
|
10
|
+
BroadcastMode["Sync"] = "sync";
|
|
11
|
+
/** Return right away */
|
|
12
|
+
BroadcastMode["Async"] = "async";
|
|
13
|
+
})(BroadcastMode || (exports.BroadcastMode = BroadcastMode = {}));
|
|
5
14
|
var Wallet;
|
|
6
15
|
(function (Wallet) {
|
|
7
16
|
Wallet["Leap"] = "leap";
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { WalletErrorActionModule } from '@injectivelabs/exceptions';
|
|
2
|
+
export declare enum BroadcastMode {
|
|
3
|
+
/** Return after tx commit */
|
|
4
|
+
Block = "block",
|
|
5
|
+
/** Return after CheckTx */
|
|
6
|
+
Sync = "sync",
|
|
7
|
+
/** Return right away */
|
|
8
|
+
Async = "async"
|
|
9
|
+
}
|
|
2
10
|
export declare enum Wallet {
|
|
3
11
|
Leap = "leap",
|
|
4
12
|
Keplr = "keplr",
|
package/dist/esm/types/enums.js
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import { WalletErrorActionModule } from '@injectivelabs/exceptions';
|
|
2
|
+
export var BroadcastMode;
|
|
3
|
+
(function (BroadcastMode) {
|
|
4
|
+
/** Return after tx commit */
|
|
5
|
+
BroadcastMode["Block"] = "block";
|
|
6
|
+
/** Return after CheckTx */
|
|
7
|
+
BroadcastMode["Sync"] = "sync";
|
|
8
|
+
/** Return right away */
|
|
9
|
+
BroadcastMode["Async"] = "async";
|
|
10
|
+
})(BroadcastMode || (BroadcastMode = {}));
|
|
2
11
|
export var Wallet;
|
|
3
12
|
(function (Wallet) {
|
|
4
13
|
Wallet["Leap"] = "leap";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@injectivelabs/wallet-base",
|
|
3
3
|
"description": "Base wallet strategy for use with @injectivelabs/wallet-core.",
|
|
4
|
-
"version": "1.15.
|
|
4
|
+
"version": "1.15.21",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": {
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"start": "node dist/index.js"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@injectivelabs/exceptions": "^1.15.
|
|
60
|
-
"@injectivelabs/networks": "^1.15.
|
|
61
|
-
"@injectivelabs/sdk-ts": "^1.15.
|
|
62
|
-
"@injectivelabs/ts-types": "^1.15.
|
|
59
|
+
"@injectivelabs/exceptions": "^1.15.18",
|
|
60
|
+
"@injectivelabs/networks": "^1.15.19",
|
|
61
|
+
"@injectivelabs/sdk-ts": "^1.15.21",
|
|
62
|
+
"@injectivelabs/ts-types": "^1.15.19",
|
|
63
63
|
"eip1193-provider": "^1.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"shx": "^0.3.3"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "2c15bac69ae75a5e7036cc64469a720452b414ac"
|
|
69
69
|
}
|