nara-sdk 1.0.70 → 1.0.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -16,15 +16,15 @@ TypeScript/JavaScript SDK for interacting with the Nara blockchain. Build agents
|
|
|
16
16
|
## Install
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npm install
|
|
19
|
+
npm install nara-sdk
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
## Quick Start
|
|
23
23
|
|
|
24
24
|
```js
|
|
25
|
-
import { Connection, Keypair, Transaction } from '
|
|
25
|
+
import { Connection, Keypair, Transaction } from 'nara-sdk';
|
|
26
26
|
|
|
27
|
-
const connection = new Connection('https://
|
|
27
|
+
const connection = new Connection('https://mainnet-api.nara.build');
|
|
28
28
|
const balance = await connection.getBalance(publicKey);
|
|
29
29
|
```
|
|
30
30
|
|
|
@@ -41,7 +41,7 @@ RPC Client Full RPC method coverage
|
|
|
41
41
|
## CLI
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
npx
|
|
44
|
+
npx nara-sdk --help
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
## Documentation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nara-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.72",
|
|
4
4
|
"description": "SDK for the Nara chain (Solana-compatible)",
|
|
5
5
|
"module": "index.ts",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"private": false,
|
|
9
9
|
"files": [
|
|
10
10
|
"src",
|
|
11
|
-
"index.ts"
|
|
11
|
+
"index.ts",
|
|
12
|
+
"README.md"
|
|
12
13
|
],
|
|
13
14
|
"keywords": [
|
|
14
15
|
"nara",
|