UNPKG

@provenanceio/wallet-utils

Version:

Typescript Utilities for Provenance Blockchain Wallet

16 lines (15 loc) 451 B
import { ReadableMessageNames } from 'types'; import { MsgVote } from '../../../../proto/cosmos/group/v1/tx_pb'; /** * Formats MsgVote (group) messages for display * @param message of type MsgVote (group) * @returns object with MsgVote fields */ export declare const msgGroupVote: (message: MsgVote) => { typeName: ReadableMessageNames; proposalId: number; voter: string; option: string; metadata: string; exec: string; };