meta-contract-debug
Version:
Meta Contract SDK
15 lines (14 loc) • 407 B
TypeScript
import { Bytes } from 'mvc-scrypt';
declare 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 {};