UNPKG

filecoin-pin

Version:

Bridge IPFS content to Filecoin Onchain Cloud using familiar tools

13 lines 356 B
/** * payments fund command * * Adjusts funds to exactly match a target runway (days) or a target deposited amount. */ export interface FundOptions { privateKey?: string; rpcUrl?: string; exactDays?: number; exactAmount?: string; } export declare function runFund(options: FundOptions): Promise<void>; //# sourceMappingURL=fund.d.ts.map