UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

11 lines (10 loc) 210 B
export interface ContractCtor { new (account: string): Contract; identifierName(): string; } export interface Contract { validate(): { valid: boolean; error: string | null; }; }