@hashgraphonline/standards-sdk 0.0.28 → 0.0.30
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.
|
@@ -98,6 +98,7 @@ export interface InscribeImageResponse {
|
|
|
98
98
|
export interface AIAgentMetadata {
|
|
99
99
|
type: 'autonomous' | 'manual';
|
|
100
100
|
}
|
|
101
|
+
export declare const capabilityNameToCapabilityMap: Record<string, AIAgentCapability>;
|
|
101
102
|
export declare class HCS11Client {
|
|
102
103
|
private client;
|
|
103
104
|
private auth;
|
|
@@ -31745,8 +31745,7 @@ class HCS11Client {
|
|
|
31745
31745
|
throw new Error("No valid authentication method provided");
|
|
31746
31746
|
}
|
|
31747
31747
|
const signer = this.auth.signer;
|
|
31748
|
-
const
|
|
31749
|
-
const frozenTransaction = await result.freezeWithSigner(signer);
|
|
31748
|
+
const frozenTransaction = await transaction.freezeWithSigner(signer);
|
|
31750
31749
|
const response = await frozenTransaction.executeWithSigner(signer);
|
|
31751
31750
|
const receipt = await response.getReceiptWithSigner(signer);
|
|
31752
31751
|
if (receipt.status !== Status.Success) {
|
|
@@ -33724,6 +33723,7 @@ export {
|
|
|
33724
33723
|
TopicCreationError,
|
|
33725
33724
|
WasmBridge,
|
|
33726
33725
|
accountIdsToExemptKeys,
|
|
33726
|
+
capabilityNameToCapabilityMap,
|
|
33727
33727
|
inscribe,
|
|
33728
33728
|
inscribeWithSigner,
|
|
33729
33729
|
retrieveInscription,
|