@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
27 lines (26 loc) • 1.03 kB
JavaScript
import * as tsCodegen from '../../../codegen/typescript.js';
export default class EthereumTemplateCodeGen {
template;
constructor(template) {
this.template = template;
this.template = template;
}
generateModuleImports() {
return ['Address'];
}
generateCreateMethod() {
const name = this.template.get('name');
return tsCodegen.staticMethod('create', [tsCodegen.param('address', tsCodegen.namedType('Address'))], tsCodegen.namedType('void'), `
DataSourceTemplate.create('${name}', [address.toHex()])
`);
}
generateCreateWithContextMethod() {
const name = this.template.get('name');
return tsCodegen.staticMethod('createWithContext', [
tsCodegen.param('address', tsCodegen.namedType('Address')),
tsCodegen.param('context', tsCodegen.namedType('DataSourceContext')),
], tsCodegen.namedType('void'), `
DataSourceTemplate.createWithContext('${name}', [address.toHex()], context)
`);
}
}