@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.
12 lines • 562 B
TypeScript
import { PublicKey } from '@hashgraph/sdk';
import { Logger } from './logger';
/**
* Converts account IDs to public keys for fee exemption
* @param client Hedera client instance
* @param accountIds Array of account IDs to convert to public keys
* @param network The network to use for retrieving public keys
* @param logger Optional logger instance
* @returns Array of public keys
*/
export declare function accountIdsToExemptKeys(accountIds: string[], network: string, logger?: Logger): Promise<PublicKey[]>;
//# sourceMappingURL=topic-fee-utils.d.ts.map