Files
Igor Lins e Silva 279f5d9474 merge 3.3.5 to master
2022-09-11 03:42:18 -03:00

26 lines
720 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HyperionPlugin = void 0;
class HyperionPlugin {
constructor(config) {
this.internalPluginName = '';
this.actionHandlers = [];
this.deltaHandlers = [];
this.streamHandlers = [];
this.dynamicContracts = [];
this.hasApiRoutes = false;
this.chainName = '';
if (config) {
this.baseConfig = config;
}
}
// abstract processActionData(input: any): Promise<any>;
initOnce() {
// called only once
}
initHandlerMap() {
return {};
}
}
exports.HyperionPlugin = HyperionPlugin;
//# sourceMappingURL=hyperion-plugin.js.map