UNPKG

@provenanceio/wallet-utils

Version:

Typescript Utilities for Provenance Blockchain Wallet

12 lines 425 B
/** * Formats CancelSoftwareUpgradeProposal messages for display * @param message of type CancelSoftwareUpgradeProposal * @returns object with CancelSoftwareUpgradeProposal fields */ export var cancelSoftwareUpgradeProposal = function cancelSoftwareUpgradeProposal(message) { return { proposalType: 'Cancel Software Upgrade Proposal', title: message.getTitle(), description: message.getDescription() }; };