@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
16 lines (13 loc) • 347 B
JavaScript
module.exports = class CosmosSubgraph {
constructor(options = {}) {
this.manifest = options.manifest
this.resolveFile = options.resolveFile
this.protocol = options.protocol
}
validateManifest() {
return []
}
handlerTypes() {
return ['blockHandlers', 'eventHandlers', 'transactionHandlers', 'messageHandlers']
}
}