Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@demox-labs/aleo-wallet-adapter-base

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@demox-labs/aleo-wallet-adapter-base - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

12

dist/types.d.ts

@@ -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",

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc