@namefi/api-client 0.0.0-pre.3 → 0.0.0-pre.4

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,17 +15,17 @@
15
15
  ## Installation
16
16
 
17
17
  ```bash
18
- npm install @namefi-astra/client
18
+ npm install @namefi/api-client
19
19
  ```
20
20
 
21
21
  ## Usage
22
22
 
23
23
  ```ts
24
- import { createNamefiClient } from '@namefi-astra/client';
24
+ import { createNamefiClient } from '@namefi/api-client';
25
25
 
26
26
  const client = createNamefiClient({
27
27
  authentication: {
28
- apiKey: process.env.NAMEFI_API_KEY ?? '',
28
+ apiKey: process.env.NAMEFI_API_KEY!,
29
29
  type: 'API_KEY',
30
30
  },
31
31
  logger: true,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Namefi <dev-team@namefi.io>",
4
4
  "license": "MIT",
5
5
  "description": "API client for Namefi",
6
- "version": "0.0.0-pre.3",
6
+ "version": "0.0.0-pre.4",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist"