@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
191 lines (190 loc) • 7.71 kB
JavaScript
import fs from 'fs-extra';
import { strings } from 'gluegun';
import prettier from 'prettier';
import { getSubgraphBasename } from '../command-helpers/subgraph.js';
import { version } from '../version.js';
import { getDockerFile } from './get-docker-file.js';
import { getGitIgnore } from './get-git-ignore.js';
import { generateEventIndexingHandlers } from './mapping.js';
import { abiEvents, generateEventType, generateExampleEntityType } from './schema.js';
import { generateTestsFiles } from './tests.js';
const GRAPH_CLI_VERSION = process.env.GRAPH_CLI_TESTS
? // JSON.stringify should remove this key, we will install the local
// graph-cli for the tests using `npm link` instead of fetching from npm.
undefined
: // For scaffolding real subgraphs
version;
const GRAPH_TS_VERSION = '0.36.0';
const GRAPH_MATCHSTICK_VERSION = '0.6.0';
export default class Scaffold {
protocol;
abi;
indexEvents;
contract;
network;
contractName;
subgraphName;
node;
startBlock;
spkgPath;
entities;
constructor(options) {
this.protocol = options.protocol;
this.abi = options.abi;
this.indexEvents = options.indexEvents;
this.contract = options.contract;
this.network = options.network;
this.contractName = options.contractName;
this.subgraphName = options.subgraphName;
this.startBlock = options.startBlock;
this.node = options.node;
this.spkgPath = options.spkgPath;
this.entities = options.entities;
}
async generatePackageJson() {
return await prettier.format(JSON.stringify({
name: getSubgraphBasename(String(this.subgraphName)),
license: 'UNLICENSED',
scripts: {
codegen: 'graph codegen',
build: 'graph build',
deploy: `graph deploy ` + `--node ${this.node} ` + this.subgraphName,
'create-local': `graph create --node http://localhost:8020/ ${this.subgraphName}`,
'remove-local': `graph remove --node http://localhost:8020/ ${this.subgraphName}`,
'deploy-local': `graph deploy ` +
`--node http://localhost:8020/ ` +
`--ipfs http://localhost:5001 ` +
this.subgraphName,
test: 'graph test',
},
dependencies: {
'@graphprotocol/graph-cli': GRAPH_CLI_VERSION,
'@graphprotocol/graph-ts': GRAPH_TS_VERSION,
},
devDependencies: this.protocol.hasEvents()
? { 'matchstick-as': GRAPH_MATCHSTICK_VERSION }
: undefined,
}), { parser: 'json' });
}
async generatePackageJsonForSubstreams() {
return await prettier.format(JSON.stringify({
name: getSubgraphBasename(String(this.subgraphName)),
license: 'UNLICENSED',
scripts: {
build: 'graph build',
deploy: `graph deploy ` + `--node ${this.node} ` + this.subgraphName,
'create-local': `graph create --node http://localhost:8020/ ${this.subgraphName}`,
'remove-local': `graph remove --node http://localhost:8020/ ${this.subgraphName}`,
'deploy-local': `graph deploy ` +
`--node http://localhost:8020/ ` +
`--ipfs http://localhost:5001 ` +
this.subgraphName,
test: 'graph test',
},
dependencies: {
'@graphprotocol/graph-cli': GRAPH_CLI_VERSION,
},
}), { parser: 'json' });
}
async generateManifest() {
const protocolManifest = this.protocol.getManifestScaffold();
const name = this.contractName || getSubgraphBasename(String(this.subgraphName));
return await prettier.format(`
specVersion: 1.0.0
indexerHints:
prune: auto
schema:
file: ./schema.graphql
dataSources:
- kind: ${this.protocol.name}
name: ${name}
network: ${this.network}
source: ${protocolManifest.source({ ...this, spkgPath: './substreams.spkg', spkgModule: 'graph_out' })}
mapping: ${protocolManifest.mapping(this)}
`, { parser: 'yaml' });
}
async generateSchema() {
const hasEvents = this.protocol.hasEvents();
const events = hasEvents ? abiEvents(this.abi).toJS() : [];
return await prettier.format(hasEvents && this.indexEvents
? events
.map((event) => generateEventType(event, this.protocol.name, this.contractName))
.join('\n\n')
: generateExampleEntityType(this.protocol, events), {
parser: 'graphql',
trailingComma: 'none',
});
}
async generateSpkgContent() {
if (!this.spkgPath) {
return undefined;
}
return fs.readFile(this.spkgPath);
}
async generateTsConfig() {
return await prettier.format(JSON.stringify({
extends: '@graphprotocol/graph-ts/types/tsconfig.base.json',
include: ['src', 'tests'],
}), { parser: 'json' });
}
async generateDockerFileConfig() {
return await prettier.format(getDockerFile(), { parser: 'yaml' });
}
generateGitIgnoreFile() {
return getGitIgnore();
}
async generateMappings() {
return this.protocol.getMappingScaffold()
? { [`${strings.kebabCase(this.contractName)}.ts`]: await this.generateMapping() }
: undefined;
}
async generateMapping() {
const hasEvents = this.protocol.hasEvents();
const events = hasEvents ? abiEvents(this.abi).toJS() : [];
const protocolMapping = this.protocol.getMappingScaffold();
return await prettier.format(hasEvents && this.indexEvents
? generateEventIndexingHandlers(events, this.contractName)
: protocolMapping.generatePlaceholderHandlers({
...this,
events,
}), { parser: 'typescript', semi: false, trailingComma: 'none' });
}
async generateABIs() {
return this.protocol.hasABIs()
? {
[`${this.contractName}.json`]: await prettier.format(JSON.stringify(this.abi?.data), {
parser: 'json',
}),
}
: undefined;
}
async generateTests() {
const hasEvents = this.protocol.hasEvents();
const events = hasEvents ? abiEvents(this.abi).toJS() : [];
return events.length > 0
? await generateTestsFiles(this.contractName, events, this.indexEvents)
: undefined;
}
async generate() {
if (this.protocol.name === 'substreams') {
return {
'subgraph.yaml': await this.generateManifest(),
'schema.graphql': await this.generateSchema(),
'package.json': await this.generatePackageJsonForSubstreams(),
'.gitignore': await this.generateGitIgnoreFile(),
'substreams.spkg': await this.generateSpkgContent(),
};
}
return {
'package.json': await this.generatePackageJson(),
'subgraph.yaml': await this.generateManifest(),
'schema.graphql': await this.generateSchema(),
'tsconfig.json': await this.generateTsConfig(),
'docker-compose.yml': await this.generateDockerFileConfig(),
'.gitignore': await this.generateGitIgnoreFile(),
src: await this.generateMappings(),
abis: await this.generateABIs(),
tests: await this.generateTests(),
};
}
}