UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

18 lines (17 loc) 450 B
import immutable from 'immutable'; export default class ArweaveSubgraph { 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', 'transactionHandlers']); } }