import { Feature, ProjectConfig } from "@patchworkdev/common/types";

const patchFragmentProjectConfig: ProjectConfig = {
    name: "PatchFragmentProject",
    scopes: [
        {
            name: "test",
            whitelist: true,
            userAssign: false,
            userPatch: false,
        }
    ],
    contracts: {
        "PatchFragment": {
            scopeName: "test",
            name: "PatchFragment",
            symbol: "PFRAG",
            baseURI: "https://mything/my/",
            schemaURI: "https://mything/my-metadata.json",
            imageURI: "https://mything/my/{tokenID}.png",
            fields: [
                {
                    id: 1,
                    key: "name",
                    type: "char32",
                    description: "Name"
                }
            ],
            features: [Feature.PATCH, Feature.FRAGMENTSINGLE]
        }
    }
};

export default patchFragmentProjectConfig;;