UNPKG

@patchworkdev/common

Version:

Patchwork Development Kit

23 lines (21 loc) 627 B
import { ContractConfig, Feature, FunctionConfig } from "@patchworkdev/common/types"; const config: ContractConfig = { "scopeName": "test", "name": "AccountPatch", "symbol": "AP", "baseURI": "https://mything/my/", "schemaURI": "https://mything/my-metadata.json", "imageURI": "https://mything/my/{tokenID}.png", "features": [Feature.ACCOUNTPATCH], "fields": [ { "id": 1, "key": "name", "type": "char32", "description": "Name", "functionConfig": FunctionConfig.ALL, } ], "fragments": [] } export default config;