1- # @solana/devtools
1+ # @solana/connector-debugger
22
33Framework-agnostic devtools for ` @solana/connector ` . Works with any web framework via the imperative DOM API.
44
@@ -16,7 +16,7 @@ Framework-agnostic devtools for `@solana/connector`. Works with any web framewor
1616## Installation
1717
1818``` bash
19- npm install @solana/devtools
19+ npm install @solana/connector-debugger
2020```
2121
2222## Usage
@@ -26,7 +26,7 @@ npm install @solana/devtools
2626When using ` @solana/connector/react ` with ` ConnectorProvider ` , the client is automatically exposed on ` window.__connectorClient ` :
2727
2828``` typescript
29- import { ConnectorDevtools } from ' @solana/devtools ' ;
29+ import { ConnectorDevtools } from ' @solana/connector-debugger ' ;
3030
3131// Create devtools instance (auto-detects client from window.__connectorClient)
3232const devtools = new ConnectorDevtools ();
@@ -45,7 +45,7 @@ devtools.unmount();
4545If you're using the headless API or want explicit control:
4646
4747``` typescript
48- import { ConnectorDevtools } from ' @solana/devtools ' ;
48+ import { ConnectorDevtools } from ' @solana/connector-debugger ' ;
4949import { ConnectorClient } from ' @solana/connector/headless' ;
5050
5151const client = new ConnectorClient ({ debug: true });
@@ -75,7 +75,7 @@ export function DevtoolsLoader() {
7575
7676 let devtools: any ;
7777
78- import (' @solana/devtools ' ).then (({ ConnectorDevtools }) => {
78+ import (' @solana/connector-debugger ' ).then (({ ConnectorDevtools }) => {
7979 devtools = new ConnectorDevtools ();
8080 const container = document .createElement (' div' );
8181 container .id = ' connector-devtools' ;
0 commit comments