UNPKG

@pokt-network/pocket-js

Version:

Pocket-js core package with the main functionalities to interact with the Pocket Network.

28 lines (27 loc) 858 B
import { TxMsg } from "./tx-msg"; /** * Model representing a MsgNodeUnjail to unjail as an Node in the Pocket Network */ export declare class MsgProtoNodeUnjail extends TxMsg { readonly KEY: string; readonly AMINO_KEY: string; readonly nodeAddress: string; readonly signerAddress: string; /** * @param {string} nodeAddress - Node address to be unjail * @param {string} signerAddress - Signer address (who triggered the unjail) */ constructor(nodeAddress: string, signerAddress: string); /** * Converts an Msg Object to StdSignDoc * @returns {object} - Msg type key value. * @memberof MsgNodeUnjail */ toStdSignDocMsgObj(): object; /** * Converts an Msg Object to StdTx * @returns {any} - Msg type key value. * @memberof MsgNodeUnjail */ toStdTxMsgObj(): any; }