@hashgraphonline/standards-sdk 0.1.141-canary.39 → 0.1.141-canary.40

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 (69) hide show
  1. package/dist/cjs/inscribe/inscriber.d.ts.map +1 -1
  2. package/dist/cjs/standards-sdk.cjs.map +1 -1
  3. package/dist/es/inscribe/inscriber.d.ts.map +1 -1
  4. package/dist/es/standards-sdk.es100.js +1 -1
  5. package/dist/es/standards-sdk.es102.js +1 -1
  6. package/dist/es/standards-sdk.es104.js +1 -1
  7. package/dist/es/standards-sdk.es110.js +1 -1
  8. package/dist/es/standards-sdk.es111.js +5 -5
  9. package/dist/es/standards-sdk.es12.js +1 -1
  10. package/dist/es/standards-sdk.es121.js +1 -1
  11. package/dist/es/standards-sdk.es122.js +1 -1
  12. package/dist/es/standards-sdk.es123.js +5 -5
  13. package/dist/es/standards-sdk.es125.js +1 -1
  14. package/dist/es/standards-sdk.es125.js.map +1 -1
  15. package/dist/es/standards-sdk.es126.js +1 -1
  16. package/dist/es/standards-sdk.es128.js +1 -1
  17. package/dist/es/standards-sdk.es13.js +1 -1
  18. package/dist/es/standards-sdk.es136.js +138 -766
  19. package/dist/es/standards-sdk.es136.js.map +1 -1
  20. package/dist/es/standards-sdk.es137.js +34 -12266
  21. package/dist/es/standards-sdk.es137.js.map +1 -1
  22. package/dist/es/standards-sdk.es138.js +12241 -105
  23. package/dist/es/standards-sdk.es138.js.map +1 -1
  24. package/dist/es/standards-sdk.es139.js +766 -42
  25. package/dist/es/standards-sdk.es139.js.map +1 -1
  26. package/dist/es/standards-sdk.es140.js +168 -13
  27. package/dist/es/standards-sdk.es140.js.map +1 -1
  28. package/dist/es/standards-sdk.es141.js +289 -139
  29. package/dist/es/standards-sdk.es141.js.map +1 -1
  30. package/dist/es/standards-sdk.es142.js +298 -274
  31. package/dist/es/standards-sdk.es142.js.map +1 -1
  32. package/dist/es/standards-sdk.es143.js +369 -262
  33. package/dist/es/standards-sdk.es143.js.map +1 -1
  34. package/dist/es/standards-sdk.es144.js +194 -316
  35. package/dist/es/standards-sdk.es144.js.map +1 -1
  36. package/dist/es/standards-sdk.es145.js +64 -319
  37. package/dist/es/standards-sdk.es145.js.map +1 -1
  38. package/dist/es/standards-sdk.es146.js +15 -74
  39. package/dist/es/standards-sdk.es146.js.map +1 -1
  40. package/dist/es/standards-sdk.es17.js +1 -1
  41. package/dist/es/standards-sdk.es19.js +4 -4
  42. package/dist/es/standards-sdk.es2.js.map +1 -1
  43. package/dist/es/standards-sdk.es20.js +2 -2
  44. package/dist/es/standards-sdk.es23.js +1 -1
  45. package/dist/es/standards-sdk.es28.js +3 -3
  46. package/dist/es/standards-sdk.es31.js +1 -1
  47. package/dist/es/standards-sdk.es32.js +1 -1
  48. package/dist/es/standards-sdk.es36.js +2 -2
  49. package/dist/es/standards-sdk.es37.js +3 -3
  50. package/dist/es/standards-sdk.es38.js +1 -1
  51. package/dist/es/standards-sdk.es5.js +1 -1
  52. package/dist/es/standards-sdk.es54.js +1 -1
  53. package/dist/es/standards-sdk.es61.js +2 -2
  54. package/dist/es/standards-sdk.es65.js +1 -1
  55. package/dist/es/standards-sdk.es66.js +2 -2
  56. package/dist/es/standards-sdk.es69.js +2 -2
  57. package/dist/es/standards-sdk.es70.js +1 -1
  58. package/dist/es/standards-sdk.es72.js +1 -1
  59. package/dist/es/standards-sdk.es77.js +1 -1
  60. package/dist/es/standards-sdk.es78.js +1 -1
  61. package/dist/es/standards-sdk.es79.js +1 -1
  62. package/dist/es/standards-sdk.es8.js +1 -1
  63. package/dist/es/standards-sdk.es82.js +1 -1
  64. package/dist/es/standards-sdk.es84.js +1 -1
  65. package/dist/es/standards-sdk.es88.js +1 -1
  66. package/dist/es/standards-sdk.es92.js +1 -1
  67. package/dist/es/standards-sdk.es93.js +1 -1
  68. package/dist/es/standards-sdk.es98.js +1 -1
  69. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"standards-sdk.es146.js","sources":["../../src/utils/parsers/parser-utils.ts"],"sourcesContent":["import { proto } from '@hashgraph/proto';\nimport { ContractId, Transaction } from '@hashgraph/sdk';\nimport { Buffer } from 'buffer';\n\nexport function parseKey(\n key: proto.IKey | null | undefined,\n): string | undefined {\n if (!key) {\n return undefined;\n }\n\n if (key.contractID) {\n return `ContractID: ${new ContractId(\n key.contractID.shardNum ?? 0,\n key.contractID.realmNum ?? 0,\n key.contractID.contractNum ?? 0,\n ).toString()}`;\n }\n if (key.ed25519) {\n return `ED25519: ${Buffer.from(key.ed25519).toString('hex')}`;\n }\n if (key.ECDSASecp256k1) {\n return `ECDSA_secp256k1: ${Buffer.from(key.ECDSASecp256k1).toString(\n 'hex',\n )}`;\n }\n if (key?.keyList?.keys?.length > 0) {\n const keys = key.keyList.keys.map(k => parseKey(k)).filter(Boolean);\n return `KeyList (${keys.length} keys): [${keys.join(', ')}]`;\n }\n if (key?.thresholdKey?.keys?.keys?.length > 0) {\n const keys = key.thresholdKey.keys.keys\n .map(k => parseKey(k))\n .filter(Boolean);\n return `ThresholdKey (${key.thresholdKey.threshold} of ${\n keys.length\n }): [${keys.join(', ')}]`;\n }\n if (key.delegatableContractId) {\n return `DelegatableContractID: ${new ContractId(\n key.delegatableContractId.shardNum ?? 0,\n key.delegatableContractId.realmNum ?? 0,\n key.delegatableContractId.contractNum ?? 0,\n ).toString()}`;\n }\n if (Object.keys(key).length === 0) {\n return 'Empty Key Structure';\n }\n\n return 'Unknown or Unset Key Type';\n}\n\n/**\n * Extract TransactionBody from Transaction object using protobuf parsing\n * This replaces fragile constructor name checking with reliable protobuf data\n */\nexport function extractTransactionBody(\n transaction: Transaction,\n): proto.ITransactionBody | null {\n try {\n const bytes = transaction.toBytes ? transaction.toBytes() : undefined;\n if (!bytes) {\n return null;\n }\n\n const decoded = proto.TransactionList.decode(bytes);\n if (!decoded.transactionList || decoded.transactionList.length === 0) {\n return null;\n }\n\n const tx = decoded.transactionList[0];\n\n if (tx.bodyBytes && tx.bodyBytes.length > 0) {\n return proto.TransactionBody.decode(tx.bodyBytes);\n }\n\n if (tx.signedTransactionBytes && tx.signedTransactionBytes.length > 0) {\n const signedTx = proto.SignedTransaction.decode(\n tx.signedTransactionBytes,\n );\n if (signedTx.bodyBytes) {\n return proto.TransactionBody.decode(signedTx.bodyBytes);\n }\n }\n\n return null;\n } catch (error) {\n return null;\n }\n}\n\n/**\n * Check if transaction has specific transaction type using protobuf data\n * This replaces constructor name checking with reliable protobuf field detection\n */\nexport function hasTransactionType(\n transaction: Transaction,\n transactionField: keyof proto.ITransactionBody,\n): boolean {\n const txBody = extractTransactionBody(transaction);\n return !!(txBody && txBody[transactionField]);\n}\n"],"names":[],"mappings":";;;AAIO,SAAS,SACd,KACoB;AACpB,MAAI,CAAC,KAAK;AACR,WAAO;AAAA,EACT;AAEA,MAAI,IAAI,YAAY;AAClB,WAAO,eAAe,IAAI;AAAA,MACxB,IAAI,WAAW,YAAY;AAAA,MAC3B,IAAI,WAAW,YAAY;AAAA,MAC3B,IAAI,WAAW,eAAe;AAAA,IAAA,EAC9B,UAAU;AAAA,EACd;AACA,MAAI,IAAI,SAAS;AACf,WAAO,YAAY,OAAO,KAAK,IAAI,OAAO,EAAE,SAAS,KAAK,CAAC;AAAA,EAC7D;AACA,MAAI,IAAI,gBAAgB;AACtB,WAAO,oBAAoB,OAAO,KAAK,IAAI,cAAc,EAAE;AAAA,MACzD;AAAA,IAAA,CACD;AAAA,EACH;AACA,MAAI,KAAK,SAAS,MAAM,SAAS,GAAG;AAClC,UAAM,OAAO,IAAI,QAAQ,KAAK,IAAI,CAAA,MAAK,SAAS,CAAC,CAAC,EAAE,OAAO,OAAO;AAClE,WAAO,YAAY,KAAK,MAAM,YAAY,KAAK,KAAK,IAAI,CAAC;AAAA,EAC3D;AACA,MAAI,KAAK,cAAc,MAAM,MAAM,SAAS,GAAG;AAC7C,UAAM,OAAO,IAAI,aAAa,KAAK,KAChC,IAAI,CAAA,MAAK,SAAS,CAAC,CAAC,EACpB,OAAO,OAAO;AACjB,WAAO,iBAAiB,IAAI,aAAa,SAAS,OAChD,KAAK,MACP,OAAO,KAAK,KAAK,IAAI,CAAC;AAAA,EACxB;AACA,MAAI,IAAI,uBAAuB;AAC7B,WAAO,0BAA0B,IAAI;AAAA,MACnC,IAAI,sBAAsB,YAAY;AAAA,MACtC,IAAI,sBAAsB,YAAY;AAAA,MACtC,IAAI,sBAAsB,eAAe;AAAA,IAAA,EACzC,UAAU;AAAA,EACd;AACA,MAAI,OAAO,KAAK,GAAG,EAAE,WAAW,GAAG;AACjC,WAAO;AAAA,EACT;AAEA,SAAO;AACT;AAMO,SAAS,uBACd,aAC+B;AAC/B,MAAI;AACF,UAAM,QAAQ,YAAY,UAAU,YAAY,YAAY;AAC5D,QAAI,CAAC,OAAO;AACV,aAAO;AAAA,IACT;AAEA,UAAM,UAAU,MAAM,gBAAgB,OAAO,KAAK;AAClD,QAAI,CAAC,QAAQ,mBAAmB,QAAQ,gBAAgB,WAAW,GAAG;AACpE,aAAO;AAAA,IACT;AAEA,UAAM,KAAK,QAAQ,gBAAgB,CAAC;AAEpC,QAAI,GAAG,aAAa,GAAG,UAAU,SAAS,GAAG;AAC3C,aAAO,MAAM,gBAAgB,OAAO,GAAG,SAAS;AAAA,IAClD;AAEA,QAAI,GAAG,0BAA0B,GAAG,uBAAuB,SAAS,GAAG;AACrE,YAAM,WAAW,MAAM,kBAAkB;AAAA,QACvC,GAAG;AAAA,MAAA;AAEL,UAAI,SAAS,WAAW;AACtB,eAAO,MAAM,gBAAgB,OAAO,SAAS,SAAS;AAAA,MACxD;AAAA,IACF;AAEA,WAAO;AAAA,EACT,SAAS,OAAO;AACd,WAAO;AAAA,EACT;AACF;AAMO,SAAS,mBACd,aACA,kBACS;AACT,QAAM,SAAS,uBAAuB,WAAW;AACjD,SAAO,CAAC,EAAE,UAAU,OAAO,gBAAgB;AAC7C;"}
1
+ {"version":3,"file":"standards-sdk.es146.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;"}
@@ -8,7 +8,7 @@ import "node:buffer";
8
8
  import "node:crypto";
9
9
  import "@noble/curves/secp256k1.js";
10
10
  import "./standards-sdk.es130.js";
11
- import "./standards-sdk.es136.js";
11
+ import "./standards-sdk.es139.js";
12
12
  import "zod";
13
13
  import { buildHcs10SubmitConnectionRequestTx, buildHcs10OutboundConnectionRequestRecordTx, buildHcs10OutboundConnectionCreatedRecordTx } from "./standards-sdk.es23.js";
14
14
  import { HRLResolver } from "./standards-sdk.es110.js";
@@ -1,7 +1,7 @@
1
1
  import "./standards-sdk.es2.js";
2
2
  import { Client, PrivateKey, AccountCreateTransaction, Hbar, CustomFixedFee, AccountId, TokenId, KeyList, TopicMessageSubmitTransaction, Transaction, ScheduleCreateTransaction, Timestamp } from "@hashgraph/sdk";
3
3
  import { AccountCreationError, TopicCreationError, ConnectionConfirmationError, PayloadSizeError } from "./standards-sdk.es18.js";
4
- import { InscriptionSDK } from "./standards-sdk.es137.js";
4
+ import { InscriptionSDK } from "./standards-sdk.es138.js";
5
5
  import { Logger } from "./standards-sdk.es106.js";
6
6
  import { accountIdsToExemptKeys } from "./standards-sdk.es108.js";
7
7
  import { ProgressReporter } from "./standards-sdk.es109.js";
@@ -12,14 +12,14 @@ import "node:buffer";
12
12
  import "node:crypto";
13
13
  import "@noble/curves/secp256k1.js";
14
14
  import "./standards-sdk.es130.js";
15
- import "./standards-sdk.es136.js";
15
+ import "./standards-sdk.es139.js";
16
16
  import "zod";
17
17
  import "buffer";
18
18
  import "ethers";
19
19
  import "./standards-sdk.es123.js";
20
20
  import { detectKeyTypeFromString } from "./standards-sdk.es114.js";
21
21
  import { getTopicId } from "./standards-sdk.es115.js";
22
- import { createNodeOperatorContext, NodeOperatorResolver } from "./standards-sdk.es138.js";
22
+ import { createNodeOperatorContext, NodeOperatorResolver } from "./standards-sdk.es136.js";
23
23
  import { HCS10BaseClient, Hcs10MemoType } from "./standards-sdk.es17.js";
24
24
  import * as mime from "mime-types";
25
25
  import { AgentBuilder } from "./standards-sdk.es24.js";
@@ -27,7 +27,7 @@ import { InboundTopicType } from "./standards-sdk.es29.js";
27
27
  import { HCS11Client } from "./standards-sdk.es28.js";
28
28
  import { inscribe } from "./standards-sdk.es125.js";
29
29
  import { addSeconds } from "date-fns";
30
- import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es139.js";
30
+ import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es137.js";
31
31
  import { buildHcs10CreateInboundTopicTx, buildHcs10CreateConnectionTopicTx, buildHcs10ConfirmConnectionTx, buildHcs10SendMessageTx, buildHcs10RegistryRegisterTx, buildHcs10CreateOutboundTopicTx, buildHcs10CreateRegistryTopicTx } from "./standards-sdk.es23.js";
32
32
  class HCS10Client extends HCS10BaseClient {
33
33
  constructor(config) {
@@ -1 +1 @@
1
- {"version":3,"file":"standards-sdk.es2.js","sources":["../../src/patches/topic-autorenew-patch.ts"],"sourcesContent":["type TopicCreateTransactionCtor =\n (typeof import('@hashgraph/sdk'))['TopicCreateTransaction'];\ntype AccountIdCtor = (typeof import('@hashgraph/sdk'))['AccountId'];\ntype AccountIdInstance = InstanceType<AccountIdCtor>;\ntype NodeRequire = (moduleId: string) => unknown;\ntype ModuleConstructor = {\n createRequire?: (url: string | URL | undefined) => NodeRequire;\n};\n\ndeclare const module: ModuleConstructor | undefined;\ndeclare const require: NodeRequire | undefined;\n\nconst accountIdPattern = /^\\d+\\.\\d+\\.\\d+$/u;\nconst prototypeMarker = Symbol.for('standards-sdk.topic-auto-renew.patch');\nconst accountMarker = Symbol.for('standards-sdk.account-id.patch');\n\nconst nodeRequire = getNodeRequire();\n\nif (nodeRequire) {\n bootstrap(nodeRequire);\n} else {\n Reflect.set(globalThis, '__standardsSdkTopicAutoRenewPatched', false);\n}\n\nfunction bootstrap(requireFn: NodeRequire): void {\n const accountModule = safeRequire<{ default: AccountIdCtor }>(\n requireFn,\n '@hashgraph/sdk/lib/account/AccountId.cjs',\n );\n const topicModule = safeRequire<{ default: TopicCreateTransactionCtor }>(\n requireFn,\n '@hashgraph/sdk/lib/topic/TopicCreateTransaction.cjs',\n );\n const sdkModule = safeRequire<{\n AccountId?: AccountIdCtor;\n TopicCreateTransaction?: TopicCreateTransactionCtor;\n default?: {\n AccountId?: AccountIdCtor;\n TopicCreateTransaction?: TopicCreateTransactionCtor;\n };\n }>(requireFn, '@hashgraph/sdk');\n\n const candidates: Array<{\n accountId?: AccountIdCtor;\n topic?: TopicCreateTransactionCtor;\n }> = [];\n\n if (accountModule?.default && topicModule?.default) {\n candidates.push({\n accountId: accountModule.default,\n topic: topicModule.default,\n });\n }\n\n if (sdkModule) {\n candidates.push({\n accountId: sdkModule.AccountId ?? sdkModule.default?.AccountId,\n topic:\n sdkModule.TopicCreateTransaction ??\n sdkModule.default?.TopicCreateTransaction,\n });\n }\n\n for (const candidate of candidates) {\n patchTopicModule(candidate.topic, candidate.accountId);\n }\n\n Reflect.set(globalThis, '__standardsSdkTopicAutoRenewPatched', true);\n}\n\nfunction getNodeRequire(): NodeRequire | null {\n const moduleConstructor = getModuleConstructor();\n\n if (moduleConstructor?.createRequire) {\n try {\n return moduleConstructor.createRequire(import.meta.url);\n } catch {\n return null;\n }\n }\n\n if (typeof require === 'function') {\n return require;\n }\n\n return null;\n}\n\nfunction getModuleConstructor(): ModuleConstructor | null {\n try {\n if (typeof module !== 'undefined' && module?.createRequire) {\n return module;\n }\n } catch {}\n\n try {\n if (typeof require === 'function') {\n const requiredModule = require('module') as ModuleConstructor;\n\n if (requiredModule?.createRequire) {\n return requiredModule;\n }\n }\n } catch {}\n\n return null;\n}\n\nfunction safeRequire<T>(requireFn: NodeRequire, moduleId: string): T | null {\n try {\n return requireFn(moduleId) as T;\n } catch {\n return null;\n }\n}\n\nfunction patchTopicModule(\n topicCtor?: TopicCreateTransactionCtor,\n accountCtor?: AccountIdCtor,\n): void {\n if (!topicCtor || !accountCtor) {\n return;\n }\n\n patchAccountId(accountCtor);\n\n const prototype = topicCtor.prototype;\n\n if (Reflect.get(prototype, prototypeMarker)) {\n return;\n }\n\n const originalSet = prototype.setAutoRenewAccountId;\n const originalFreeze = prototype.freezeWith;\n\n prototype.setAutoRenewAccountId = function setAutoRenewAccountIdPatched(\n this: TopicPrototype,\n autoRenewAccountId: unknown,\n ) {\n const resolved = resolveAccountId(autoRenewAccountId, accountCtor);\n\n if (resolved) {\n requireNotFrozen(this);\n this._autoRenewAccountId = resolved;\n return this;\n }\n\n return originalSet.call(\n this,\n autoRenewAccountId as AccountIdInstance | string,\n );\n };\n\n prototype.freezeWith = function freezeWithPatched(\n this: TopicPrototype,\n client?: unknown,\n ) {\n if (\n !this.getAutoRenewAccountId ||\n typeof this.getAutoRenewAccountId !== 'function'\n ) {\n return originalFreeze.call(this, client);\n }\n\n const current = this.getAutoRenewAccountId();\n\n if (!current) {\n const transactionAccountId = this.transactionId?.accountId;\n const operatorAccountId = (client as ClientLike | null | undefined)\n ?.operatorAccountId;\n const resolved =\n resolveAccountId(transactionAccountId, accountCtor) ??\n resolveAccountId(operatorAccountId, accountCtor);\n\n if (resolved) {\n this._autoRenewAccountId = resolved;\n }\n }\n\n return originalFreeze.call(this, client);\n };\n\n Reflect.set(prototype, prototypeMarker, true);\n}\n\nfunction patchAccountId(accountCtor: AccountIdCtor): void {\n if (Reflect.get(accountCtor, accountMarker)) {\n return;\n }\n\n const originalFromString = accountCtor.fromString.bind(accountCtor);\n\n accountCtor.fromString = function accountIdFromStringPatched(\n value: unknown,\n ): AccountIdInstance {\n if (typeof value === 'string') {\n return originalFromString(value);\n }\n\n const extracted = extractAccountIdString(value);\n\n if (extracted) {\n return originalFromString(extracted);\n }\n\n if (isProtoAccountId(value)) {\n const shard = toNumericString(value.shard);\n const realm = toNumericString(value.realm);\n const num = toNumericString(value.num);\n\n if (shard && realm && num) {\n return originalFromString(`${shard}.${realm}.${num}`);\n }\n }\n\n return originalFromString(value as string);\n };\n\n Reflect.set(accountCtor, accountMarker, true);\n}\n\nfunction resolveAccountId(\n value: unknown,\n accountCtor: AccountIdCtor,\n): AccountIdInstance | null {\n if (value instanceof accountCtor) {\n return value;\n }\n\n if (typeof value === 'string' && accountIdPattern.test(value)) {\n return accountCtor.fromString(value);\n }\n\n const normalized = normalizeAutoRenewValue(value);\n\n if (normalized) {\n return accountCtor.fromString(normalized);\n }\n\n return null;\n}\n\nfunction normalizeAutoRenewValue(value: unknown): string | null {\n if (typeof value === 'string' && accountIdPattern.test(value)) {\n return value;\n }\n\n const extracted = extractAccountIdString(value);\n\n if (extracted) {\n return extracted;\n }\n\n if (isProtoAccountId(value)) {\n const shard = toNumericString(value.shard);\n const realm = toNumericString(value.realm);\n const num = toNumericString(value.num);\n\n if (shard && realm && num) {\n const composed = `${shard}.${realm}.${num}`;\n if (accountIdPattern.test(composed)) {\n return composed;\n }\n }\n }\n\n return null;\n}\n\nfunction extractAccountIdString(value: unknown): string | null {\n if (typeof value !== 'object' || value === null) {\n return null;\n }\n\n const candidate = value as { toString?: () => unknown };\n const method = candidate.toString;\n\n if (typeof method !== 'function') {\n return null;\n }\n\n const result = method.call(value);\n\n if (typeof result !== 'string') {\n return null;\n }\n\n return accountIdPattern.test(result) ? result : null;\n}\n\nfunction isProtoAccountId(value: unknown): value is {\n shard: { toString: () => string };\n realm: { toString: () => string };\n num: { toString: () => string };\n} {\n if (typeof value !== 'object' || value === null) {\n return false;\n }\n\n const candidate = value as Record<string, unknown>;\n\n return (\n hasToString(candidate.shard) &&\n hasToString(candidate.realm) &&\n hasToString(candidate.num)\n );\n}\n\nfunction hasToString(value: unknown): value is { toString: () => string } {\n return (\n typeof value === 'object' &&\n value !== null &&\n typeof (value as { toString?: unknown }).toString === 'function'\n );\n}\n\nfunction toNumericString(value: unknown): string | null {\n if (typeof value === 'number' && Number.isFinite(value)) {\n return String(Math.trunc(value));\n }\n\n if (typeof value === 'bigint') {\n return value.toString();\n }\n\n if (hasToString(value)) {\n const result = value.toString();\n if (/^\\d+$/u.test(result)) {\n return result;\n }\n }\n\n return null;\n}\n\nfunction requireNotFrozen(target: TopicPrototype): void {\n const candidate = target as { _requireNotFrozen?: () => void };\n candidate._requireNotFrozen?.();\n}\n\ntype ClientLike = {\n operatorAccountId?: unknown;\n};\n\ntype TopicPrototype = {\n setAutoRenewAccountId?: (...args: unknown[]) => unknown;\n freezeWith?: (...args: unknown[]) => unknown;\n getAutoRenewAccountId?: () => AccountIdInstance | null;\n transactionId?: { accountId?: unknown } | null;\n _autoRenewAccountId?: AccountIdInstance | null;\n [key: string]: unknown;\n};"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"standards-sdk.es2.js","sources":["../../src/patches/topic-autorenew-patch.ts"],"sourcesContent":["type TopicCreateTransactionCtor =\n (typeof import('@hashgraph/sdk'))['TopicCreateTransaction'];\ntype AccountIdCtor = (typeof import('@hashgraph/sdk'))['AccountId'];\ntype AccountIdInstance = InstanceType<AccountIdCtor>;\ntype NodeRequire = (moduleId: string) => unknown;\ntype ModuleConstructor = {\n createRequire?: (url: string | URL | undefined) => NodeRequire;\n};\n\ndeclare const module: ModuleConstructor | undefined;\ndeclare const require: NodeRequire | undefined;\n\nconst accountIdPattern = /^\\d+\\.\\d+\\.\\d+$/u;\nconst prototypeMarker = Symbol.for('standards-sdk.topic-auto-renew.patch');\nconst accountMarker = Symbol.for('standards-sdk.account-id.patch');\n\nconst nodeRequire = getNodeRequire();\n\nif (nodeRequire) {\n bootstrap(nodeRequire);\n} else {\n Reflect.set(globalThis, '__standardsSdkTopicAutoRenewPatched', false);\n}\n\nfunction bootstrap(requireFn: NodeRequire): void {\n const accountModule = safeRequire<{ default: AccountIdCtor }>(\n requireFn,\n '@hashgraph/sdk/lib/account/AccountId.cjs',\n );\n const topicModule = safeRequire<{ default: TopicCreateTransactionCtor }>(\n requireFn,\n '@hashgraph/sdk/lib/topic/TopicCreateTransaction.cjs',\n );\n const sdkModule = safeRequire<{\n AccountId?: AccountIdCtor;\n TopicCreateTransaction?: TopicCreateTransactionCtor;\n default?: {\n AccountId?: AccountIdCtor;\n TopicCreateTransaction?: TopicCreateTransactionCtor;\n };\n }>(requireFn, '@hashgraph/sdk');\n\n const candidates: Array<{\n accountId?: AccountIdCtor;\n topic?: TopicCreateTransactionCtor;\n }> = [];\n\n if (accountModule?.default && topicModule?.default) {\n candidates.push({\n accountId: accountModule.default,\n topic: topicModule.default,\n });\n }\n\n if (sdkModule) {\n candidates.push({\n accountId: sdkModule.AccountId ?? sdkModule.default?.AccountId,\n topic:\n sdkModule.TopicCreateTransaction ??\n sdkModule.default?.TopicCreateTransaction,\n });\n }\n\n for (const candidate of candidates) {\n patchTopicModule(candidate.topic, candidate.accountId);\n }\n\n Reflect.set(globalThis, '__standardsSdkTopicAutoRenewPatched', true);\n}\n\nfunction getNodeRequire(): NodeRequire | null {\n const moduleConstructor = getModuleConstructor();\n\n if (moduleConstructor?.createRequire) {\n try {\n return moduleConstructor.createRequire(import.meta.url);\n } catch {\n return null;\n }\n }\n\n if (typeof require === 'function') {\n return require;\n }\n\n return null;\n}\n\nfunction getModuleConstructor(): ModuleConstructor | null {\n try {\n if (typeof module !== 'undefined' && module?.createRequire) {\n return module;\n }\n } catch {}\n\n try {\n if (typeof require === 'function') {\n const requiredModule = require('module') as ModuleConstructor;\n\n if (requiredModule?.createRequire) {\n return requiredModule;\n }\n }\n } catch {}\n\n return null;\n}\n\nfunction safeRequire<T>(requireFn: NodeRequire, moduleId: string): T | null {\n try {\n return requireFn(moduleId) as T;\n } catch {\n return null;\n }\n}\n\nfunction patchTopicModule(\n topicCtor?: TopicCreateTransactionCtor,\n accountCtor?: AccountIdCtor,\n): void {\n if (!topicCtor || !accountCtor) {\n return;\n }\n\n patchAccountId(accountCtor);\n\n const prototype = topicCtor.prototype;\n\n if (Reflect.get(prototype, prototypeMarker)) {\n return;\n }\n\n const originalSet = prototype.setAutoRenewAccountId;\n const originalFreeze = prototype.freezeWith;\n\n prototype.setAutoRenewAccountId = function setAutoRenewAccountIdPatched(\n this: TopicPrototype,\n autoRenewAccountId: unknown,\n ) {\n const resolved = resolveAccountId(autoRenewAccountId, accountCtor);\n\n if (resolved) {\n requireNotFrozen(this);\n this._autoRenewAccountId = resolved;\n return this;\n }\n\n return originalSet.call(\n this,\n autoRenewAccountId as AccountIdInstance | string,\n );\n };\n\n prototype.freezeWith = function freezeWithPatched(\n this: TopicPrototype,\n client?: unknown,\n ) {\n if (\n !this.getAutoRenewAccountId ||\n typeof this.getAutoRenewAccountId !== 'function'\n ) {\n return originalFreeze.call(this, client);\n }\n\n const current = this.getAutoRenewAccountId();\n\n if (!current) {\n const transactionAccountId = this.transactionId?.accountId;\n const operatorAccountId = (client as ClientLike | null | undefined)\n ?.operatorAccountId;\n const resolved =\n resolveAccountId(transactionAccountId, accountCtor) ??\n resolveAccountId(operatorAccountId, accountCtor);\n\n if (resolved) {\n this._autoRenewAccountId = resolved;\n }\n }\n\n return originalFreeze.call(this, client);\n };\n\n Reflect.set(prototype, prototypeMarker, true);\n}\n\nfunction patchAccountId(accountCtor: AccountIdCtor): void {\n if (Reflect.get(accountCtor, accountMarker)) {\n return;\n }\n\n const originalFromString = accountCtor.fromString.bind(accountCtor);\n\n accountCtor.fromString = function accountIdFromStringPatched(\n value: unknown,\n ): AccountIdInstance {\n if (typeof value === 'string') {\n return originalFromString(value);\n }\n\n const extracted = extractAccountIdString(value);\n\n if (extracted) {\n return originalFromString(extracted);\n }\n\n if (isProtoAccountId(value)) {\n const shard = toNumericString(value.shard);\n const realm = toNumericString(value.realm);\n const num = toNumericString(value.num);\n\n if (shard && realm && num) {\n return originalFromString(`${shard}.${realm}.${num}`);\n }\n }\n\n return originalFromString(value as string);\n };\n\n Reflect.set(accountCtor, accountMarker, true);\n}\n\nfunction resolveAccountId(\n value: unknown,\n accountCtor: AccountIdCtor,\n): AccountIdInstance | null {\n if (value instanceof accountCtor) {\n return value;\n }\n\n if (typeof value === 'string' && accountIdPattern.test(value)) {\n return accountCtor.fromString(value);\n }\n\n const normalized = normalizeAutoRenewValue(value);\n\n if (normalized) {\n return accountCtor.fromString(normalized);\n }\n\n return null;\n}\n\nfunction normalizeAutoRenewValue(value: unknown): string | null {\n if (typeof value === 'string' && accountIdPattern.test(value)) {\n return value;\n }\n\n const extracted = extractAccountIdString(value);\n\n if (extracted) {\n return extracted;\n }\n\n if (isProtoAccountId(value)) {\n const shard = toNumericString(value.shard);\n const realm = toNumericString(value.realm);\n const num = toNumericString(value.num);\n\n if (shard && realm && num) {\n const composed = `${shard}.${realm}.${num}`;\n if (accountIdPattern.test(composed)) {\n return composed;\n }\n }\n }\n\n return null;\n}\n\nfunction extractAccountIdString(value: unknown): string | null {\n if (typeof value !== 'object' || value === null) {\n return null;\n }\n\n const candidate = value as { toString?: () => unknown };\n const method = candidate.toString;\n\n if (typeof method !== 'function') {\n return null;\n }\n\n const result = method.call(value);\n\n if (typeof result !== 'string') {\n return null;\n }\n\n return accountIdPattern.test(result) ? result : null;\n}\n\nfunction isProtoAccountId(value: unknown): value is {\n shard: { toString: () => string };\n realm: { toString: () => string };\n num: { toString: () => string };\n} {\n if (typeof value !== 'object' || value === null) {\n return false;\n }\n\n const candidate = value as Record<string, unknown>;\n\n return (\n hasToString(candidate.shard) &&\n hasToString(candidate.realm) &&\n hasToString(candidate.num)\n );\n}\n\nfunction hasToString(value: unknown): value is { toString: () => string } {\n return (\n typeof value === 'object' &&\n value !== null &&\n typeof (value as { toString?: unknown }).toString === 'function'\n );\n}\n\nfunction toNumericString(value: unknown): string | null {\n if (typeof value === 'number' && Number.isFinite(value)) {\n return String(Math.trunc(value));\n }\n\n if (typeof value === 'bigint') {\n return value.toString();\n }\n\n if (hasToString(value)) {\n const result = value.toString();\n if (/^\\d+$/u.test(result)) {\n return result;\n }\n }\n\n return null;\n}\n\nfunction requireNotFrozen(target: TopicPrototype): void {\n const candidate = target as { _requireNotFrozen?: () => void };\n candidate._requireNotFrozen?.();\n}\n\ntype ClientLike = {\n operatorAccountId?: unknown;\n};\n\ntype TopicPrototype = {\n setAutoRenewAccountId?: (...args: unknown[]) => unknown;\n freezeWith?: (...args: unknown[]) => unknown;\n getAutoRenewAccountId?: () => AccountIdInstance | null;\n transactionId?: { accountId?: unknown } | null;\n _autoRenewAccountId?: AccountIdInstance | null;\n [key: string]: unknown;\n};\n"],"names":[],"mappings":"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"}
@@ -8,14 +8,14 @@ import "node:buffer";
8
8
  import "node:crypto";
9
9
  import "@noble/curves/secp256k1.js";
10
10
  import "./standards-sdk.es130.js";
11
- import "./standards-sdk.es136.js";
11
+ import "./standards-sdk.es139.js";
12
12
  import "zod";
13
13
  import "buffer";
14
14
  import "ethers";
15
15
  import "./standards-sdk.es123.js";
16
16
  import "./standards-sdk.es114.js";
17
17
  import { getTopicId } from "./standards-sdk.es115.js";
18
- import { InscriptionSDK } from "./standards-sdk.es137.js";
18
+ import { InscriptionSDK } from "./standards-sdk.es138.js";
19
19
  import { HCS10BaseClient, Hcs10MemoType } from "./standards-sdk.es17.js";
20
20
  import * as mime from "mime-types";
21
21
  import { AgentBuilder } from "./standards-sdk.es24.js";
@@ -1,4 +1,4 @@
1
- import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es139.js";
1
+ import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es137.js";
2
2
  function memoInbound(ttl, accountId) {
3
3
  return `hcs-10:0:${ttl}:0:${accountId}`;
4
4
  }
@@ -1,6 +1,6 @@
1
1
  import { Client, Status, PrivateKey, AccountUpdateTransaction } from "@hashgraph/sdk";
2
2
  import { inscribeWithSigner, inscribe } from "./standards-sdk.es125.js";
3
- import "./standards-sdk.es137.js";
3
+ import "./standards-sdk.es138.js";
4
4
  import { Logger } from "./standards-sdk.es106.js";
5
5
  import { HederaMirrorNode } from "./standards-sdk.es127.js";
6
6
  import { ProgressReporter } from "./standards-sdk.es109.js";
@@ -10,7 +10,7 @@ import "node:buffer";
10
10
  import "node:crypto";
11
11
  import "@noble/curves/secp256k1.js";
12
12
  import "./standards-sdk.es130.js";
13
- import "./standards-sdk.es136.js";
13
+ import "./standards-sdk.es139.js";
14
14
  import { z } from "zod";
15
15
  import "@hashgraph/proto";
16
16
  import "buffer";
@@ -20,7 +20,7 @@ import "./standards-sdk.es114.js";
20
20
  import { getTopicId } from "./standards-sdk.es115.js";
21
21
  import * as mime from "mime-types";
22
22
  import { isHederaNetwork, toHederaCaip10 } from "./standards-sdk.es58.js";
23
- import { createNodeOperatorContext } from "./standards-sdk.es138.js";
23
+ import { createNodeOperatorContext } from "./standards-sdk.es136.js";
24
24
  import { AIAgentCapability, AIAgentType, VerificationType, MCPServerCapability, ProfileType, capabilityNameToCapabilityMap } from "./standards-sdk.es29.js";
25
25
  const SocialLinkSchema = z.object({
26
26
  platform: z.string().min(1),
@@ -1,6 +1,6 @@
1
1
  import { RegistryType } from "./standards-sdk.es30.js";
2
2
  import { inscribe, inscribeWithSigner } from "./standards-sdk.es125.js";
3
- import "./standards-sdk.es137.js";
3
+ import "./standards-sdk.es138.js";
4
4
  class BaseRegistry {
5
5
  constructor(networkType, logger, registryType, topicId, client) {
6
6
  this.entries = /* @__PURE__ */ new Map();
@@ -1,7 +1,7 @@
1
1
  import { RegistryType } from "./standards-sdk.es30.js";
2
2
  import { BaseRegistry } from "./standards-sdk.es31.js";
3
3
  import { retrieveInscription } from "./standards-sdk.es125.js";
4
- import "./standards-sdk.es137.js";
4
+ import "./standards-sdk.es138.js";
5
5
  import { getCryptoAdapter } from "./standards-sdk.es120.js";
6
6
  import { isSSREnvironment } from "./standards-sdk.es118.js";
7
7
  import { validateActionRegistration } from "./standards-sdk.es43.js";
@@ -5,9 +5,9 @@ import "node:buffer";
5
5
  import "node:crypto";
6
6
  import "@noble/curves/secp256k1.js";
7
7
  import "./standards-sdk.es130.js";
8
- import "./standards-sdk.es136.js";
8
+ import "./standards-sdk.es139.js";
9
9
  import "zod";
10
- import "./standards-sdk.es137.js";
10
+ import "./standards-sdk.es138.js";
11
11
  import "@hashgraph/proto";
12
12
  import "buffer";
13
13
  import "@hashgraph/sdk";
@@ -1,15 +1,15 @@
1
1
  import { Client } from "@hashgraph/sdk";
2
2
  import { HCS12BaseClient } from "./standards-sdk.es36.js";
3
- import { createNodeOperatorContext } from "./standards-sdk.es138.js";
3
+ import { createNodeOperatorContext } from "./standards-sdk.es136.js";
4
4
  import { RegistryType } from "./standards-sdk.es30.js";
5
5
  import { inscribe } from "./standards-sdk.es125.js";
6
- import { InscriptionSDK } from "./standards-sdk.es137.js";
6
+ import { InscriptionSDK } from "./standards-sdk.es138.js";
7
7
  import { ActionRegistry } from "./standards-sdk.es32.js";
8
8
  import { BlockLoader } from "./standards-sdk.es33.js";
9
9
  import { AssemblyRegistry } from "./standards-sdk.es34.js";
10
10
  import { HashLinksRegistry } from "./standards-sdk.es35.js";
11
11
  import * as mime from "mime-types";
12
- import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es139.js";
12
+ import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es137.js";
13
13
  class HCS12Client extends HCS12BaseClient {
14
14
  constructor(config) {
15
15
  super(config);
@@ -2,7 +2,7 @@ import { TopicCreateTransaction, TransactionId, AccountId, PublicKey, KeyList, T
2
2
  import { HCS12BaseClient } from "./standards-sdk.es36.js";
3
3
  import { RegistryType } from "./standards-sdk.es30.js";
4
4
  import { inscribeWithSigner } from "./standards-sdk.es125.js";
5
- import { InscriptionSDK } from "./standards-sdk.es137.js";
5
+ import { InscriptionSDK } from "./standards-sdk.es138.js";
6
6
  import { ActionRegistry } from "./standards-sdk.es32.js";
7
7
  import { BlockLoader } from "./standards-sdk.es33.js";
8
8
  import { AssemblyRegistry } from "./standards-sdk.es34.js";
@@ -2,7 +2,7 @@ import { HCS6BaseClient } from "./standards-sdk.es7.js";
2
2
  import { buildHcs6Hrl } from "./standards-sdk.es4.js";
3
3
  import { AccountId, Client, TopicMessageSubmitTransaction, TopicId, PrivateKey, PublicKey, TokenMintTransaction, TokenId } from "@hashgraph/sdk";
4
4
  import { buildHcs6CreateRegistryTx } from "./standards-sdk.es8.js";
5
- import { createNodeOperatorContext, NodeOperatorResolver } from "./standards-sdk.es138.js";
5
+ import { createNodeOperatorContext, NodeOperatorResolver } from "./standards-sdk.es136.js";
6
6
  import { inscribe } from "./standards-sdk.es125.js";
7
7
  class HCS6Client extends HCS6BaseClient {
8
8
  constructor(config) {
@@ -1,4 +1,4 @@
1
- import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es139.js";
1
+ import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es137.js";
2
2
  function memoForHcs12(registry, ttl) {
3
3
  const typeMap = {
4
4
  action: 0,
@@ -15,14 +15,14 @@ import "node:buffer";
15
15
  import "node:crypto";
16
16
  import "@noble/curves/secp256k1.js";
17
17
  import "./standards-sdk.es130.js";
18
- import "./standards-sdk.es136.js";
18
+ import "./standards-sdk.es139.js";
19
19
  import "zod";
20
20
  import "@hashgraph/proto";
21
21
  import "buffer";
22
22
  import "ethers";
23
23
  import "./standards-sdk.es123.js";
24
24
  import "./standards-sdk.es114.js";
25
- import { createNodeOperatorContext } from "./standards-sdk.es138.js";
25
+ import { createNodeOperatorContext } from "./standards-sdk.es136.js";
26
26
  import { HCS10Client } from "./standards-sdk.es19.js";
27
27
  class HCS14Client {
28
28
  constructor(options) {
@@ -1,4 +1,4 @@
1
- import { HCS5BaseClient } from "./standards-sdk.es140.js";
1
+ import { HCS5BaseClient } from "./standards-sdk.es146.js";
2
2
  import { buildHcs1Hrl } from "./standards-sdk.es64.js";
3
3
  import { PrivateKey } from "@hashgraph/sdk";
4
4
  import { inscribeWithSigner } from "./standards-sdk.es125.js";
@@ -1,9 +1,9 @@
1
- import { HCS5BaseClient } from "./standards-sdk.es140.js";
1
+ import { HCS5BaseClient } from "./standards-sdk.es146.js";
2
2
  import { buildHcs1Hrl } from "./standards-sdk.es64.js";
3
3
  import { AccountId } from "@hashgraph/sdk";
4
4
  import { inscribe } from "./standards-sdk.es125.js";
5
5
  import { buildHcs5MintTx } from "./standards-sdk.es67.js";
6
- import { createNodeOperatorContext, NodeOperatorResolver } from "./standards-sdk.es138.js";
6
+ import { createNodeOperatorContext, NodeOperatorResolver } from "./standards-sdk.es136.js";
7
7
  class HCS5Client extends HCS5BaseClient {
8
8
  constructor(config) {
9
9
  super(config);
@@ -1,8 +1,8 @@
1
1
  import { AccountId, Client, PublicKey } from "@hashgraph/sdk";
2
2
  import { HCS2BaseClient } from "./standards-sdk.es71.js";
3
3
  import { HCS2Operation, HCS2RegistryType } from "./standards-sdk.es68.js";
4
- import { createNodeOperatorContext } from "./standards-sdk.es138.js";
5
- import { buildMessageTx } from "./standards-sdk.es139.js";
4
+ import { createNodeOperatorContext } from "./standards-sdk.es136.js";
5
+ import { buildMessageTx } from "./standards-sdk.es137.js";
6
6
  import { buildHcs2CreateRegistryTx } from "./standards-sdk.es72.js";
7
7
  const _HCS2Client = class _HCS2Client extends HCS2BaseClient {
8
8
  /**
@@ -3,7 +3,7 @@ import { HCS2BaseClient } from "./standards-sdk.es71.js";
3
3
  import { HCS2RegistryType, HCS2Operation } from "./standards-sdk.es68.js";
4
4
  import { isBrowser } from "./standards-sdk.es119.js";
5
5
  import { KeyTypeDetector } from "./standards-sdk.es114.js";
6
- import { buildMessageTx } from "./standards-sdk.es139.js";
6
+ import { buildMessageTx } from "./standards-sdk.es137.js";
7
7
  class BrowserHCS2Client extends HCS2BaseClient {
8
8
  /**
9
9
  * Create a new browser HCS-2 client
@@ -1,4 +1,4 @@
1
- import { buildTopicCreateTx, buildMessageTx, encodeHcs2RegistryMemo } from "./standards-sdk.es139.js";
1
+ import { buildTopicCreateTx, buildMessageTx, encodeHcs2RegistryMemo } from "./standards-sdk.es137.js";
2
2
  import { HCS2Operation } from "./standards-sdk.es68.js";
3
3
  function buildHcs2CreateRegistryTx(params) {
4
4
  const memo = params.memoOverride ?? encodeHcs2RegistryMemo(params.registryType, params.ttl);
@@ -2,7 +2,7 @@ import { AccountId, Client, Status, TopicCreateTransaction } from "@hashgraph/sd
2
2
  import { HCS20BaseClient } from "./standards-sdk.es75.js";
3
3
  import { PointsDeploymentError, PointsValidationError, PointsTransferError, PointsBurnError } from "./standards-sdk.es74.js";
4
4
  import { sleep } from "./standards-sdk.es116.js";
5
- import { createNodeOperatorContext } from "./standards-sdk.es138.js";
5
+ import { createNodeOperatorContext } from "./standards-sdk.es136.js";
6
6
  import { HCS2Client } from "./standards-sdk.es69.js";
7
7
  import { buildHcs20DeployTx, buildHcs20MintTx, buildHcs20TransferTx, buildHcs20BurnTx, buildHcs20RegisterTx } from "./standards-sdk.es79.js";
8
8
  class HCS20Client extends HCS20BaseClient {
@@ -5,7 +5,7 @@ import "node:buffer";
5
5
  import "node:crypto";
6
6
  import "@noble/curves/secp256k1.js";
7
7
  import "./standards-sdk.es130.js";
8
- import "./standards-sdk.es136.js";
8
+ import "./standards-sdk.es139.js";
9
9
  import "zod";
10
10
  import { HCS20_CONSTANTS, HCS20MessageSchema } from "./standards-sdk.es73.js";
11
11
  class HCS20PointsIndexer {
@@ -1,4 +1,4 @@
1
- import { buildMessageTx } from "./standards-sdk.es139.js";
1
+ import { buildMessageTx } from "./standards-sdk.es137.js";
2
2
  function buildHcs20SubmitMessageTx(params) {
3
3
  const msg = typeof params.payload === "string" ? params.payload : JSON.stringify(params.payload);
4
4
  return buildMessageTx({
@@ -1,4 +1,4 @@
1
- import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es139.js";
1
+ import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es137.js";
2
2
  import { HCS6Operation } from "./standards-sdk.es4.js";
3
3
  function encodeHcs6NonIndexedMemo(ttl) {
4
4
  return `hcs-6:1:${ttl}`;
@@ -1,4 +1,4 @@
1
- import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es139.js";
1
+ import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es137.js";
2
2
  import { HCS21TopicType, HCS21MetadataPointerPattern, HCS21_SAFE_MESSAGE_BYTES, HCS21_MAX_MESSAGE_BYTES } from "./standards-sdk.es80.js";
3
3
  import { HCS21ValidationError } from "./standards-sdk.es81.js";
4
4
  function buildHcs21RegistryMemo(params) {
@@ -1,5 +1,5 @@
1
1
  import { Client, Status } from "@hashgraph/sdk";
2
- import { createNodeOperatorContext } from "./standards-sdk.es138.js";
2
+ import { createNodeOperatorContext } from "./standards-sdk.es136.js";
3
3
  import { Logger } from "./standards-sdk.es106.js";
4
4
  import { HCS21BaseClient } from "./standards-sdk.es83.js";
5
5
  import { metadataDocumentSchema, HCS21TopicType, HCS21ManifestPointerPattern } from "./standards-sdk.es80.js";
@@ -1,5 +1,5 @@
1
1
  import { AccountId, Client, PrivateKey, Hbar } from "@hashgraph/sdk";
2
- import { createNodeOperatorContext } from "./standards-sdk.es138.js";
2
+ import { createNodeOperatorContext } from "./standards-sdk.es136.js";
3
3
  import { buildHcs15BaseAccountCreateTx, buildHcs15PetalAccountCreateTx } from "./standards-sdk.es87.js";
4
4
  import { HCS15BaseClient } from "./standards-sdk.es90.js";
5
5
  class HCS15Client extends HCS15BaseClient {
@@ -1,5 +1,5 @@
1
1
  import { AccountId, TopicCreateTransaction, CustomFixedFee, TokenId, AccountCreateTransaction, Hbar, AccountUpdateTransaction, ScheduleCreateTransaction, TopicUpdateTransaction } from "@hashgraph/sdk";
2
- import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es139.js";
2
+ import { buildTopicCreateTx, buildMessageTx } from "./standards-sdk.es137.js";
3
3
  import { FloraOperation } from "./standards-sdk.es91.js";
4
4
  function encodeHcs16FloraMemo(params) {
5
5
  return `hcs-16:${params.floraAccountId}:${params.topicType}`;
@@ -1,5 +1,5 @@
1
1
  import { AccountId, Client, ScheduleSignTransaction } from "@hashgraph/sdk";
2
- import { createNodeOperatorContext } from "./standards-sdk.es138.js";
2
+ import { createNodeOperatorContext } from "./standards-sdk.es136.js";
3
3
  import { HederaMirrorNode } from "./standards-sdk.es127.js";
4
4
  import { HCS16BaseClient } from "./standards-sdk.es95.js";
5
5
  import { buildHcs16CreateFloraTopicTx, buildHcs16FloraCreatedTx, buildHcs16TransactionTx, buildHcs16StateUpdateTx, buildHcs16CreateAccountTx } from "./standards-sdk.es92.js";
@@ -1,7 +1,7 @@
1
1
  import { AccountId, Client } from "@hashgraph/sdk";
2
2
  import { HCS17BaseClient } from "./standards-sdk.es97.js";
3
3
  import { buildHcs17CreateTopicTx, buildHcs17MessageTx } from "./standards-sdk.es100.js";
4
- import { createNodeOperatorContext } from "./standards-sdk.es138.js";
4
+ import { createNodeOperatorContext } from "./standards-sdk.es136.js";
5
5
  class HCS17Client extends HCS17BaseClient {
6
6
  constructor(config) {
7
7
  super(config);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hashgraphonline/standards-sdk",
3
- "version": "0.1.141-canary.39",
3
+ "version": "0.1.141-canary.40",
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": [