UNPKG

@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

16 lines (15 loc) 469 B
import { PackageToBuildProps } from "../../types.js"; import { UploadTo } from "../../releaseUploader/index.js"; export interface BuildAndUploadOptions { contentProvider: string; uploadTo: UploadTo; userTimeout?: string; skipSave?: boolean; skipUpload?: boolean; requireGitData?: boolean; deleteOldPins?: boolean; composeFileName: string; dir: string; variantsDirPath?: string; packagesToBuildProps: PackageToBuildProps[]; }