@vocdoni/davinci-contracts
Version:
Smart contracts powering DAVINCI's digital voting protocol
32 lines (31 loc) • 1.13 kB
TypeScript
import { type ContractRunner } from "ethers";
import type { IZKVerifier, IZKVerifierInterface } from "../../src/IZKVerifier";
export declare class IZKVerifier__factory {
static readonly abi: readonly [{
readonly inputs: readonly [];
readonly name: "provingKeyHash";
readonly outputs: readonly [{
readonly internalType: "bytes32";
readonly name: "";
readonly type: "bytes32";
}];
readonly stateMutability: "pure";
readonly type: "function";
}, {
readonly inputs: readonly [{
readonly internalType: "bytes";
readonly name: "proof";
readonly type: "bytes";
}, {
readonly internalType: "bytes";
readonly name: "input";
readonly type: "bytes";
}];
readonly name: "verifyProof";
readonly outputs: readonly [];
readonly stateMutability: "view";
readonly type: "function";
}];
static createInterface(): IZKVerifierInterface;
static connect(address: string, runner?: ContractRunner | null): IZKVerifier;
}