UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

23 lines (22 loc) 544 B
import immutable from 'immutable'; export default class CosmosSubgraph { manifest; resolveFile; protocol; constructor(options) { this.manifest = options.manifest; this.resolveFile = options.resolveFile; this.protocol = options.protocol; } validateManifest() { return immutable.List(); } handlerTypes() { return immutable.List([ 'blockHandlers', 'eventHandlers', 'transactionHandlers', 'messageHandlers', ]); } }