@hashgraphonline/standards-agent-kit
Version:
A modular SDK for building on-chain autonomous agents using Hashgraph Online Standards, including HCS-10 for agent discovery and communication. https://hol.org
16 lines (15 loc) • 937 B
TypeScript
import { TopicRegistrationResponse, RegistryOperationResponse, HCS6TopicRegistrationResponse, HCS6RegistryOperationResponse, HCS6CreateHashinalResponse } from '@hashgraphonline/standards-sdk';
export interface WalletBytesResponse {
success: true;
transactionBytes: string;
}
export declare function isWalletBytesResponse(value: unknown): value is WalletBytesResponse;
export type TopicRegistrationResult = TopicRegistrationResponse | WalletBytesResponse;
export type RegistryOperationResult = RegistryOperationResponse | WalletBytesResponse;
export type SubmitMessageResult = {
success: true;
transactionId?: string;
} | WalletBytesResponse;
export type HCS6TopicRegistrationResult = HCS6TopicRegistrationResponse | WalletBytesResponse;
export type HCS6RegistryOperationResult = HCS6RegistryOperationResponse | WalletBytesResponse;
export type HCS6CreateHashinalResult = HCS6CreateHashinalResponse | WalletBytesResponse;