UNPKG

meta-contract

Version:

Meta Contract SDK

15 lines (14 loc) 399 B
import { Bytes } from 'mvc-scrypt'; type ContractConfig = { unlockContractCodeHashArray: string[]; tokenGenesisSize: number; tokenSize: number; nftSellSize: number; unlockContractSizes: number[]; }; export declare class ContractUtil { static unlockContractCodeHashArray: Bytes[]; static tokenCodeHash: string; static init(config?: ContractConfig): void; } export {};