/** * Module errors. * * @module */ /** Current script's execution hash does not match the specified proposal's */ export declare const EPROPOSAL_EXECUTION_HASH_NOT_MATCHING: { readonly code: 1; readonly name: "EPROPOSAL_EXECUTION_HASH_NOT_MATCHING"; readonly doc: "Current script's execution hash does not match the specified proposal's"; }; /** Proposal cannot be resolved. Either voting duration has not passed, not enough votes, or fewer yes than no votes */ export declare const EPROPOSAL_CANNOT_BE_RESOLVED: { readonly code: 2; readonly name: "EPROPOSAL_CANNOT_BE_RESOLVED"; readonly doc: "Proposal cannot be resolved. Either voting duration has not passed, not enough votes, or fewer yes than no votes"; }; /** Proposal cannot be resolved more than once */ export declare const EPROPOSAL_ALREADY_RESOLVED: { readonly code: 3; readonly name: "EPROPOSAL_ALREADY_RESOLVED"; readonly doc: "Proposal cannot be resolved more than once"; }; /** Proposal cannot contain an empty execution script hash */ export declare const EPROPOSAL_EMPTY_EXECUTION_HASH: { readonly code: 4; readonly name: "EPROPOSAL_EMPTY_EXECUTION_HASH"; readonly doc: "Proposal cannot contain an empty execution script hash"; }; //# sourceMappingURL=errors.d.ts.map