@injectivelabs/exceptions 1.19.3 → 1.19.5
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/dist/cjs/index.cjs +32 -14
- package/dist/cjs/index.d.cts +12 -5
- package/dist/esm/index.d.ts +12 -5
- package/dist/esm/index.js +32 -15
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -2504,38 +2504,38 @@ var GeneralException = class GeneralException extends ConcreteException {
|
|
|
2504
2504
|
_defineProperty(GeneralException, "errorClass", "GeneralException");
|
|
2505
2505
|
|
|
2506
2506
|
//#endregion
|
|
2507
|
-
//#region src/exceptions/exceptions/
|
|
2508
|
-
const
|
|
2509
|
-
var
|
|
2507
|
+
//#region src/exceptions/exceptions/KeplrEvmException.ts
|
|
2508
|
+
const removeKeplrFromErrorString = (message) => message.replaceAll("Keplr:", "").replaceAll("Keplr", "");
|
|
2509
|
+
var KeplrEvmException = class KeplrEvmException extends ConcreteException {
|
|
2510
2510
|
constructor(error, context) {
|
|
2511
2511
|
super(error, context);
|
|
2512
2512
|
this.type = ErrorType.WalletError;
|
|
2513
2513
|
}
|
|
2514
2514
|
parse() {
|
|
2515
2515
|
const { message } = this;
|
|
2516
|
-
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using
|
|
2517
|
-
else this.setMessage(mapErrorMessage(
|
|
2518
|
-
this.setName(
|
|
2516
|
+
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using Keplr Wallet");
|
|
2517
|
+
else this.setMessage(mapErrorMessage(removeKeplrFromErrorString(message)));
|
|
2518
|
+
this.setName(KeplrEvmException.errorClass);
|
|
2519
2519
|
}
|
|
2520
2520
|
};
|
|
2521
|
-
_defineProperty(
|
|
2521
|
+
_defineProperty(KeplrEvmException, "errorClass", "KeplrEvmException");
|
|
2522
2522
|
|
|
2523
2523
|
//#endregion
|
|
2524
|
-
//#region src/exceptions/exceptions/
|
|
2525
|
-
const
|
|
2526
|
-
var
|
|
2524
|
+
//#region src/exceptions/exceptions/MetamaskException.ts
|
|
2525
|
+
const removeMetamaskFromErrorString$1 = (message) => message.replaceAll("Metamask", "").replaceAll("MetaMask", "").replaceAll("Metamask:", "");
|
|
2526
|
+
var MetamaskException = class MetamaskException extends ConcreteException {
|
|
2527
2527
|
constructor(error, context) {
|
|
2528
2528
|
super(error, context);
|
|
2529
2529
|
this.type = ErrorType.WalletError;
|
|
2530
2530
|
}
|
|
2531
2531
|
parse() {
|
|
2532
2532
|
const { message } = this;
|
|
2533
|
-
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using
|
|
2534
|
-
else this.setMessage(mapErrorMessage(
|
|
2535
|
-
this.setName(
|
|
2533
|
+
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using Metamask Wallet");
|
|
2534
|
+
else this.setMessage(mapErrorMessage(removeMetamaskFromErrorString$1(message)));
|
|
2535
|
+
this.setName(MetamaskException.errorClass);
|
|
2536
2536
|
}
|
|
2537
2537
|
};
|
|
2538
|
-
_defineProperty(
|
|
2538
|
+
_defineProperty(MetamaskException, "errorClass", "MetamaskException");
|
|
2539
2539
|
|
|
2540
2540
|
//#endregion
|
|
2541
2541
|
//#region src/exceptions/exceptions/OkxWalletException.ts
|
|
@@ -2570,6 +2570,23 @@ var HttpRequestException = class HttpRequestException extends ConcreteException
|
|
|
2570
2570
|
};
|
|
2571
2571
|
_defineProperty(HttpRequestException, "errorClass", "HttpRequestException");
|
|
2572
2572
|
|
|
2573
|
+
//#endregion
|
|
2574
|
+
//#region src/exceptions/exceptions/RabbyWalletException.ts
|
|
2575
|
+
const removeRabbyWalletFromErrorString = (message) => message.replaceAll("RabbyWallet", "").replaceAll("Rabby Wallet", "").replaceAll("Rabbywallet", "").replaceAll("RabbyWallet:", "").replaceAll("Rabby Wallet:", "");
|
|
2576
|
+
var RabbyWalletException = class RabbyWalletException extends ConcreteException {
|
|
2577
|
+
constructor(error, context) {
|
|
2578
|
+
super(error, context);
|
|
2579
|
+
this.type = ErrorType.WalletError;
|
|
2580
|
+
}
|
|
2581
|
+
parse() {
|
|
2582
|
+
const { message } = this;
|
|
2583
|
+
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using Rabby Wallet");
|
|
2584
|
+
else this.setMessage(mapErrorMessage(removeRabbyWalletFromErrorString(message)));
|
|
2585
|
+
this.setName(RabbyWalletException.errorClass);
|
|
2586
|
+
}
|
|
2587
|
+
};
|
|
2588
|
+
_defineProperty(RabbyWalletException, "errorClass", "RabbyWalletException");
|
|
2589
|
+
|
|
2573
2590
|
//#endregion
|
|
2574
2591
|
//#region src/exceptions/exceptions/TransactionException.ts
|
|
2575
2592
|
var TransactionException = class TransactionException extends ConcreteException {
|
|
@@ -2745,6 +2762,7 @@ exports.LedgerCosmosException = LedgerCosmosException;
|
|
|
2745
2762
|
exports.LedgerException = LedgerException;
|
|
2746
2763
|
exports.MetamaskException = MetamaskException;
|
|
2747
2764
|
exports.OkxWalletException = OkxWalletException;
|
|
2765
|
+
exports.RabbyWalletException = RabbyWalletException;
|
|
2748
2766
|
exports.RainbowWalletException = RainbowWalletException;
|
|
2749
2767
|
exports.THROWN_EXCEPTIONS = THROWN_EXCEPTIONS;
|
|
2750
2768
|
exports.TransactionChainErrorModule = TransactionChainErrorModule;
|
package/dist/cjs/index.d.cts
CHANGED
|
@@ -727,15 +727,15 @@ declare class GeneralException extends ConcreteException {
|
|
|
727
727
|
parse(): void;
|
|
728
728
|
}
|
|
729
729
|
//#endregion
|
|
730
|
-
//#region src/exceptions/exceptions/
|
|
731
|
-
declare class
|
|
730
|
+
//#region src/exceptions/exceptions/KeplrEvmException.d.ts
|
|
731
|
+
declare class KeplrEvmException extends ConcreteException {
|
|
732
732
|
static errorClass: string;
|
|
733
733
|
constructor(error: Error, context?: ErrorContext);
|
|
734
734
|
parse(): void;
|
|
735
735
|
}
|
|
736
736
|
//#endregion
|
|
737
|
-
//#region src/exceptions/exceptions/
|
|
738
|
-
declare class
|
|
737
|
+
//#region src/exceptions/exceptions/MetamaskException.d.ts
|
|
738
|
+
declare class MetamaskException extends ConcreteException {
|
|
739
739
|
static errorClass: string;
|
|
740
740
|
constructor(error: Error, context?: ErrorContext);
|
|
741
741
|
parse(): void;
|
|
@@ -758,6 +758,13 @@ declare class HttpRequestException extends ConcreteException {
|
|
|
758
758
|
parse(): void;
|
|
759
759
|
}
|
|
760
760
|
//#endregion
|
|
761
|
+
//#region src/exceptions/exceptions/RabbyWalletException.d.ts
|
|
762
|
+
declare class RabbyWalletException extends ConcreteException {
|
|
763
|
+
static errorClass: string;
|
|
764
|
+
constructor(error: Error, context?: ErrorContext);
|
|
765
|
+
parse(): void;
|
|
766
|
+
}
|
|
767
|
+
//#endregion
|
|
761
768
|
//#region src/exceptions/exceptions/TransactionException.d.ts
|
|
762
769
|
declare class TransactionException extends ConcreteException {
|
|
763
770
|
static errorClass: string;
|
|
@@ -824,4 +831,4 @@ declare const formatNotificationDescription: (description: string) => {
|
|
|
824
831
|
tooltip: string;
|
|
825
832
|
};
|
|
826
833
|
//#endregion
|
|
827
|
-
export { BitGetException, ChainAuctionErrorCodes, ChainAuthZErrorCodes, ChainBankErrorCodes, ChainCosmosErrorCode, ChainDistributionErrorCodes, ChainErrorModule, ChainExchangeModuleErrorCode, ChainGovErrorCodes, ChainInsuranceErrorCodes, ChainOcrErrorCodes, ChainOracleErrorCodes, ChainPeggyErrorCodes, ChainStakingErrorCodes, ChainTokenFactoryErrorCodes, ChainWasmErrorCodes, ChainWasmXErrorCodes, ContractErrorModule, CosmosWalletException, ErrorCode, ErrorContext, ErrorContextCode, ErrorType, Exception, GRPC_REQUEST_FAILED, GeneralException, GrpcErrorCode, GrpcUnaryRequestException, HttpRequestException, HttpRequestMethod, IndexerApiErrorCode, IndexerErrorModule, KeplrEvmException, LedgerCosmosException, LedgerException, MetamaskException, OkxWalletException, RainbowWalletException, THROWN_EXCEPTIONS, ThrownException, TransactionChainErrorModule, TransactionException, TrezorException, TrustWalletException, TurnkeyWalletSessionException, UnspecifiedErrorCode, WalletConnectException, WalletErrorActionModule, WalletException, Web3Exception, formatNotificationDescription, grpcErrorCodeToErrorCode, isThrownException };
|
|
834
|
+
export { BitGetException, ChainAuctionErrorCodes, ChainAuthZErrorCodes, ChainBankErrorCodes, ChainCosmosErrorCode, ChainDistributionErrorCodes, ChainErrorModule, ChainExchangeModuleErrorCode, ChainGovErrorCodes, ChainInsuranceErrorCodes, ChainOcrErrorCodes, ChainOracleErrorCodes, ChainPeggyErrorCodes, ChainStakingErrorCodes, ChainTokenFactoryErrorCodes, ChainWasmErrorCodes, ChainWasmXErrorCodes, ContractErrorModule, CosmosWalletException, ErrorCode, ErrorContext, ErrorContextCode, ErrorType, Exception, GRPC_REQUEST_FAILED, GeneralException, GrpcErrorCode, GrpcUnaryRequestException, HttpRequestException, HttpRequestMethod, IndexerApiErrorCode, IndexerErrorModule, KeplrEvmException, LedgerCosmosException, LedgerException, MetamaskException, OkxWalletException, RabbyWalletException, RainbowWalletException, THROWN_EXCEPTIONS, ThrownException, TransactionChainErrorModule, TransactionException, TrezorException, TrustWalletException, TurnkeyWalletSessionException, UnspecifiedErrorCode, WalletConnectException, WalletErrorActionModule, WalletException, Web3Exception, formatNotificationDescription, grpcErrorCodeToErrorCode, isThrownException };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -727,15 +727,15 @@ declare class GeneralException extends ConcreteException {
|
|
|
727
727
|
parse(): void;
|
|
728
728
|
}
|
|
729
729
|
//#endregion
|
|
730
|
-
//#region src/exceptions/exceptions/
|
|
731
|
-
declare class
|
|
730
|
+
//#region src/exceptions/exceptions/KeplrEvmException.d.ts
|
|
731
|
+
declare class KeplrEvmException extends ConcreteException {
|
|
732
732
|
static errorClass: string;
|
|
733
733
|
constructor(error: Error, context?: ErrorContext);
|
|
734
734
|
parse(): void;
|
|
735
735
|
}
|
|
736
736
|
//#endregion
|
|
737
|
-
//#region src/exceptions/exceptions/
|
|
738
|
-
declare class
|
|
737
|
+
//#region src/exceptions/exceptions/MetamaskException.d.ts
|
|
738
|
+
declare class MetamaskException extends ConcreteException {
|
|
739
739
|
static errorClass: string;
|
|
740
740
|
constructor(error: Error, context?: ErrorContext);
|
|
741
741
|
parse(): void;
|
|
@@ -758,6 +758,13 @@ declare class HttpRequestException extends ConcreteException {
|
|
|
758
758
|
parse(): void;
|
|
759
759
|
}
|
|
760
760
|
//#endregion
|
|
761
|
+
//#region src/exceptions/exceptions/RabbyWalletException.d.ts
|
|
762
|
+
declare class RabbyWalletException extends ConcreteException {
|
|
763
|
+
static errorClass: string;
|
|
764
|
+
constructor(error: Error, context?: ErrorContext);
|
|
765
|
+
parse(): void;
|
|
766
|
+
}
|
|
767
|
+
//#endregion
|
|
761
768
|
//#region src/exceptions/exceptions/TransactionException.d.ts
|
|
762
769
|
declare class TransactionException extends ConcreteException {
|
|
763
770
|
static errorClass: string;
|
|
@@ -824,4 +831,4 @@ declare const formatNotificationDescription: (description: string) => {
|
|
|
824
831
|
tooltip: string;
|
|
825
832
|
};
|
|
826
833
|
//#endregion
|
|
827
|
-
export { BitGetException, ChainAuctionErrorCodes, ChainAuthZErrorCodes, ChainBankErrorCodes, ChainCosmosErrorCode, ChainDistributionErrorCodes, ChainErrorModule, ChainExchangeModuleErrorCode, ChainGovErrorCodes, ChainInsuranceErrorCodes, ChainOcrErrorCodes, ChainOracleErrorCodes, ChainPeggyErrorCodes, ChainStakingErrorCodes, ChainTokenFactoryErrorCodes, ChainWasmErrorCodes, ChainWasmXErrorCodes, ContractErrorModule, CosmosWalletException, ErrorCode, ErrorContext, ErrorContextCode, ErrorType, Exception, GRPC_REQUEST_FAILED, GeneralException, GrpcErrorCode, GrpcUnaryRequestException, HttpRequestException, HttpRequestMethod, IndexerApiErrorCode, IndexerErrorModule, KeplrEvmException, LedgerCosmosException, LedgerException, MetamaskException, OkxWalletException, RainbowWalletException, THROWN_EXCEPTIONS, ThrownException, TransactionChainErrorModule, TransactionException, TrezorException, TrustWalletException, TurnkeyWalletSessionException, UnspecifiedErrorCode, WalletConnectException, WalletErrorActionModule, WalletException, Web3Exception, formatNotificationDescription, grpcErrorCodeToErrorCode, isThrownException };
|
|
834
|
+
export { BitGetException, ChainAuctionErrorCodes, ChainAuthZErrorCodes, ChainBankErrorCodes, ChainCosmosErrorCode, ChainDistributionErrorCodes, ChainErrorModule, ChainExchangeModuleErrorCode, ChainGovErrorCodes, ChainInsuranceErrorCodes, ChainOcrErrorCodes, ChainOracleErrorCodes, ChainPeggyErrorCodes, ChainStakingErrorCodes, ChainTokenFactoryErrorCodes, ChainWasmErrorCodes, ChainWasmXErrorCodes, ContractErrorModule, CosmosWalletException, ErrorCode, ErrorContext, ErrorContextCode, ErrorType, Exception, GRPC_REQUEST_FAILED, GeneralException, GrpcErrorCode, GrpcUnaryRequestException, HttpRequestException, HttpRequestMethod, IndexerApiErrorCode, IndexerErrorModule, KeplrEvmException, LedgerCosmosException, LedgerException, MetamaskException, OkxWalletException, RabbyWalletException, RainbowWalletException, THROWN_EXCEPTIONS, ThrownException, TransactionChainErrorModule, TransactionException, TrezorException, TrustWalletException, TurnkeyWalletSessionException, UnspecifiedErrorCode, WalletConnectException, WalletErrorActionModule, WalletException, Web3Exception, formatNotificationDescription, grpcErrorCodeToErrorCode, isThrownException };
|
package/dist/esm/index.js
CHANGED
|
@@ -2503,38 +2503,38 @@ var GeneralException = class GeneralException extends ConcreteException {
|
|
|
2503
2503
|
_defineProperty(GeneralException, "errorClass", "GeneralException");
|
|
2504
2504
|
|
|
2505
2505
|
//#endregion
|
|
2506
|
-
//#region src/exceptions/exceptions/
|
|
2507
|
-
const
|
|
2508
|
-
var
|
|
2506
|
+
//#region src/exceptions/exceptions/KeplrEvmException.ts
|
|
2507
|
+
const removeKeplrFromErrorString = (message) => message.replaceAll("Keplr:", "").replaceAll("Keplr", "");
|
|
2508
|
+
var KeplrEvmException = class KeplrEvmException extends ConcreteException {
|
|
2509
2509
|
constructor(error, context) {
|
|
2510
2510
|
super(error, context);
|
|
2511
2511
|
this.type = ErrorType.WalletError;
|
|
2512
2512
|
}
|
|
2513
2513
|
parse() {
|
|
2514
2514
|
const { message } = this;
|
|
2515
|
-
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using
|
|
2516
|
-
else this.setMessage(mapErrorMessage(
|
|
2517
|
-
this.setName(
|
|
2515
|
+
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using Keplr Wallet");
|
|
2516
|
+
else this.setMessage(mapErrorMessage(removeKeplrFromErrorString(message)));
|
|
2517
|
+
this.setName(KeplrEvmException.errorClass);
|
|
2518
2518
|
}
|
|
2519
2519
|
};
|
|
2520
|
-
_defineProperty(
|
|
2520
|
+
_defineProperty(KeplrEvmException, "errorClass", "KeplrEvmException");
|
|
2521
2521
|
|
|
2522
2522
|
//#endregion
|
|
2523
|
-
//#region src/exceptions/exceptions/
|
|
2524
|
-
const
|
|
2525
|
-
var
|
|
2523
|
+
//#region src/exceptions/exceptions/MetamaskException.ts
|
|
2524
|
+
const removeMetamaskFromErrorString$1 = (message) => message.replaceAll("Metamask", "").replaceAll("MetaMask", "").replaceAll("Metamask:", "");
|
|
2525
|
+
var MetamaskException = class MetamaskException extends ConcreteException {
|
|
2526
2526
|
constructor(error, context) {
|
|
2527
2527
|
super(error, context);
|
|
2528
2528
|
this.type = ErrorType.WalletError;
|
|
2529
2529
|
}
|
|
2530
2530
|
parse() {
|
|
2531
2531
|
const { message } = this;
|
|
2532
|
-
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using
|
|
2533
|
-
else this.setMessage(mapErrorMessage(
|
|
2534
|
-
this.setName(
|
|
2532
|
+
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using Metamask Wallet");
|
|
2533
|
+
else this.setMessage(mapErrorMessage(removeMetamaskFromErrorString$1(message)));
|
|
2534
|
+
this.setName(MetamaskException.errorClass);
|
|
2535
2535
|
}
|
|
2536
2536
|
};
|
|
2537
|
-
_defineProperty(
|
|
2537
|
+
_defineProperty(MetamaskException, "errorClass", "MetamaskException");
|
|
2538
2538
|
|
|
2539
2539
|
//#endregion
|
|
2540
2540
|
//#region src/exceptions/exceptions/OkxWalletException.ts
|
|
@@ -2569,6 +2569,23 @@ var HttpRequestException = class HttpRequestException extends ConcreteException
|
|
|
2569
2569
|
};
|
|
2570
2570
|
_defineProperty(HttpRequestException, "errorClass", "HttpRequestException");
|
|
2571
2571
|
|
|
2572
|
+
//#endregion
|
|
2573
|
+
//#region src/exceptions/exceptions/RabbyWalletException.ts
|
|
2574
|
+
const removeRabbyWalletFromErrorString = (message) => message.replaceAll("RabbyWallet", "").replaceAll("Rabby Wallet", "").replaceAll("Rabbywallet", "").replaceAll("RabbyWallet:", "").replaceAll("Rabby Wallet:", "");
|
|
2575
|
+
var RabbyWalletException = class RabbyWalletException extends ConcreteException {
|
|
2576
|
+
constructor(error, context) {
|
|
2577
|
+
super(error, context);
|
|
2578
|
+
this.type = ErrorType.WalletError;
|
|
2579
|
+
}
|
|
2580
|
+
parse() {
|
|
2581
|
+
const { message } = this;
|
|
2582
|
+
if (message.trim().toLowerCase().includes("missing or invalid parameters".toLowerCase())) this.setMessage("Please make sure you are using Rabby Wallet");
|
|
2583
|
+
else this.setMessage(mapErrorMessage(removeRabbyWalletFromErrorString(message)));
|
|
2584
|
+
this.setName(RabbyWalletException.errorClass);
|
|
2585
|
+
}
|
|
2586
|
+
};
|
|
2587
|
+
_defineProperty(RabbyWalletException, "errorClass", "RabbyWalletException");
|
|
2588
|
+
|
|
2572
2589
|
//#endregion
|
|
2573
2590
|
//#region src/exceptions/exceptions/TransactionException.ts
|
|
2574
2591
|
var TransactionException = class TransactionException extends ConcreteException {
|
|
@@ -2712,4 +2729,4 @@ var TurnkeyWalletSessionException = class TurnkeyWalletSessionException extends
|
|
|
2712
2729
|
_defineProperty(TurnkeyWalletSessionException, "errorClass", "TurnkeyWalletSessionException");
|
|
2713
2730
|
|
|
2714
2731
|
//#endregion
|
|
2715
|
-
export { BitGetException, ChainAuctionErrorCodes, ChainAuthZErrorCodes, ChainBankErrorCodes, ChainCosmosErrorCode, ChainDistributionErrorCodes, ChainErrorModule, ChainExchangeModuleErrorCode, ChainGovErrorCodes, ChainInsuranceErrorCodes, ChainOcrErrorCodes, ChainOracleErrorCodes, ChainPeggyErrorCodes, ChainStakingErrorCodes, ChainTokenFactoryErrorCodes, ChainWasmErrorCodes, ChainWasmXErrorCodes, ContractErrorModule, CosmosWalletException, ErrorType, GRPC_REQUEST_FAILED, GeneralException, GrpcErrorCode, GrpcUnaryRequestException, HttpRequestException, HttpRequestMethod, IndexerErrorModule, KeplrEvmException, LedgerCosmosException, LedgerException, MetamaskException, OkxWalletException, RainbowWalletException, THROWN_EXCEPTIONS, TransactionChainErrorModule, TransactionException, TrezorException, TrustWalletException, TurnkeyWalletSessionException, UnspecifiedErrorCode, WalletConnectException, WalletErrorActionModule, WalletException, Web3Exception, formatNotificationDescription, grpcErrorCodeToErrorCode, isThrownException };
|
|
2732
|
+
export { BitGetException, ChainAuctionErrorCodes, ChainAuthZErrorCodes, ChainBankErrorCodes, ChainCosmosErrorCode, ChainDistributionErrorCodes, ChainErrorModule, ChainExchangeModuleErrorCode, ChainGovErrorCodes, ChainInsuranceErrorCodes, ChainOcrErrorCodes, ChainOracleErrorCodes, ChainPeggyErrorCodes, ChainStakingErrorCodes, ChainTokenFactoryErrorCodes, ChainWasmErrorCodes, ChainWasmXErrorCodes, ContractErrorModule, CosmosWalletException, ErrorType, GRPC_REQUEST_FAILED, GeneralException, GrpcErrorCode, GrpcUnaryRequestException, HttpRequestException, HttpRequestMethod, IndexerErrorModule, KeplrEvmException, LedgerCosmosException, LedgerException, MetamaskException, OkxWalletException, RabbyWalletException, RainbowWalletException, THROWN_EXCEPTIONS, TransactionChainErrorModule, TransactionException, TrezorException, TrustWalletException, TurnkeyWalletSessionException, UnspecifiedErrorCode, WalletConnectException, WalletErrorActionModule, WalletException, Web3Exception, formatNotificationDescription, grpcErrorCodeToErrorCode, isThrownException };
|