UNPKG

@tw3/esp

Version:

Storage protocol built on ethereum using datapoint archetecture and a registry contract for handling royalties.

18 lines 846 B
/** * Ethereum Storage Protocol (ESP) - Main Package Export * * This package provides TypeScript types, contract interfaces, and deployment * information for the Ethereum Storage Protocol. * * @version 0.2.0 * @license AGPL-3.0 */ // Export ESP-specific contract types and factories export { DataPointRegistry__factory, DataPointStorage__factory, IDataPointRegistry__factory, IDataPointStorage__factory } from './types'; // Export contract interfaces and utilities export * from './contracts'; // Export deployment information export { espDeployments, loadContract, getContractAddress, getDeploymentInfo, getSupportedChainIds, addLocalhostDeployment, removeLocalhostDeployment, listAllDeployments, hasLocalhostDeployment } from './deployments'; // Re-export types for convenience export * from './types'; //# sourceMappingURL=index.js.map