mmn-client-js 1.0.0 → 1.0.1

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
@@ -1,4 +1,4 @@
1
- # @mezon/mmn-client-js
1
+ # mmn-client-js
2
2
 
3
3
  A TypeScript client for interacting with the MMN blockchain via JSON-RPC. It supports creating, signing, and submitting transactions, plus basic account and transaction queries.
4
4
 
@@ -13,13 +13,13 @@ A TypeScript client for interacting with the MMN blockchain via JSON-RPC. It sup
13
13
  ## Installation
14
14
 
15
15
  ```bash
16
- npm install @mezonai/mmn-client-js
16
+ npm install mmn-client-js
17
17
  ```
18
18
 
19
19
  ## Quick Start
20
20
 
21
21
  ```typescript
22
- import { MmnClient } from '@mezonai/mmn-client-js';
22
+ import { MmnClient } from 'mmn-client-js';
23
23
 
24
24
  // Create a client instance
25
25
  const client = new MmnClient({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mmn-client-js",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A comprehensive TypeScript client for interacting with MMN blockchain via JSON-RPC",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",