@hashgraphonline/standards-sdk 0.1.141-canary.6 → 0.1.141-canary.8
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/dist/cjs/services/registry-broker/client.d.ts.map +1 -1
- package/dist/cjs/standards-sdk.cjs +2 -2
- package/dist/cjs/standards-sdk.cjs.map +1 -1
- package/dist/es/services/registry-broker/client.d.ts.map +1 -1
- package/dist/es/standards-sdk.es109.js +1 -1
- package/dist/es/standards-sdk.es110.js +5 -5
- package/dist/es/standards-sdk.es120.js +1 -1
- package/dist/es/standards-sdk.es121.js +1 -1
- package/dist/es/standards-sdk.es122.js +5 -5
- package/dist/es/standards-sdk.es127.js +12 -2
- package/dist/es/standards-sdk.es127.js.map +1 -1
- package/dist/es/standards-sdk.es128.js +1 -2
- package/dist/es/standards-sdk.es128.js.map +1 -1
- package/dist/es/standards-sdk.es139.js +54 -15
- package/dist/es/standards-sdk.es139.js.map +1 -1
- package/dist/es/standards-sdk.es140.js +57 -49
- package/dist/es/standards-sdk.es140.js.map +1 -1
- package/dist/es/standards-sdk.es141.js +161 -53
- package/dist/es/standards-sdk.es141.js.map +1 -1
- package/dist/es/standards-sdk.es142.js +289 -139
- package/dist/es/standards-sdk.es142.js.map +1 -1
- package/dist/es/standards-sdk.es143.js +298 -274
- package/dist/es/standards-sdk.es143.js.map +1 -1
- package/dist/es/standards-sdk.es144.js +369 -262
- package/dist/es/standards-sdk.es144.js.map +1 -1
- package/dist/es/standards-sdk.es145.js +194 -316
- package/dist/es/standards-sdk.es145.js.map +1 -1
- package/dist/es/standards-sdk.es146.js +64 -319
- package/dist/es/standards-sdk.es146.js.map +1 -1
- package/dist/es/standards-sdk.es147.js +15 -74
- package/dist/es/standards-sdk.es147.js.map +1 -1
- package/dist/es/standards-sdk.es17.js +1 -1
- package/dist/es/standards-sdk.es19.js +1 -1
- package/dist/es/standards-sdk.es20.js +1 -1
- package/dist/es/standards-sdk.es28.js +1 -1
- package/dist/es/standards-sdk.es36.js +1 -1
- package/dist/es/standards-sdk.es57.js +1 -1
- package/dist/es/standards-sdk.es59.js +1 -1
- package/dist/es/standards-sdk.es60.js +1 -1
- package/dist/es/standards-sdk.es61.js +1 -1
- package/dist/es/standards-sdk.es63.js +1 -1
- package/dist/es/standards-sdk.es65.js +1 -1
- package/dist/es/standards-sdk.es66.js +1 -1
- package/dist/es/standards-sdk.es78.js +1 -1
- package/package.json +63 -61
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"standards-sdk.es147.js","sources":["../../src/
|
|
1
|
+
{"version":3,"file":"standards-sdk.es147.js","sources":["../../src/hcs-5/base-client.ts"],"sourcesContent":["import { Logger, ILogger } from '../utils/logger';\nimport { HederaMirrorNode } from '../services/mirror-node';\nimport { HCS5ClientConfig } from './types';\nimport { NetworkType } from '../utils/types';\n\n/**\n * Base client for HCS-5 operations\n */\nexport abstract class HCS5BaseClient {\n protected logger: ILogger;\n protected mirrorNode: HederaMirrorNode;\n protected network: NetworkType;\n\n /**\n * Create a new HCS-5 base client\n */\n constructor(config: HCS5ClientConfig) {\n this.network = config.network;\n this.logger =\n config.logger ||\n Logger.getInstance({\n level: config.logLevel || 'info',\n module: 'HCS5Client',\n silent: config.silent,\n });\n\n this.mirrorNode = new HederaMirrorNode(this.network, this.logger);\n }\n}\n"],"names":[],"mappings":";;AAQO,MAAe,eAAe;AAAA;AAAA;AAAA;AAAA,EAQnC,YAAY,QAA0B;AACpC,SAAK,UAAU,OAAO;AACtB,SAAK,SACH,OAAO,UACP,OAAO,YAAY;AAAA,MACjB,OAAO,OAAO,YAAY;AAAA,MAC1B,QAAQ;AAAA,MACR,QAAQ,OAAO;AAAA,IAAA,CAChB;AAEH,SAAK,aAAa,IAAI,iBAAiB,KAAK,SAAS,KAAK,MAAM;AAAA,EAClE;AACF;"}
|
|
@@ -6,6 +6,7 @@ import { HederaMirrorNode } from "./standards-sdk.es126.js";
|
|
|
6
6
|
import "node:path";
|
|
7
7
|
import "node:buffer";
|
|
8
8
|
import "node:crypto";
|
|
9
|
+
import "node:module";
|
|
9
10
|
import "@noble/curves/secp256k1.js";
|
|
10
11
|
import "./standards-sdk.es129.js";
|
|
11
12
|
import "axios";
|
|
@@ -15,7 +16,6 @@ import "x402-axios";
|
|
|
15
16
|
import "x402/types";
|
|
16
17
|
import "./standards-sdk.es135.js";
|
|
17
18
|
import "zod";
|
|
18
|
-
import "node:module";
|
|
19
19
|
import { buildHcs10SubmitConnectionRequestTx, buildHcs10OutboundConnectionRequestRecordTx, buildHcs10OutboundConnectionCreatedRecordTx } from "./standards-sdk.es23.js";
|
|
20
20
|
import { HRLResolver } from "./standards-sdk.es109.js";
|
|
21
21
|
var Hcs10MemoType = /* @__PURE__ */ ((Hcs10MemoType2) => {
|
|
@@ -10,6 +10,7 @@ import "@hashgraph/proto";
|
|
|
10
10
|
import "node:path";
|
|
11
11
|
import "node:buffer";
|
|
12
12
|
import "node:crypto";
|
|
13
|
+
import "node:module";
|
|
13
14
|
import "@noble/curves/secp256k1.js";
|
|
14
15
|
import "./standards-sdk.es129.js";
|
|
15
16
|
import "viem/accounts";
|
|
@@ -18,7 +19,6 @@ import "x402-axios";
|
|
|
18
19
|
import "x402/types";
|
|
19
20
|
import "./standards-sdk.es135.js";
|
|
20
21
|
import "zod";
|
|
21
|
-
import "node:module";
|
|
22
22
|
import "buffer";
|
|
23
23
|
import "ethers";
|
|
24
24
|
import "./standards-sdk.es122.js";
|
|
@@ -6,6 +6,7 @@ import { ProgressReporter } from "./standards-sdk.es108.js";
|
|
|
6
6
|
import "node:path";
|
|
7
7
|
import "node:buffer";
|
|
8
8
|
import "node:crypto";
|
|
9
|
+
import "node:module";
|
|
9
10
|
import "@noble/curves/secp256k1.js";
|
|
10
11
|
import "./standards-sdk.es129.js";
|
|
11
12
|
import "viem/accounts";
|
|
@@ -14,7 +15,6 @@ import "x402-axios";
|
|
|
14
15
|
import "x402/types";
|
|
15
16
|
import "./standards-sdk.es135.js";
|
|
16
17
|
import "zod";
|
|
17
|
-
import "node:module";
|
|
18
18
|
import "buffer";
|
|
19
19
|
import "ethers";
|
|
20
20
|
import "./standards-sdk.es122.js";
|
|
@@ -8,6 +8,7 @@ import "axios";
|
|
|
8
8
|
import "node:path";
|
|
9
9
|
import "node:buffer";
|
|
10
10
|
import "node:crypto";
|
|
11
|
+
import "node:module";
|
|
11
12
|
import "@noble/curves/secp256k1.js";
|
|
12
13
|
import "./standards-sdk.es129.js";
|
|
13
14
|
import "viem/accounts";
|
|
@@ -16,7 +17,6 @@ import "x402-axios";
|
|
|
16
17
|
import "x402/types";
|
|
17
18
|
import "./standards-sdk.es135.js";
|
|
18
19
|
import { z } from "zod";
|
|
19
|
-
import "node:module";
|
|
20
20
|
import "@hashgraph/proto";
|
|
21
21
|
import "buffer";
|
|
22
22
|
import "ethers";
|
|
@@ -3,6 +3,7 @@ import { HederaMirrorNode } from "./standards-sdk.es126.js";
|
|
|
3
3
|
import "node:path";
|
|
4
4
|
import "node:buffer";
|
|
5
5
|
import "node:crypto";
|
|
6
|
+
import "node:module";
|
|
6
7
|
import "@noble/curves/secp256k1.js";
|
|
7
8
|
import "./standards-sdk.es129.js";
|
|
8
9
|
import "axios";
|
|
@@ -12,7 +13,6 @@ import "x402-axios";
|
|
|
12
13
|
import "x402/types";
|
|
13
14
|
import "./standards-sdk.es135.js";
|
|
14
15
|
import "zod";
|
|
15
|
-
import "node:module";
|
|
16
16
|
import "./standards-sdk.es136.js";
|
|
17
17
|
import "@hashgraph/proto";
|
|
18
18
|
import "buffer";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getCryptoAdapter } from "./standards-sdk.es119.js";
|
|
2
|
-
import { base58Encode } from "./standards-sdk.
|
|
2
|
+
import { base58Encode } from "./standards-sdk.es139.js";
|
|
3
3
|
import { canonicalizeAgentData } from "./standards-sdk.es56.js";
|
|
4
4
|
function encodeMultibaseB58btc(input) {
|
|
5
5
|
const bytes = Buffer.from(input, "utf8");
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HieroDidResolver } from "./standards-sdk.es60.js";
|
|
2
2
|
import { parseHcs14Did } from "./standards-sdk.es57.js";
|
|
3
|
-
import { multibaseB58btcDecode } from "./standards-sdk.
|
|
3
|
+
import { multibaseB58btcDecode } from "./standards-sdk.es139.js";
|
|
4
4
|
class ResolverRegistry {
|
|
5
5
|
constructor() {
|
|
6
6
|
this.resolvers = [];
|
|
@@ -13,6 +13,7 @@ import "axios";
|
|
|
13
13
|
import "node:path";
|
|
14
14
|
import "node:buffer";
|
|
15
15
|
import "node:crypto";
|
|
16
|
+
import "node:module";
|
|
16
17
|
import "@noble/curves/secp256k1.js";
|
|
17
18
|
import "./standards-sdk.es129.js";
|
|
18
19
|
import "viem/accounts";
|
|
@@ -21,7 +22,6 @@ import "x402-axios";
|
|
|
21
22
|
import "x402/types";
|
|
22
23
|
import "./standards-sdk.es135.js";
|
|
23
24
|
import "zod";
|
|
24
|
-
import "node:module";
|
|
25
25
|
import "@hashgraph/proto";
|
|
26
26
|
import "buffer";
|
|
27
27
|
import "ethers";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HCS5BaseClient } from "./standards-sdk.
|
|
1
|
+
import { HCS5BaseClient } from "./standards-sdk.es147.js";
|
|
2
2
|
import { buildHcs1Hrl } from "./standards-sdk.es64.js";
|
|
3
3
|
import { PrivateKey } from "@hashgraph/sdk";
|
|
4
4
|
import { inscribeWithSigner } from "./standards-sdk.es124.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HCS5BaseClient } from "./standards-sdk.
|
|
1
|
+
import { HCS5BaseClient } from "./standards-sdk.es147.js";
|
|
2
2
|
import { buildHcs1Hrl } from "./standards-sdk.es64.js";
|
|
3
3
|
import { AccountId } from "@hashgraph/sdk";
|
|
4
4
|
import { inscribe } from "./standards-sdk.es124.js";
|
|
@@ -3,6 +3,7 @@ import { HederaMirrorNode } from "./standards-sdk.es126.js";
|
|
|
3
3
|
import "node:path";
|
|
4
4
|
import "node:buffer";
|
|
5
5
|
import "node:crypto";
|
|
6
|
+
import "node:module";
|
|
6
7
|
import "@noble/curves/secp256k1.js";
|
|
7
8
|
import "./standards-sdk.es129.js";
|
|
8
9
|
import "axios";
|
|
@@ -12,7 +13,6 @@ import "x402-axios";
|
|
|
12
13
|
import "x402/types";
|
|
13
14
|
import "./standards-sdk.es135.js";
|
|
14
15
|
import "zod";
|
|
15
|
-
import "node:module";
|
|
16
16
|
import { HCS20_CONSTANTS, HCS20MessageSchema } from "./standards-sdk.es73.js";
|
|
17
17
|
class HCS20PointsIndexer {
|
|
18
18
|
constructor(network, logger, mirrorNodeUrl) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hashgraphonline/standards-sdk",
|
|
3
|
-
"version": "0.1.141-canary.
|
|
3
|
+
"version": "0.1.141-canary.8",
|
|
4
4
|
"description": "The Hashgraph Online Standards SDK provides a complete implementation of the Hashgraph Consensus Standards (HCS), giving developers all the tools needed to build applications on Hedera.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -45,6 +45,66 @@
|
|
|
45
45
|
"default": "./dist/es/standards-sdk.es.js"
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"clean": "rimraf dist",
|
|
50
|
+
"build:es": "BUILD_FORMAT=es vite build",
|
|
51
|
+
"build:umd": "BUILD_FORMAT=umd vite build",
|
|
52
|
+
"build:cjs": "BUILD_FORMAT=cjs vite build",
|
|
53
|
+
"build": "npm run clean && npm run build:es && npm run build:cjs",
|
|
54
|
+
"cli": "([ -d cli/standards-cli/node_modules ] || pnpm --dir cli/standards-cli install) && pnpm --dir cli/standards-cli start",
|
|
55
|
+
"cli:build": "([ -d cli/standards-cli/node_modules ] || pnpm --dir cli/standards-cli install) && pnpm --dir cli/standards-cli build",
|
|
56
|
+
"cli:install": "pnpm --dir cli/standards-cli install",
|
|
57
|
+
"prepublishOnly": "npm run build",
|
|
58
|
+
"release": "npm publish --access public",
|
|
59
|
+
"release:canary": "npm run prepublishOnly && npm publish --tag canary --access public",
|
|
60
|
+
"version:canary": "npm version prerelease --preid canary --no-git-tag-version",
|
|
61
|
+
"publish:canary": "npm run version:canary && npm run release:canary",
|
|
62
|
+
"demo:inscribe": "tsx demo/inscribe-demo.ts",
|
|
63
|
+
"demo:hcs-10": "tsx demo/hcs-10/index.ts",
|
|
64
|
+
"demo:fee": "tsx demo/hcs-10/fee-demo.ts",
|
|
65
|
+
"demo:transact": "tsx demo/hcs-10/transact-demo.ts",
|
|
66
|
+
"demo:transact-agent": "tsx demo/hcs-10/transact-agent.ts",
|
|
67
|
+
"demo:polling-agent": "tsx demo/hcs-10/polling-agent.ts",
|
|
68
|
+
"demo:connection-manager": "tsx demo/hcs-10/connection-manager.ts",
|
|
69
|
+
"demo:hrl-content": "tsx demo/hrl-content-demo.ts",
|
|
70
|
+
"demo:hcs-14:issue-resolve": "tsx demo/hcs-14/issue-and-resolve-did.ts",
|
|
71
|
+
"demo:hcs12": "tsx demo/hcs-12/hcs12-demo.ts",
|
|
72
|
+
"demo:mcp-chat": "tsx demo/hcs-10/create-mcp.ts",
|
|
73
|
+
"demo:hcs-2:create": "tsx demo/hcs-2/create-registry.ts",
|
|
74
|
+
"demo:hcs-6": "tsx demo/hcs-6/dynamic-hashinal-demo.ts",
|
|
75
|
+
"demo:hcs-6:create-registry": "tsx demo/hcs-6/create-registry.ts",
|
|
76
|
+
"demo:hcs-6:query-registry": "tsx demo/hcs-6/query-registry.ts",
|
|
77
|
+
"demo:hcs-6:mint": "tsx demo/hcs-6/mint-hashinal.ts",
|
|
78
|
+
"demo:hcs-17": "tsx demo/hcs-17/state-hash-demo.ts",
|
|
79
|
+
"demo:hcs-7:create": "tsx demo/hcs-7/create-hcs-7-topic.ts",
|
|
80
|
+
"demo:hcs-15": "tsx demo/hcs-15/petal-accounts-demo.ts",
|
|
81
|
+
"demo:hcs-10:create-registry": "tsx demo/hcs-10/create-registry.ts",
|
|
82
|
+
"demo:hcs-16:create-flora": "tsx demo/hcs-16/create-flora-demo.ts",
|
|
83
|
+
"demo:hcs-11:profile": "tsx demo/hcs-11/inscribe-profile-with-uaid.ts",
|
|
84
|
+
"demo:hcs-11:resolve-uaid": "tsx demo/hcs-11/resolve-profile-uaid.ts",
|
|
85
|
+
"demo:hcs-20:deploy-and-mint": "tsx demo/hcs-20/deploy-and-mint.ts",
|
|
86
|
+
"demo:hcs-20:deploy-points": "tsx demo/hcs-20/deploy-points.ts",
|
|
87
|
+
"demo:hcs-20:mint-transfer-burn": "tsx demo/hcs-20/mint-transfer-burn.ts",
|
|
88
|
+
"demo:hcs-21": "tsx demo/hcs-21/package-declaration-demo.ts",
|
|
89
|
+
"demo:hcs-6:browser": "pnpm run build && pnpm --dir demo/hcs-6/browser i && pnpm --dir demo/hcs-6/browser dev",
|
|
90
|
+
"demo:hcs-5": "tsx demo/hcs-5/mint-hashinal.ts",
|
|
91
|
+
"demo:registry-broker": "tsx demo/registry-broker/registry-broker-demo.ts",
|
|
92
|
+
"demo:registry-broker-history": "tsx demo/registry-broker/registry-broker-history-demo.ts",
|
|
93
|
+
"demo:registry-broker-erc8004": "tsx demo/registry-broker/registry-broker-erc8004-demo.ts",
|
|
94
|
+
"demo:registry-broker-agentverse": "tsx demo/registry-broker/registry-broker-agentverse-demo.ts",
|
|
95
|
+
"demo:registry-broker-ping": "tsx demo/registry-broker/ping-agent-demo.ts",
|
|
96
|
+
"demo:registry-broker-x402": "tsx demo/registry-broker/registry-broker-x402-demo.ts",
|
|
97
|
+
"demo:registry-broker-erc8004-x402": "tsx demo/registry-broker/registry-broker-erc8004-x402-demo.ts",
|
|
98
|
+
"demo:registry-broker-x402-topup": "tsx demo/registry-broker/registry-broker-x402-topup.ts",
|
|
99
|
+
"watch": "nodemon --watch src --ext ts,tsx --exec \"npm run build && yalc push\"",
|
|
100
|
+
"test": "jest",
|
|
101
|
+
"test:unit-list": "jest --listTests --testPathPattern __tests__/utils/ --testPathPattern __tests__/services/ --testPathPattern __tests__/content-store/ --testPathPattern __tests__/fees/ --testPathPattern __tests__/common/tx/",
|
|
102
|
+
"test:unit-fast": "jest --coverage --runInBand --detectOpenHandles --testPathPattern __tests__/utils/ --testPathPattern __tests__/services/ --testPathPattern __tests__/content-store/ --testPathPattern __tests__/fees/ --testPathPattern __tests__/common/tx/",
|
|
103
|
+
"lint": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\" \"demo/**/*.{ts,tsx,js,jsx,json}\" \"__tests__/**/*.{ts,tsx,js,jsx,json}\"",
|
|
104
|
+
"lint:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\" \"demo/**/*.{ts,tsx,js,jsx,json}\" \"__tests__/**/*.{ts,tsx,js,jsx,json}\"",
|
|
105
|
+
"format": "npm run lint:fix",
|
|
106
|
+
"format:check": "npm run lint"
|
|
107
|
+
},
|
|
48
108
|
"devDependencies": {
|
|
49
109
|
"@hashgraphonline/conversational-agent": "0.2.104",
|
|
50
110
|
"@swc/jest": "^0.2.39",
|
|
@@ -105,63 +165,5 @@
|
|
|
105
165
|
"@hashgraphonline/standards-sdk": "0.1.132",
|
|
106
166
|
"@hashgraph/sdk": "^2.77.0"
|
|
107
167
|
},
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
"build:es": "BUILD_FORMAT=es vite build",
|
|
111
|
-
"build:umd": "BUILD_FORMAT=umd vite build",
|
|
112
|
-
"build:cjs": "BUILD_FORMAT=cjs vite build",
|
|
113
|
-
"build": "npm run clean && npm run build:es && npm run build:cjs",
|
|
114
|
-
"cli": "([ -d cli/standards-cli/node_modules ] || pnpm --dir cli/standards-cli install) && pnpm --dir cli/standards-cli start",
|
|
115
|
-
"cli:build": "([ -d cli/standards-cli/node_modules ] || pnpm --dir cli/standards-cli install) && pnpm --dir cli/standards-cli build",
|
|
116
|
-
"cli:install": "pnpm --dir cli/standards-cli install",
|
|
117
|
-
"release": "npm publish --access public",
|
|
118
|
-
"release:canary": "npm run prepublishOnly && npm publish --tag canary --access public",
|
|
119
|
-
"version:canary": "npm version prerelease --preid canary --no-git-tag-version",
|
|
120
|
-
"publish:canary": "npm run version:canary && npm run release:canary",
|
|
121
|
-
"demo:inscribe": "tsx demo/inscribe-demo.ts",
|
|
122
|
-
"demo:hcs-10": "tsx demo/hcs-10/index.ts",
|
|
123
|
-
"demo:fee": "tsx demo/hcs-10/fee-demo.ts",
|
|
124
|
-
"demo:transact": "tsx demo/hcs-10/transact-demo.ts",
|
|
125
|
-
"demo:transact-agent": "tsx demo/hcs-10/transact-agent.ts",
|
|
126
|
-
"demo:polling-agent": "tsx demo/hcs-10/polling-agent.ts",
|
|
127
|
-
"demo:connection-manager": "tsx demo/hcs-10/connection-manager.ts",
|
|
128
|
-
"demo:hrl-content": "tsx demo/hrl-content-demo.ts",
|
|
129
|
-
"demo:hcs-14:issue-resolve": "tsx demo/hcs-14/issue-and-resolve-did.ts",
|
|
130
|
-
"demo:hcs12": "tsx demo/hcs-12/hcs12-demo.ts",
|
|
131
|
-
"demo:mcp-chat": "tsx demo/hcs-10/create-mcp.ts",
|
|
132
|
-
"demo:hcs-2:create": "tsx demo/hcs-2/create-registry.ts",
|
|
133
|
-
"demo:hcs-6": "tsx demo/hcs-6/dynamic-hashinal-demo.ts",
|
|
134
|
-
"demo:hcs-6:create-registry": "tsx demo/hcs-6/create-registry.ts",
|
|
135
|
-
"demo:hcs-6:query-registry": "tsx demo/hcs-6/query-registry.ts",
|
|
136
|
-
"demo:hcs-6:mint": "tsx demo/hcs-6/mint-hashinal.ts",
|
|
137
|
-
"demo:hcs-17": "tsx demo/hcs-17/state-hash-demo.ts",
|
|
138
|
-
"demo:hcs-7:create": "tsx demo/hcs-7/create-hcs-7-topic.ts",
|
|
139
|
-
"demo:hcs-15": "tsx demo/hcs-15/petal-accounts-demo.ts",
|
|
140
|
-
"demo:hcs-10:create-registry": "tsx demo/hcs-10/create-registry.ts",
|
|
141
|
-
"demo:hcs-16:create-flora": "tsx demo/hcs-16/create-flora-demo.ts",
|
|
142
|
-
"demo:hcs-11:profile": "tsx demo/hcs-11/inscribe-profile-with-uaid.ts",
|
|
143
|
-
"demo:hcs-11:resolve-uaid": "tsx demo/hcs-11/resolve-profile-uaid.ts",
|
|
144
|
-
"demo:hcs-20:deploy-and-mint": "tsx demo/hcs-20/deploy-and-mint.ts",
|
|
145
|
-
"demo:hcs-20:deploy-points": "tsx demo/hcs-20/deploy-points.ts",
|
|
146
|
-
"demo:hcs-20:mint-transfer-burn": "tsx demo/hcs-20/mint-transfer-burn.ts",
|
|
147
|
-
"demo:hcs-21": "tsx demo/hcs-21/package-declaration-demo.ts",
|
|
148
|
-
"demo:hcs-6:browser": "pnpm run build && pnpm --dir demo/hcs-6/browser i && pnpm --dir demo/hcs-6/browser dev",
|
|
149
|
-
"demo:hcs-5": "tsx demo/hcs-5/mint-hashinal.ts",
|
|
150
|
-
"demo:registry-broker": "tsx demo/registry-broker/registry-broker-demo.ts",
|
|
151
|
-
"demo:registry-broker-history": "tsx demo/registry-broker/registry-broker-history-demo.ts",
|
|
152
|
-
"demo:registry-broker-erc8004": "tsx demo/registry-broker/registry-broker-erc8004-demo.ts",
|
|
153
|
-
"demo:registry-broker-agentverse": "tsx demo/registry-broker/registry-broker-agentverse-demo.ts",
|
|
154
|
-
"demo:registry-broker-ping": "tsx demo/registry-broker/ping-agent-demo.ts",
|
|
155
|
-
"demo:registry-broker-x402": "tsx demo/registry-broker/registry-broker-x402-demo.ts",
|
|
156
|
-
"demo:registry-broker-erc8004-x402": "tsx demo/registry-broker/registry-broker-erc8004-x402-demo.ts",
|
|
157
|
-
"demo:registry-broker-x402-topup": "tsx demo/registry-broker/registry-broker-x402-topup.ts",
|
|
158
|
-
"watch": "nodemon --watch src --ext ts,tsx --exec \"npm run build && yalc push\"",
|
|
159
|
-
"test": "jest",
|
|
160
|
-
"test:unit-list": "jest --listTests --testPathPattern __tests__/utils/ --testPathPattern __tests__/services/ --testPathPattern __tests__/content-store/ --testPathPattern __tests__/fees/ --testPathPattern __tests__/common/tx/",
|
|
161
|
-
"test:unit-fast": "jest --coverage --runInBand --detectOpenHandles --testPathPattern __tests__/utils/ --testPathPattern __tests__/services/ --testPathPattern __tests__/content-store/ --testPathPattern __tests__/fees/ --testPathPattern __tests__/common/tx/",
|
|
162
|
-
"lint": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\" \"demo/**/*.{ts,tsx,js,jsx,json}\" \"__tests__/**/*.{ts,tsx,js,jsx,json}\"",
|
|
163
|
-
"lint:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\" \"demo/**/*.{ts,tsx,js,jsx,json}\" \"__tests__/**/*.{ts,tsx,js,jsx,json}\"",
|
|
164
|
-
"format": "npm run lint:fix",
|
|
165
|
-
"format:check": "npm run lint"
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
+
"packageManager": "pnpm@10.11.1+sha512.e519b9f7639869dc8d5c3c5dfef73b3f091094b0a006d7317353c72b124e80e1afd429732e28705ad6bfa1ee879c1fce46c128ccebd3192101f43dd67c667912"
|
|
169
|
+
}
|