@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
8 lines • 344 B
JavaScript
/**
* Returns the legacy image path for the given container name and version
* @param name Container name
* @param version Container version
* @returns Legacy image path in the format <name>_<version>.tar.xz
*/
export const getLegacyImagePath = (name, version) => `${name}_${version}.tar.xz`;
//# sourceMappingURL=getLegacyImagePath.js.map