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

14 lines (12 loc) 471 B
import { HederaAgentKit, BaseServiceBuilder } from 'hedera-agent-kit'; import { HbarTransferParams } from './types'; /** * Custom AccountBuilder that properly handles HBAR decimal conversion */ export declare class AccountBuilder extends BaseServiceBuilder { constructor(hederaKit: HederaAgentKit); /** * Transfers HBAR between accounts with proper decimal handling */ transferHbar(params: HbarTransferParams, isUserInitiated?: boolean): this; }