UNPKG

@near-js/accounts

Version:

Classes encapsulating account-specific functionality

16 lines (14 loc) 703 B
declare enum MultisigDeleteRequestRejectionError { CANNOT_DESERIALIZE_STATE = "Cannot deserialize the contract state", MULTISIG_NOT_INITIALIZED = "Smart contract panicked: Multisig contract should be initialized before usage", NO_SUCH_REQUEST = "Smart contract panicked: panicked at 'No such request: either wrong number or already confirmed'", REQUEST_COOLDOWN_ERROR = "Request cannot be deleted immediately after creation.", METHOD_NOT_FOUND = "Contract method is not found" } declare enum MultisigStateStatus { INVALID_STATE = 0, STATE_NOT_INITIALIZED = 1, VALID_STATE = 2, UNKNOWN_STATE = 3 } export { MultisigDeleteRequestRejectionError, MultisigStateStatus };