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