UNPKG

@hashgraphonline/conversational-agent

Version:

Hashgraph Online conversational AI agent implementing HCS-10 communication, HCS-2 registries, and content inscription on Hedera. https://hol.org

19 lines (18 loc) 676 B
import { EntityFormat } from '../services/formatters/types'; /** * Common entity reference patterns used across the application */ export declare const ENTITY_PATTERNS: { readonly TOPIC_REFERENCE: "the topic"; readonly TOKEN_REFERENCE: "the token"; readonly ACCOUNT_REFERENCE: "the account"; readonly TRANSACTION_REFERENCE: "the transaction"; readonly CONTRACT_REFERENCE: "the contract"; }; export declare const ENTITY_TYPES: { readonly TOPIC: EntityFormat.TOPIC_ID; readonly TOKEN: EntityFormat.TOKEN_ID; readonly ACCOUNT: EntityFormat.ACCOUNT_ID; readonly TRANSACTION: "transaction"; readonly CONTRACT: EntityFormat.CONTRACT_ID; };