UNPKG

filecoin-pin

Version:

Bridge IPFS content to Filecoin Onchain Cloud using familiar tools

17 lines 533 B
/** * Deposit/top-up command for Filecoin Pay * * Provides two modes: * - Explicit amount: --amount <USDFC> * - By duration: --days <N> (fund enough to keep current usage alive for N days) */ import { type CLIAuthOptions } from '../utils/cli-auth.js'; export interface DepositOptions extends CLIAuthOptions { amount?: string | undefined; days?: number | undefined; } /** * Run the deposit/top-up flow */ export declare function runDeposit(options: DepositOptions): Promise<void>; //# sourceMappingURL=deposit.d.ts.map