Umi — API References - v1.3.0
    Preparing search index...

    Type Alias IrysUploader

    IrysUploader: UploaderInterface & {
        fund: (amount: SolAmount, skipBalanceCheck: boolean) => Promise<void>;
        getBalance: () => Promise<SolAmount>;
        getUploadPriceFromBytes: (bytes: number) => Promise<SolAmount>;
        irys: () => Promise<BaseNodeIrys | BaseWebIrys>;
        withdraw: (amount: SolAmount) => Promise<void>;
        withdrawAll: (amount: SolAmount) => Promise<void>;
    }