UNPKG

@vechain/vebetterdao-contracts

Version:

Open-source repository that houses the smart contracts powering the decentralized VeBetterDAO on the VeChain Thor blockchain.

10 lines (9 loc) 347 B
import { uploadMetadataToIpfs } from "../../helpers/uploadFolderToIpfs"; import path from "path"; const METADATA_PATH = path.join(__dirname, "../../../metadata/galaxyMember/metadata"); uploadMetadataToIpfs(METADATA_PATH) .then(() => process.exit(0)) .catch(error => { console.error("Unhandled error:", error); process.exit(1); });