@demox-labs/aleo-wallet-adapter-base
Advanced tools
Comparing version 0.0.9 to 0.0.10
@@ -8,7 +8,7 @@ export declare const WalletAdapterNetwork: { | ||
export declare type TransactionOrVersionedTransaction<S extends SupportedTransactionVersions> = S extends null ? any : any | any; | ||
export declare type DecryptPermission = { | ||
NoDecrypt: 'NO_DECRYPT'; | ||
UponRequest: 'DECRYPT_UPON_REQUEST'; | ||
AutoDecrypt: 'AUTO_DECRYPT'; | ||
ViewKeyAccess: 'VIEW_KEY_ACCESS'; | ||
}; | ||
export declare enum DecryptPermission { | ||
NoDecrypt = "NO_DECRYPT", | ||
UponRequest = "DECRYPT_UPON_REQUEST", | ||
AutoDecrypt = "AUTO_DECRYPT", | ||
ViewKeyAccess = "VIEW_KEY_ACCESS" | ||
} |
@@ -6,2 +6,9 @@ export const WalletAdapterNetwork = { | ||
}; | ||
export var DecryptPermission; | ||
(function (DecryptPermission) { | ||
DecryptPermission["NoDecrypt"] = "NO_DECRYPT"; | ||
DecryptPermission["UponRequest"] = "DECRYPT_UPON_REQUEST"; | ||
DecryptPermission["AutoDecrypt"] = "AUTO_DECRYPT"; | ||
DecryptPermission["ViewKeyAccess"] = "VIEW_KEY_ACCESS"; // The App gets the View Key of the connected wallet | ||
})(DecryptPermission || (DecryptPermission = {})); | ||
//# sourceMappingURL=types.js.map |
{ | ||
"name": "@demox-labs/aleo-wallet-adapter-base", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"description": "Core infrastructure for connecting aleo-compatible wallets to your dApp.", | ||
@@ -5,0 +5,0 @@ "module": "dist/index.js", |
10
types.ts
@@ -13,7 +13,7 @@ export const WalletAdapterNetwork = { | ||
export type DecryptPermission = { | ||
NoDecrypt: 'NO_DECRYPT', // The App cannot decrypt any records | ||
UponRequest: 'DECRYPT_UPON_REQUEST', | ||
AutoDecrypt: 'AUTO_DECRYPT', // The App can decrypt any requested records | ||
ViewKeyAccess: 'VIEW_KEY_ACCESS' // The App gets the View Key of the connected wallet | ||
export enum DecryptPermission { | ||
NoDecrypt = 'NO_DECRYPT', // The App cannot decrypt any records | ||
UponRequest = 'DECRYPT_UPON_REQUEST', | ||
AutoDecrypt = 'AUTO_DECRYPT', // The App can decrypt any requested records | ||
ViewKeyAccess = 'VIEW_KEY_ACCESS' // The App gets the View Key of the connected wallet | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
155082
586