@pokt-network/pocket-js
Version:
Pocket-js core package with the main functionalities to interact with the Pocket Network.
25 lines (24 loc) • 665 B
TypeScript
import { TxMsg } from "./tx-msg";
/**
* Model representing a MsgNodeUnjail to unjail as an Node in the Pocket Network
*/
export declare class MsgNodeUnjailTx extends TxMsg {
readonly AMINO_KEY: string;
readonly address: string;
/**
* @param {string} address - Address value
*/
constructor(address: 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;
}