Socket
Socket
Sign inDemoInstall

@solana/wallet-standard-features

Package Overview
Dependencies
2
Maintainers
13
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.0-alpha.1 to 1.1.0-alpha.2

31

lib/types/signIn.d.ts

@@ -20,24 +20,27 @@ import type { IdentifierString, WalletAccount } from '@wallet-standard/base';

export interface SolanaSignInInput {
/** EIP-4361 Domain. */
readonly domain: string;
/**
* Optional account to use. If not provided, the wallet must determine the account to use.
* Used to determine EIP-4361 Address.
* Optional EIP-4361 Domain.
* If not provided, the wallet must determine the Domain to use.
*/
readonly domain?: string;
/**
* Optional account to use, used to determine EIP-4361 Address.
* If not provided, the wallet must determine the Address to use.
*/
readonly account?: WalletAccount;
/** Optional EIP-4361 Statement. */
readonly statement?: string;
/** EIP-4361 URI. */
readonly uri: string;
/** EIP-4361 Version. */
readonly version: '1';
/** Optional EIP-4361 URI. */
readonly uri?: string;
/** Optional EIP-4361 Version. */
readonly version?: '1';
/**
* Chain, as defined by the Wallet Standard.
* Optional Chain, as defined by the Wallet Standard.
* Used instead of EIP-4361 Chain ID.
*/
readonly chain: IdentifierString;
/** EIP-4361 Nonce. */
readonly nonce: string;
/** EIP-4361 Issued At. */
readonly issuedAt: string;
readonly chain?: IdentifierString;
/** Optional EIP-4361 Nonce. */
readonly nonce?: string;
/** Optional EIP-4361 Issued At. */
readonly issuedAt?: string;
/** Optional EIP-4361 Expiration Time. */

@@ -44,0 +47,0 @@ readonly expirationTime?: string;

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

@@ -5,0 +5,0 @@ "repository": "https://github.com/solana-labs/wallet-standard",

@@ -26,8 +26,11 @@ import type { IdentifierString, WalletAccount } from '@wallet-standard/base';

export interface SolanaSignInInput {
/** EIP-4361 Domain. */
readonly domain: string;
/**
* Optional EIP-4361 Domain.
* If not provided, the wallet must determine the Domain to use.
*/
readonly domain?: string;
/**
* Optional account to use. If not provided, the wallet must determine the account to use.
* Used to determine EIP-4361 Address.
* Optional account to use, used to determine EIP-4361 Address.
* If not provided, the wallet must determine the Address to use.
*/

@@ -39,19 +42,19 @@ readonly account?: WalletAccount;

/** EIP-4361 URI. */
readonly uri: string;
/** Optional EIP-4361 URI. */
readonly uri?: string;
/** EIP-4361 Version. */
readonly version: '1';
/** Optional EIP-4361 Version. */
readonly version?: '1';
/**
* Chain, as defined by the Wallet Standard.
* Optional Chain, as defined by the Wallet Standard.
* Used instead of EIP-4361 Chain ID.
*/
readonly chain: IdentifierString;
readonly chain?: IdentifierString;
/** EIP-4361 Nonce. */
readonly nonce: string;
/** Optional EIP-4361 Nonce. */
readonly nonce?: string;
/** EIP-4361 Issued At. */
readonly issuedAt: string;
/** Optional EIP-4361 Issued At. */
readonly issuedAt?: string;

@@ -58,0 +61,0 @@ /** Optional EIP-4361 Expiration Time. */

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc