filecoin-pin
Version:
Bridge IPFS content to Filecoin Onchain Cloud using familiar tools
18 lines • 570 B
TypeScript
/**
* Payment status display command
*
* Shows current payment configuration and balances for Filecoin Onchain Cloud.
* This provides a quick overview of the user's payment setup without making changes.
*/
import { type CLIAuthOptions } from '../utils/cli-auth.js';
interface StatusOptions extends CLIAuthOptions {
includeRails?: boolean;
}
/**
* Display current payment status
*
* @param options - Options from command line
*/
export declare function showPaymentStatus(options: StatusOptions): Promise<void>;
export {};
//# sourceMappingURL=status.d.ts.map