@ledgerhq/coin-filecoin
Version:
Ledger Filecoin Coin integration
14 lines • 501 B
TypeScript
/// <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