UNPKG

@hashgraphonline/standards-sdk

Version:

The Hashgraph Online Standards SDK provides a complete implementation of the Hashgraph Consensus Standards (HCS), giving developers all the tools needed to build applications on Hedera.

9 lines 613 B
import { proto } from '@hashgraph/proto'; import { FileCreateData, FileAppendData, FileUpdateData, FileDeleteData } from '../transaction-parser-types'; export declare class FileParser { static parseFileCreate(body: proto.IFileCreateTransactionBody): FileCreateData | undefined; static parseFileAppend(body: proto.IFileAppendTransactionBody): FileAppendData | undefined; static parseFileUpdate(body: proto.IFileUpdateTransactionBody): FileUpdateData | undefined; static parseFileDelete(body: proto.IFileDeleteTransactionBody): FileDeleteData | undefined; } //# sourceMappingURL=file-parser.d.ts.map