UNPKG

@pokt-network/pocket-js

Version:

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

27 lines (26 loc) 728 B
import { TxMsg } from "./tx-msg"; /** * Model representing a MsgAppUnjail to unjail an Application in the Pocket Network */ export declare class MsgProtoAppUnjail extends TxMsg { readonly KEY: string; readonly AMINO_KEY: string; readonly address: string; /** * * @param {string} address - The address of the Application to unjail */ constructor(address: string); /** * Converts an Msg Object to StdSignDoc * @returns {object} - Msg type key value. * @memberof MsgAppUnjail */ toStdSignDocMsgObj(): object; /** * Converts an Msg Object to StdTx * @returns {any} - Msg type key value. * @memberof MsgAppUnjail */ toStdTxMsgObj(): any; }