{"version":3,"file":"constants.cjs","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";;;AAAA,IAAY,6BA0CX;AA1CD,WAAY,6BAA6B;IACvC,mFAAkD,CAAA;IAClD,2FAA0D,CAAA;IAC1D,wHAAuF,CAAA;IACvF,2GAA0E,CAAA;IAC1E,sHAAqF,CAAA;IACrF,uGAAsE,CAAA;IACtE,gGAA+D,CAAA;IAC/D,8HAA6F,CAAA;IAC7F,2GAA0E,CAAA;IAC1E,oHAAmF,CAAA;IACnF,6IAA4G,CAAA;IAC5G,kKAAiI,CAAA;IACjI,gKAA+H,CAAA;IAC/H,gKAA+H,CAAA;IAC/H,oKAAmI,CAAA;IACnI,4JAA2H,CAAA;IAC3H,4KAA2I,CAAA;IAC3I,sLAAqJ,CAAA;IACrJ,kLAAiJ,CAAA;IACjJ,kKAAiI,CAAA;IACjI,sKAAqI,CAAA;IACrI,sKAAqI,CAAA;IACrI,kLAAiJ,CAAA;IACjJ,8KAA6I,CAAA;IAC7I,0KAAyI,CAAA;IACzI,wKAAuI,CAAA;IACvI,8IAA6G,CAAA;IAC7G,wKAAuI,CAAA;IACvI,gHAA+E,CAAA;IAC/E,2IAA0G,CAAA;IAC1G,oIAAmG,CAAA;IACnG,wHAAuF,CAAA;IACvF,wHAAuF,CAAA;IACvF,6GAA4E,CAAA;IAC5E,8FAA6D,CAAA;IAC7D,wFAAuD,CAAA;IACvD,iJAAgH,CAAA;IAChH,sIAAqG,CAAA;IACrG,mGAAkE,CAAA;IAClE,uIAAsG,CAAA;IACtG,qHAAoF,CAAA;AACtF,CAAC,EA1CW,6BAA6B,6CAA7B,6BAA6B,QA0CxC","sourcesContent":["export enum KeyringControllerErrorMessage {\n  NoKeyring = 'KeyringController - No keyring found',\n  KeyringNotFound = 'KeyringController - Keyring not found.',\n  UnsafeDirectKeyringAccess = 'KeyringController - Returning keyring instances is unsafe',\n  WrongPasswordType = 'KeyringController - Password must be of type string.',\n  WrongEncryptionKeyType = 'KeyringController - Encryption key must be of type string.',\n  InvalidEmptyPassword = 'KeyringController - Password cannot be empty.',\n  NoFirstAccount = 'KeyringController - First Account not found.',\n  DuplicatedAccount = 'KeyringController - The account you are trying to import is a duplicate',\n  VaultError = 'KeyringController - Cannot unlock without a previous vault.',\n  VaultDataError = 'KeyringController - The decrypted vault has an unexpected shape.',\n  UnsupportedEncryptionKeyExport = 'KeyringController - The encryptor does not support encryption key export.',\n  UnsupportedGenerateRandomMnemonic = 'KeyringController - The current keyring does not support the method generateRandomMnemonic.',\n  UnsupportedExportAccount = '`KeyringController - The keyring for the current address does not support the method exportAccount',\n  UnsupportedRemoveAccount = '`KeyringController - The keyring for the current address does not support the method removeAccount',\n  UnsupportedSignTransaction = 'KeyringController - The keyring for the current address does not support the method signTransaction.',\n  UnsupportedSignMessage = 'KeyringController - The keyring for the current address does not support the method signMessage.',\n  UnsupportedSignPersonalMessage = 'KeyringController - The keyring for the current address does not support the method signPersonalMessage.',\n  UnsupportedSignEip7702Authorization = 'KeyringController - The keyring for the current address does not support the method signEip7702Authorization.',\n  UnsupportedGetEncryptionPublicKey = 'KeyringController - The keyring for the current address does not support the method getEncryptionPublicKey.',\n  UnsupportedDecryptMessage = 'KeyringController - The keyring for the current address does not support the method decryptMessage.',\n  UnsupportedSignTypedMessage = 'KeyringController - The keyring for the current address does not support the method signTypedMessage.',\n  UnsupportedGetAppKeyAddress = 'KeyringController - The keyring for the current address does not support the method getAppKeyAddress.',\n  UnsupportedExportAppKeyForAddress = 'KeyringController - The keyring for the current address does not support the method exportAppKeyForAddress.',\n  UnsupportedPrepareUserOperation = 'KeyringController - The keyring for the current address does not support the method prepareUserOperation.',\n  UnsupportedPatchUserOperation = 'KeyringController - The keyring for the current address does not support the method patchUserOperation.',\n  UnsupportedSignUserOperation = 'KeyringController - The keyring for the current address does not support the method signUserOperation.',\n  UnsupportedVerifySeedPhrase = 'KeyringController - The keyring does not support the method verifySeedPhrase.',\n  MissingEip7702AuthorizationContractAddress = 'KeyringController - The EIP-7702 Authorization is invalid. No contract address provided.',\n  NoAccountOnKeychain = \"KeyringController - The keychain doesn't have accounts.\",\n  ControllerLocked = 'KeyringController - The operation cannot be completed while the controller is locked.',\n  MissingCredentials = 'KeyringController - Cannot persist vault without password and encryption key',\n  MissingVaultData = 'KeyringController - Cannot persist vault without vault information',\n  ExpiredCredentials = 'KeyringController - Encryption key and salt provided are expired',\n  NoKeyringBuilder = 'KeyringController - No keyringBuilder found for keyring',\n  DataType = 'KeyringController - Incorrect data type provided',\n  NoHdKeyring = 'KeyringController - No HD Keyring found',\n  ControllerLockRequired = 'KeyringController - attempt to update vault during a non mutually exclusive operation',\n  LastAccountInPrimaryKeyring = 'KeyringController - Last account in primary keyring cannot be removed',\n  EncryptionKeyNotSet = 'KeyringController - Encryption key not set',\n  KeyringV2NotSupported = 'KeyringController - The selected keyring does not support the KeyringV2 API.',\n  CannotRemovePrimaryKeyring = 'KeyringController - Cannot remove the primary keyring',\n}\n"]}