UNPKG

@hashgraphonline/conversational-agent

Version:

Hashgraph Online conversational AI agent implementing HCS-10 communication, HCS-2 registries, and content inscription on Hedera

11 lines (9 loc) 248 B
import { AccountId, Hbar } from '@hashgraph/sdk'; export interface HbarTransferInput { accountId: string | AccountId; amount: string | number | Hbar; } export interface HbarTransferParams { transfers: HbarTransferInput[]; memo?: string; }