UNPKG

@tw3/esp

Version:

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

16 lines 1.43 kB
/** * ESP-specific TypeChain Types * * Only includes types for ESP contracts, excluding OpenZeppelin and test contracts */ export type { DataPointRegistry } from '../../typechain-types/contracts/DataPointRegistry'; export { DataPointRegistry__factory } from '../../typechain-types/factories/contracts/DataPointRegistry__factory'; export type { DataPointStorage } from '../../typechain-types/contracts/DataPointStorage'; export { DataPointStorage__factory } from '../../typechain-types/factories/contracts/DataPointStorage__factory'; export type { IDataPointRegistry } from '../../typechain-types/contracts/interfaces/IDataPointRegistry'; export { IDataPointRegistry__factory } from '../../typechain-types/factories/contracts/interfaces/IDataPointRegistry__factory'; export type { IDataPointStorage } from '../../typechain-types/contracts/interfaces/IDataPointStorage'; export { IDataPointStorage__factory } from '../../typechain-types/factories/contracts/interfaces/IDataPointStorage__factory'; export type { BaseOverrides, NonPayableOverrides, PayableOverrides, ViewOverrides, Overrides, TypedContractEvent, TypedEventLog, TypedListener, TypedContractMethod, MinEthersFactory, GetContractTypeFromFactory, GetARGsTypeFromFactory } from '../../typechain-types/common'; export type { ContractTransaction, ContractTransactionResponse, BigNumberish, BytesLike, Signer, Provider } from 'ethers'; //# sourceMappingURL=index.d.ts.map