UNPKG

@pokt-network/pocket-js

Version:

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

23 lines (22 loc) 691 B
/// <reference types="node" /> import { ProtoStdTx } from '../models/proto/generated/tx-signer'; export declare class ProtoTxDecoder { unmarshalStdTx(encodedTxBytes: Buffer, length?: number): ProtoStdTx; decodeStdTxData(protoStdTx: ProtoStdTx): { memo: string; entropy: number; fee: import("../models/proto/generated/tx-signer").Coin[]; msg: { typeUrl: "/x.nodes.MsgSend"; value: { amount: string; FromAddress: string; ToAddress: string; }; }; signature: { publicKey: string; Signature: string; } | undefined; }; }