@solana/wallet-adapter-bitpie
Advanced tools
Comparing version 0.5.7 to 0.5.8
{ | ||
"name": "@solana/wallet-adapter-bitpie", | ||
"version": "0.5.7", | ||
"version": "0.5.8", | ||
"author": "Solana Maintainers <maintainers@solana.foundation>", | ||
@@ -13,4 +13,5 @@ "repository": "https://github.com/solana-labs/wallet-adapter", | ||
"exports": { | ||
"require": "./lib/cjs/index.js", | ||
"import": "./lib/esm/index.mjs", | ||
"require": "./lib/cjs/index.js" | ||
"types": "./lib/types/index.d.ts" | ||
}, | ||
@@ -34,3 +35,3 @@ "files": [ | ||
"dependencies": { | ||
"@solana/wallet-adapter-base": "^0.9.10" | ||
"@solana/wallet-adapter-base": "^0.9.12" | ||
}, | ||
@@ -40,3 +41,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "29b57115d1fd7bf097f14ca82cbb1c96e65b8372" | ||
"gitHead": "723e197f5bda4661b7bede354858948ce5d889c8" | ||
} |
@@ -62,11 +62,11 @@ import type { WalletName } from '@solana/wallet-adapter-base'; | ||
get publicKey(): PublicKey | null { | ||
get publicKey() { | ||
return this._publicKey; | ||
} | ||
get connecting(): boolean { | ||
get connecting() { | ||
return this._connecting; | ||
} | ||
get readyState(): WalletReadyState { | ||
get readyState() { | ||
return this._readyState; | ||
@@ -83,3 +83,3 @@ } | ||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion | ||
const wallet = window!.bitpie!; | ||
const wallet = window.bitpie!; | ||
@@ -86,0 +86,0 @@ let account: string; |
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
45516