UNPKG

@ledgerhq/coin-filecoin

Version:
14 lines 501 B
/// <reference types="node" /> /// <reference types="node" /> import { Account } from "@ledgerhq/types-live"; import { Transaction } from "../types"; import BigNumber from "bignumber.js"; export interface toCBORResponse { txPayload: Buffer; recipientToBroadcast: string; parsedSender: string; encodedParams: string; amountToBroadcast: BigNumber; } export declare const toCBOR: (account: Account, tx: Transaction) => Promise<toCBORResponse>; //# sourceMappingURL=serializer.d.ts.map