/** * Module errors. * * @module */ /** The specified stake pool does not have sufficient stake to create a proposal */ export declare const EINSUFFICIENT_PROPOSER_STAKE: { readonly code: 1; readonly name: "EINSUFFICIENT_PROPOSER_STAKE"; readonly doc: "The specified stake pool does not have sufficient stake to create a proposal"; }; /** This account is not the designated voter of the specified stake pool */ export declare const ENOT_DELEGATED_VOTER: { readonly code: 2; readonly name: "ENOT_DELEGATED_VOTER"; readonly doc: "This account is not the designated voter of the specified stake pool"; }; /** The specified stake pool does not have long enough remaining lockup to create a proposal or vote */ export declare const EINSUFFICIENT_STAKE_LOCKUP: { readonly code: 3; readonly name: "EINSUFFICIENT_STAKE_LOCKUP"; readonly doc: "The specified stake pool does not have long enough remaining lockup to create a proposal or vote"; }; /** The specified stake pool has already been used to vote on the same proposal */ export declare const EALREADY_VOTED: { readonly code: 4; readonly name: "EALREADY_VOTED"; readonly doc: "The specified stake pool has already been used to vote on the same proposal"; }; /** The specified stake pool must be part of the validator set */ export declare const ENO_VOTING_POWER: { readonly code: 5; readonly name: "ENO_VOTING_POWER"; readonly doc: "The specified stake pool must be part of the validator set"; }; /** Proposal is not ready to be resolved. Waiting on time or votes */ export declare const EPROPOSAL_NOT_RESOLVABLE_YET: { readonly code: 6; readonly name: "EPROPOSAL_NOT_RESOLVABLE_YET"; readonly doc: "Proposal is not ready to be resolved. Waiting on time or votes"; }; /** Proposal's script hash has already been added to the approved list */ export declare const ESCRIPT_HASH_ALREADY_ADDED: { readonly code: 7; readonly name: "ESCRIPT_HASH_ALREADY_ADDED"; readonly doc: "Proposal's script hash has already been added to the approved list"; }; /** The proposal has not been resolved yet */ export declare const EPROPOSAL_NOT_RESOLVED_YET: { readonly code: 8; readonly name: "EPROPOSAL_NOT_RESOLVED_YET"; readonly doc: "The proposal has not been resolved yet"; }; /** Metadata location cannot be longer than 256 chars */ export declare const EMETADATA_LOCATION_TOO_LONG: { readonly code: 9; readonly name: "EMETADATA_LOCATION_TOO_LONG"; readonly doc: "Metadata location cannot be longer than 256 chars"; }; /** Metadata hash cannot be longer than 256 chars */ export declare const EMETADATA_HASH_TOO_LONG: { readonly code: 10; readonly name: "EMETADATA_HASH_TOO_LONG"; readonly doc: "Metadata hash cannot be longer than 256 chars"; }; //# sourceMappingURL=errors.d.ts.map