@solana/wallet-adapter-coinbase
Advanced tools
Comparing version 0.1.7 to 0.1.8
@@ -66,5 +66,2 @@ "use strict"; | ||
} | ||
get connected() { | ||
return !!this._publicKey; | ||
} | ||
get readyState() { | ||
@@ -71,0 +68,0 @@ return this._readyState; |
@@ -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
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
52385
637