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