UNPKG

@pokt-network/pocket-js

Version:

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

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