@haneullabs/mvr-static 0.3.1 → 0.3.2
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 +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -35,11 +35,11 @@ Once you have your static file, you can use it in your project by importing it a
|
|
|
35
35
|
Haneul client initialization. MVR resolution is now built into the core client.
|
|
36
36
|
|
|
37
37
|
```ts
|
|
38
|
-
import {
|
|
38
|
+
import { HaneulGrpcClient } from '@haneullabs/haneul/grpc';
|
|
39
39
|
import { getMvrCache } from './mvr.ts';
|
|
40
40
|
|
|
41
41
|
// Create a gRPC client with MVR overrides for your network
|
|
42
|
-
const client = new
|
|
42
|
+
const client = new HaneulGrpcClient({
|
|
43
43
|
network: 'mainnet',
|
|
44
44
|
baseUrl: 'https://fullnode.mainnet.haneul.io:443',
|
|
45
45
|
mvr: {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"author": "Haneul Labs <build@haneul-labs.com>",
|
|
4
4
|
"description": "The static generation tool for Move Registry (mvr)",
|
|
5
5
|
"homepage": "https://sdk.haneul-labs.com",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"files": [
|
|
9
9
|
"CHANGELOG.md",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"url": "git+https://github.com/GeunhwaJeong/ts-sdks.git"
|
|
28
28
|
},
|
|
29
29
|
"bugs": {
|
|
30
|
-
"url": "https://github.com/
|
|
30
|
+
"url": "https://github.com/GeunhwaJeong/mvr/issues/new"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"enquirer": "^2.4.1",
|
|
42
42
|
"glob": "^13.0.0",
|
|
43
43
|
"prettier": "^3.7.4",
|
|
44
|
-
"@haneullabs/haneul": "^2.
|
|
44
|
+
"@haneullabs/haneul": "^2.13.0"
|
|
45
45
|
},
|
|
46
46
|
"sideEffects": false,
|
|
47
47
|
"bin": "./bin/parser.js",
|