New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@wallet-standard/features

Package Overview
Dependencies
Maintainers
2
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wallet-standard/features - npm Package Compare versions

Comparing version 1.0.3 to 1.1.0

16

lib/types/connect.d.ts

@@ -17,3 +17,3 @@ import type { WalletAccount } from '@wallet-standard/base';

*/
export declare type StandardConnectFeature = {
export type StandardConnectFeature = {
/** Name of the feature. */

@@ -32,3 +32,3 @@ readonly [StandardConnect]: {

*/
export declare type ConnectFeature = StandardConnectFeature;
export type ConnectFeature = StandardConnectFeature;
/**

@@ -39,3 +39,3 @@ * Version of the {@link StandardConnectFeature} implemented by a {@link "@wallet-standard/base".Wallet}.

*/
export declare type StandardConnectVersion = '1.0.0';
export type StandardConnectVersion = '1.0.0';
/**

@@ -46,3 +46,3 @@ * @deprecated Use {@link StandardConnectVersion} instead.

*/
export declare type ConnectVersion = StandardConnectVersion;
export type ConnectVersion = StandardConnectVersion;
/**

@@ -53,3 +53,3 @@ * Method to call to use the {@link StandardConnectFeature}.

*/
export declare type StandardConnectMethod = (input?: StandardConnectInput) => Promise<StandardConnectOutput>;
export type StandardConnectMethod = (input?: StandardConnectInput) => Promise<StandardConnectOutput>;
/**

@@ -60,3 +60,3 @@ * @deprecated Use {@link StandardConnectMethod} instead.

*/
export declare type ConnectMethod = StandardConnectMethod;
export type ConnectMethod = StandardConnectMethod;
/**

@@ -83,3 +83,3 @@ * Input for the {@link StandardConnectMethod}.

*/
export declare type ConnectInput = StandardConnectInput;
export type ConnectInput = StandardConnectInput;
/**

@@ -99,3 +99,3 @@ * Output of the {@link StandardConnectMethod}.

*/
export declare type ConnectOutput = StandardConnectOutput;
export type ConnectOutput = StandardConnectOutput;
//# sourceMappingURL=connect.d.ts.map

@@ -19,3 +19,3 @@ /** Name of the feature. */

*/
export declare type StandardDisconnectFeature = {
export type StandardDisconnectFeature = {
/** Name of the feature. */

@@ -34,3 +34,3 @@ readonly [StandardDisconnect]: {

*/
export declare type DisconnectFeature = StandardDisconnectFeature;
export type DisconnectFeature = StandardDisconnectFeature;
/**

@@ -41,3 +41,3 @@ * Version of the {@link StandardDisconnectFeature} implemented by a Wallet.

*/
export declare type StandardDisconnectVersion = '1.0.0';
export type StandardDisconnectVersion = '1.0.0';
/**

@@ -48,3 +48,3 @@ * @deprecated Use {@link StandardDisconnectVersion} instead.

*/
export declare type DisconnectVersion = StandardDisconnectVersion;
export type DisconnectVersion = StandardDisconnectVersion;
/**

@@ -55,3 +55,3 @@ * Method to call to use the {@link StandardDisconnectFeature}.

*/
export declare type StandardDisconnectMethod = () => Promise<void>;
export type StandardDisconnectMethod = () => Promise<void>;
/**

@@ -62,3 +62,3 @@ * @deprecated Use {@link StandardDisconnectMethod} instead.

*/
export declare type DisconnectMethod = StandardDisconnectMethod;
export type DisconnectMethod = StandardDisconnectMethod;
//# sourceMappingURL=disconnect.d.ts.map

@@ -17,3 +17,3 @@ import type { Wallet } from '@wallet-standard/base';

*/
export declare type StandardEventsFeature = {
export type StandardEventsFeature = {
/** Name of the feature. */

@@ -32,3 +32,3 @@ readonly [StandardEvents]: {

*/
export declare type EventsFeature = StandardEventsFeature;
export type EventsFeature = StandardEventsFeature;
/**

@@ -39,3 +39,3 @@ * Version of the {@link StandardEventsFeature} implemented by a {@link "@wallet-standard/base".Wallet}.

*/
export declare type StandardEventsVersion = '1.0.0';
export type StandardEventsVersion = '1.0.0';
/**

@@ -46,3 +46,3 @@ * @deprecated Use {@link StandardEventsVersion} instead.

*/
export declare type EventsVersion = StandardEventsVersion;
export type EventsVersion = StandardEventsVersion;
/**

@@ -61,3 +61,3 @@ * Method to call to use the {@link StandardEventsFeature}.

*/
export declare type StandardEventsOnMethod = <E extends StandardEventsNames>(event: E, listener: StandardEventsListeners[E]) => () => void;
export type StandardEventsOnMethod = <E extends StandardEventsNames>(event: E, listener: StandardEventsListeners[E]) => () => void;
/**

@@ -68,3 +68,3 @@ * @deprecated Use {@link StandardEventsOnMethod} instead.

*/
export declare type EventsOnMethod = StandardEventsOnMethod;
export type EventsOnMethod = StandardEventsOnMethod;
/**

@@ -89,3 +89,3 @@ * Types of event listeners of the {@link StandardEventsFeature}.

*/
export declare type EventsListeners = StandardEventsListeners;
export type EventsListeners = StandardEventsListeners;
/**

@@ -96,3 +96,3 @@ * Names of {@link StandardEventsListeners} that can be listened for.

*/
export declare type StandardEventsNames = keyof StandardEventsListeners;
export type StandardEventsNames = keyof StandardEventsListeners;
/**

@@ -103,3 +103,3 @@ * @deprecated Use {@link StandardEventsNames} instead.

*/
export declare type EventsNames = StandardEventsNames;
export type EventsNames = StandardEventsNames;
/**

@@ -142,3 +142,3 @@ * Properties of a {@link "@wallet-standard/base".Wallet} that {@link StandardEventsListeners.change | changed} with their

*/
export declare type EventsChangeProperties = StandardEventsChangeProperties;
export type EventsChangeProperties = StandardEventsChangeProperties;
//# sourceMappingURL=events.d.ts.map

@@ -11,3 +11,3 @@ import type { WalletWithFeatures } from '@wallet-standard/base';

*/
export declare type StandardFeatures = StandardConnectFeature | StandardDisconnectFeature | StandardEventsFeature;
export type StandardFeatures = StandardConnectFeature | StandardDisconnectFeature | StandardEventsFeature;
/**

@@ -18,3 +18,3 @@ * Type alias for a {@link "@wallet-standard/base".Wallet} that implements some or all {@link StandardFeatures}.

*/
export declare type WalletWithStandardFeatures = WalletWithFeatures<StandardFeatures>;
export type WalletWithStandardFeatures = WalletWithFeatures<StandardFeatures>;
export * from './connect.js';

@@ -21,0 +21,0 @@ export * from './disconnect.js';

{
"name": "@wallet-standard/features",
"version": "1.0.3",
"version": "1.1.0",
"author": "Solana Maintainers <maintainers@solana.foundation>",

@@ -29,3 +29,3 @@ "repository": "https://github.com/wallet-standard/wallet-standard",

"dependencies": {
"@wallet-standard/base": "^1.0.1"
"@wallet-standard/base": "^1.1.0"
},

@@ -32,0 +32,0 @@ "devDependencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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