import { MerkleProof } from '@zkopru/tree'; import { Fp } from '@zkopru/babyjubjub'; import BN from 'bn.js'; import { Proposal } from '@zkopru/database'; export interface BootstrapData { proposal: Proposal; blockHash: string; utxoStartingLeafProof: MerkleProof; withdrawalStartingLeafProof: MerkleProof; } export interface BootstrapHelper { fetchBootstrapData(latest: string): Promise; } export declare class HttpBootstrapHelper implements BootstrapHelper { endpoint: string; constructor(endpoint: string); fetchBootstrapData(latest: string): Promise; } //# sourceMappingURL=bootstrap.d.ts.map