UNPKG

@patchworkdev/common

Version:

Patchwork Development Kit

11 lines (10 loc) 555 B
import { ContractConfig, MintConfig, ProjectConfig, ScopeConfig } from "../types"; export declare class JSONProjectConfigGen { constructor(); gen(projectConfig: ProjectConfig): string; genScopeConfig(scopeConfig: ScopeConfig): string; genMintConfigs(mintConfigs: Record<string, MintConfig> | undefined): string; genPatchFees(patchFees: Record<string, number> | undefined): string; genAssignFees(assignFees: Record<string, number> | undefined): string; genContractConfig(name: string, value: string | ContractConfig): string; }