mcps-sdk-js
Version:
MCPS JavaScript SDK
61 lines (60 loc) • 2.12 kB
TypeScript
import { Client } from '../client';
/**
* ProtobufModel module allows you to deserialize protobuf serialize string
*
* @category Modules
* @since v0.17
*/
export declare class Protobuf {
/** @hidden */
private client;
/** @hidden */
constructor(client: Client);
/**
* deserialize Tx
* @param {[type]} Tx:string base64 string
* @param {[type]} returnProtobufModel:bool If true, return the Protobuf model
* @return {[type]} Tx object
*/
deserializeTx(tx: string, returnProtobufModel?: boolean): object;
/**
* Unpack protobuffer tx msg
* @param {[type]} returnProtobufModel:bool If true, return the Protobuf model
* @return {[type]} message object
*/
unpackMsg(msg: {
typeUrl: string;
value: string;
}, returnProtobufModel?: boolean): object | null;
/**
* deserialize SignDoc
* @param {[type]} signDoc:string base64 string
* @param {[type]} returnProtobufModel:bool If true, return the Protobuf model
* @return {[type]} signDoc object
*/
deserializeSignDoc(signDoc: string, returnProtobufModel?: boolean): object;
/**
* deserialize txRaw
* @param {[type]} txRaw:string base64 string
* @param {[type]} returnProtobufModel:bool If true, return the Protobuf model
* @return {[type]} txRaw object
*/
deserializeTxRaw(txRaw: string, returnProtobufModel?: boolean): object;
/**
* deserialize Signing Info
* @param {[type]} signingInfo:string base64 string
* @param {[type]} returnProtobufModel:bool If true, return the Protobuf model
* @return {[type]} Signing Info object
*/
deserializeSigningInfo(signingInfo: string, returnProtobufModel?: boolean): object;
/**
* deserialize Pubkey
* @param {[type]} pubKey:{typeUrl:string, value:string}
* @param {[type]} returnProtobufModel:bool If true, return the Protobuf model
* @return {[type]} pubKey object
*/
deserializePubkey(pubKey: {
typeUrl: string;
value: string;
}, returnProtobufModel?: boolean): object;
}