UNPKG

@pokt-network/pocket-js

Version:

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

26 lines (25 loc) 743 B
import { TxMsg } from "./tx-msg"; /** * Model representing a MsgAppStake to unstake an Application in the Pocket Network */ export declare class MsgAppUnstake extends TxMsg { readonly AMINO_KEY: string; readonly appAddress: string; /** * The address hex of the Application to unstake for * @param {string} appAddress - Application address */ constructor(appAddress: string); /** * Converts an Msg Object to StdSignDoc * @returns {object} - Msg type key value. * @memberof MsgAppUnstake */ toStdSignDocMsgObj(): object; /** * Converts an Msg Object to StdSignDoc * @returns {any} - Msg type key value. * @memberof MsgAppUnstake */ toStdTxMsgObj(): any; }