@provenanceio/wallet-utils
Version:
Typescript Utilities for Provenance Blockchain Wallet
11 lines (10 loc) • 443 B
JavaScript
import * as google_protobuf_any_pb from 'google-protobuf/google/protobuf/any_pb';
import { base64ToBytes } from '@tendermint/belt';
/**
* Converts a base64 message into a google proto
* @param msgAnyB64 base64 encoded string
* @returns google proto of the provided base64 message string
*/
export var msgAnyB64toAny = function msgAnyB64toAny(msgAnyB64) {
return google_protobuf_any_pb.Any.deserializeBinary(base64ToBytes(msgAnyB64));
};