@openocean.finance/wallet 1.5.43 → 1.5.44
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/Wallets/GnosisSafeWallet.js +1 -1
- package/lib/types.js +4 -4
- package/package.json +1 -1
|
@@ -89,7 +89,7 @@ var GnosisSafeWallet = /** @class */ (function (_super) {
|
|
|
89
89
|
case 0:
|
|
90
90
|
opts = {
|
|
91
91
|
// allowedDomains: [/gnosis-safe.io/],
|
|
92
|
-
allowedDomains: [/gnosis-safe.io$/, /app.safe.global$/, /wallet-test.secux.io$/, /wallet.secuxtech.com$/],
|
|
92
|
+
allowedDomains: [/gnosis-safe.io$/, /app.safe.global$/, /wallet-test.secux.io$/, /wallet.secuxtech.com$/, /wallet.ambire.com$/],
|
|
93
93
|
debug: false
|
|
94
94
|
};
|
|
95
95
|
sdk = new safe_apps_sdk_1.default(opts);
|
package/lib/types.js
CHANGED
|
@@ -52,14 +52,14 @@ var EnumChains;
|
|
|
52
52
|
EnumChains["OpBNB"] = "opbnb";
|
|
53
53
|
EnumChains["Mantle"] = "mantle";
|
|
54
54
|
EnumChains["Manta"] = "manta";
|
|
55
|
-
})(EnumChains
|
|
55
|
+
})(EnumChains || (exports.EnumChains = EnumChains = {}));
|
|
56
56
|
var EnumWalletType;
|
|
57
57
|
(function (EnumWalletType) {
|
|
58
58
|
EnumWalletType["Extension"] = "Extension";
|
|
59
59
|
EnumWalletType["WalletConnect"] = "WalletConnect";
|
|
60
60
|
EnumWalletType["Web"] = "Web";
|
|
61
61
|
EnumWalletType["Mobile"] = "Mobile";
|
|
62
|
-
})(EnumWalletType
|
|
62
|
+
})(EnumWalletType || (exports.EnumWalletType = EnumWalletType = {}));
|
|
63
63
|
var EnumWalletName;
|
|
64
64
|
(function (EnumWalletName) {
|
|
65
65
|
EnumWalletName["NearWallet"] = "NearWallet";
|
|
@@ -107,7 +107,7 @@ var EnumWalletName;
|
|
|
107
107
|
EnumWalletName["ArgentX"] = "Argent X";
|
|
108
108
|
EnumWalletName["Braavos"] = "Braavos";
|
|
109
109
|
EnumWalletName["Krystal"] = "Krystal";
|
|
110
|
-
})(EnumWalletName
|
|
110
|
+
})(EnumWalletName || (exports.EnumWalletName = EnumWalletName = {}));
|
|
111
111
|
var EnumErrors;
|
|
112
112
|
(function (EnumErrors) {
|
|
113
113
|
EnumErrors["NotMetamask"] = "40001";
|
|
@@ -151,4 +151,4 @@ var EnumErrors;
|
|
|
151
151
|
EnumErrors["NoRabbyWallet"] = "40041";
|
|
152
152
|
EnumErrors["NoArgentX"] = "40042";
|
|
153
153
|
EnumErrors["NoBraavos"] = "40043";
|
|
154
|
-
})(EnumErrors
|
|
154
|
+
})(EnumErrors || (exports.EnumErrors = EnumErrors = {}));
|