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

@solana/wallet-adapter-coinbase

Package Overview
Dependencies
Maintainers
14
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solana/wallet-adapter-coinbase - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

3

lib/cjs/adapter.js

@@ -66,5 +66,2 @@ "use strict";

}
get connected() {
return !!this._publicKey;
}
get readyState() {

@@ -71,0 +68,0 @@ return this._readyState;

5

lib/types/adapter.d.ts

@@ -7,5 +7,5 @@ import type { SendTransactionOptions, WalletName } from '@solana/wallet-adapter-base';

}
export declare const CoinbaseWalletName: WalletName<string>;
export declare const CoinbaseWalletName: WalletName<"Coinbase Wallet">;
export declare class CoinbaseWalletAdapter extends BaseMessageSignerWalletAdapter {
name: WalletName<string>;
name: WalletName<"Coinbase Wallet">;
url: string;

@@ -20,3 +20,2 @@ icon: string;

get connecting(): boolean;
get connected(): boolean;
get readyState(): WalletReadyState;

@@ -23,0 +22,0 @@ connect(): Promise<void>;

{
"name": "@solana/wallet-adapter-coinbase",
"version": "0.1.7",
"version": "0.1.8",
"author": "Solana Maintainers <maintainers@solana.foundation>",

@@ -34,3 +34,3 @@ "repository": "https://github.com/solana-labs/wallet-adapter",

"dependencies": {
"@solana/wallet-adapter-base": "^0.9.10"
"@solana/wallet-adapter-base": "^0.9.12"
},

@@ -40,3 +40,3 @@ "devDependencies": {

},
"gitHead": "dfe6f0cd3cd8a6430aab3bc82049d58d8e41ce09"
"gitHead": "723e197f5bda4661b7bede354858948ce5d889c8"
}

@@ -46,3 +46,3 @@ import type { EventEmitter, SendTransactionOptions, WalletName } from '@solana/wallet-adapter-base';

export const CoinbaseWalletName = 'Coinbase Wallet' as WalletName;
export const CoinbaseWalletName = 'Coinbase Wallet' as WalletName<'Coinbase Wallet'>;

@@ -81,15 +81,11 @@ export class CoinbaseWalletAdapter extends BaseMessageSignerWalletAdapter {

get publicKey(): PublicKey | null {
get publicKey() {
return this._publicKey;
}
get connecting(): boolean {
get connecting() {
return this._connecting;
}
get connected(): boolean {
return !!this._publicKey;
}
get readyState(): WalletReadyState {
get readyState() {
return this._readyState;

@@ -96,0 +92,0 @@ }

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