UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

26 lines (25 loc) 778 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const immutable_1 = __importDefault(require("immutable")); class CosmosSubgraph { constructor(options) { this.manifest = options.manifest; this.resolveFile = options.resolveFile; this.protocol = options.protocol; } validateManifest() { return immutable_1.default.List(); } handlerTypes() { return immutable_1.default.List([ 'blockHandlers', 'eventHandlers', 'transactionHandlers', 'messageHandlers', ]); } } exports.default = CosmosSubgraph;