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

10 lines (9 loc) 439 B
import { Architecture } from "@dappnode/types"; /** * Returns the image path for the given container name, version and architecture * @param name Container name * @param version Container version * @param arch Container architecture in the format <os>/<arch> * @returns Image path in the format <name>_<version>_<os>-<arch>.txz */ export declare const getImageFileName: (name: string, version: string, arch: Architecture) => string;