@iexec/dataprotector
Version:
This product enables users to confidentially store data–such as mail address, documents, personal information ...
11 lines • 464 B
JavaScript
import { IExecDataProtectorCore } from './dataProtectorCore/IExecDataProtectorCore.js';
import { IExecDataProtectorModule } from './IExecDataProtectorModule.js';
class IExecDataProtector extends IExecDataProtectorModule {
core;
constructor(ethProvider, options) {
super(ethProvider, options);
this.core = new IExecDataProtectorCore(ethProvider, options);
}
}
export { IExecDataProtector };
//# sourceMappingURL=IExecDataProtector.js.map