Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/next-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@solana/connector": "workspace:*",
"@solana/devtools": "workspace:*",
"@solana/keychain": "^0.2.1",
"@solana/kit": "^5.0.0",
"@solana/kit": "^6.0.0",
"@solana/web3.js": "^1.98.4",
"@tanstack/react-query": "^5.90.5",
"@wallet-standard/app": "^1.1.0",
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@
"release": "turbo build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@changesets/cli": "^2.29.8",
"@solana/prettier-config-solana": "0.0.5",
"@types/d3-path": "^3.1.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^24.8.1",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"eslint": "^9.38.0",
"prettier": "^3.6.2",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"turbo": "^2.7.3"
"@types/node": "^24.10.13",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"turbo": "^2.8.7"
},
"engines": {
"node": ">=18.0.0"
"node": ">=20.18.0"
},
"packageManager": "pnpm@10.28.0"
}
4 changes: 2 additions & 2 deletions packages/connector/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@solana/connector",
"version": "0.2.4",
"version": "0.2.5",
"description": "Headless wallet connector client and React provider built on Wallet Standard",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down Expand Up @@ -96,7 +96,7 @@
"@solana/addresses": "^5.0.0",
"@solana/codecs": "^5.0.0",
"@solana/keys": "^5.0.0",
"@solana/kit": "^5.0.0",
"@solana/kit": "^6.0.0",
"@solana/signers": "^5.0.0",
"@solana/transaction-messages": "^5.0.0",
"@solana/transactions": "^5.0.0",
Expand Down
5 changes: 2 additions & 3 deletions packages/connector/src/headless.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,8 @@ describe('headless entrypoint', () => {
});

it('should export polyfill utilities without React', async () => {
const { installPolyfills, isPolyfillInstalled, isCryptoAvailable, getPolyfillStatus } = await import(
'./headless'
);
const { installPolyfills, isPolyfillInstalled, isCryptoAvailable, getPolyfillStatus } =
await import('./headless');

expect(installPolyfills).toBeDefined();
expect(isPolyfillInstalled).toBeDefined();
Expand Down
6 changes: 4 additions & 2 deletions packages/connector/src/hooks/_internal/use-wallet-assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ export interface WalletAssetsData {
/**
* Options for useWalletAssets hook
*/
export interface UseWalletAssetsOptions<TSelected = WalletAssetsData>
extends Omit<SharedQueryOptions<WalletAssetsData, TSelected>, 'select'> {
export interface UseWalletAssetsOptions<TSelected = WalletAssetsData> extends Omit<
SharedQueryOptions<WalletAssetsData, TSelected>,
'select'
> {
/** Override the Solana client from provider */
client?: SolanaClient | null;
/** Transform/select a subset of data (reduces rerenders) */
Expand Down
5 changes: 2 additions & 3 deletions packages/connector/src/ui/connector-provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,8 @@ function ConnectorProviderInternal({
let cancelled = false;
(async () => {
try {
const mod = (await import(
'@solana-mobile/wallet-standard-mobile'
)) as typeof import('@solana-mobile/wallet-standard-mobile');
const mod =
(await import('@solana-mobile/wallet-standard-mobile')) as typeof import('@solana-mobile/wallet-standard-mobile');
if (cancelled) return;
const {
registerMwa,
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@solana-program/system": "^0.10.0",
"@solana-program/token": "^0.9.0",
"@solana-program/token-2022": "^0.6.1",
"@solana/kit": "^5.0.0",
"@solana/kit": "^6.0.0",
"@solana/transaction-messages": "^5.0.0",
"@solana/transactions": "^5.0.0"
}
Expand Down
Loading
Loading