@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
18 lines (17 loc) • 565 B
TypeScript
import { Compose, Manifest } from "@dappnode/types";
/**
* Temporary compose is written to the root directory
* It is used to generate the docker images
*/
export declare function writeTmpCompose({ compose, composeFileName, manifest, rootDir }: {
compose: Compose;
composeFileName?: string;
manifest: Manifest;
rootDir: string;
}): void;
export declare function writeReleaseCompose({ compose, composeFileName, manifest, releaseDir }: {
compose: Compose;
composeFileName?: string;
manifest: Manifest;
releaseDir: string;
}): void;