@hashgraphonline/standards-agent-kit 0.2.160 → 0.2.162

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.
@@ -1,6 +1,6 @@
1
1
  import { BaseServiceBuilder, HederaAgentKit, AgentOperationalMode } from 'hedera-agent-kit';
2
2
  import { InscriptionInput, InscriptionOptions, InscriptionResponse, RetrievedInscriptionResult } from '@hashgraphonline/standards-sdk';
3
- import { InscriptionResult } from '@kiloscribe/inscription-sdk';
3
+ import { InscriptionSDK, InscriptionResult } from '@kiloscribe/inscription-sdk';
4
4
  /**
5
5
  * Type definition for DAppSigner interface compatible with inscription SDK
6
6
  */
@@ -24,9 +24,11 @@ export interface CompletedInscriptionResponse {
24
24
  jsonTopicId?: string;
25
25
  network?: string;
26
26
  }
27
- declare const loadInscriptionSdkModule: () => Promise<typeof import("@kiloscribe/inscription-sdk")>;
28
- type InscriptionSDKType = Awaited<ReturnType<typeof loadInscriptionSdkModule>>['InscriptionSDK'];
29
- type InscriptionSDKInstance = InstanceType<InscriptionSDKType>;
27
+ /**
28
+ * Builder for Inscription operations
29
+ */
30
+ type InscriptionSDKInstance = InstanceType<typeof InscriptionSDK>;
31
+ export declare const toDashedTransactionId: (transactionId: string) => string;
30
32
  export declare class InscriberBuilder extends BaseServiceBuilder {
31
33
  protected inscriptionSDK?: InscriptionSDKInstance;
32
34
  private static signerProvider?;