Skip to content

Commit

Permalink
Package is now @helius-dev/kite (someone else has @Helius! Boo!)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemaccana committed Feb 14, 2025
1 parent 31dc984 commit f9e71e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Kite version 1.0

- New name: `@helius/kite`
- New name: `@helius-dev/kite`
- Use @solana/web3.js version 2
- A new `connect()` method is provided, which returns an object with `rpc`, `rpcSubscriptions`, `sendAndConfirmTransaction()` (to confirm transactions using your RPC) and `getExplorerLink()` (to get Explorer links using your RPC).
- Most functions are now a property of `connection`. For example, `connection.getLamportBalance()` instead of `getBalance()`.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Solana itself is named after [a beach](https://en.wikipedia.org/wiki/Solana_Beac
## Installation

```bash
npm i @helius/kite
npm i @helius-dev/kite
```

## Starting Kite & connecting to an RPC
Expand All @@ -72,7 +72,7 @@ To start Kite, you need to connect to an RPC.
To use the local cluster (ie, `solana-test-validator` running on your machine):

```typescript
import { connect } from "@helius/kite";
import { connect } from "@helius-dev/kite";

const connection = connect();
```
Expand Down
2 changes: 1 addition & 1 deletion comparison-kite.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { connect } from "@helius/kite";
import { connect } from "@helius-dev/kite";

const connection = connect();
const mintAuthority = await connection.createWallet();
Expand Down

0 comments on commit f9e71e7

Please sign in to comment.