@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.
16 lines • 555 B
TypeScript
/**
* HCS-20 Auditable Points Standard
*
* This module provides implementations for the HCS-20 standard on Hedera,
* enabling the creation and management of auditable points (loyalty points,
* gaming points, etc.) using the Hedera Consensus Service.
*
* @module hcs-20
*/
export * from './types';
export * from './errors';
export { HCS20BaseClient } from './base-client';
export { BrowserHCS20Client } from './browser';
export { HCS20Client } from './sdk';
export { HCS20PointsIndexer } from './points-indexer';
//# sourceMappingURL=index.d.ts.map