@dappnode/dappnodesdk
Version:
dappnodesdk is a tool to make the creation of new dappnode packages as simple as possible. It helps to initialize and publish in ethereum blockchain
14 lines (13 loc) • 430 B
TypeScript
import { IReleaseUploader } from "../interface.js";
export declare class ReleaseUploaderIpfsNode implements IReleaseUploader {
networkName: string;
ipfsProvider: string;
constructor({ ipfsProvider }: {
ipfsProvider: string;
});
addFromFs({ dirPath, onProgress }: {
dirPath: string;
onProgress?: (percent: number) => void;
}): Promise<string>;
testConnection(): Promise<void>;
}