import { ProjectConfig } from "@patchworkdev/common/types";
const rizzlerProjectConfig: ProjectConfig = {
name: "RizzlerProject",
scopes: [
{
name: "rizzler",
whitelist: true,
userAssign: false,
userPatch: false,
}
],
contracts: {
"Rizzler": {
scopeName: "rizzler",
name: "Rizzler",
symbol: "RZLR",
baseURI: "https://rizzco/",
schemaURI: "https://rizzco/rizzler-schema.json",
imageURI: "https://rizzco/assets/{tokenID}.png",
fields: [
{
id: 1,
key: "shortname",
type: "char16",
description: "Short Name"
},
{
id: 2,
key: "count",
type: "uint64",
description: "Rizz Count"
},
{
id: 3,
key: "rizz",
type: "uint64",
description: "Rizz Level"
}
],
features: []
}
}
};
export default rizzlerProjectConfig;