meta-contract-debug
Version:
Meta Contract SDK
17 lines (16 loc) • 517 B
TypeScript
import { Bytes } from 'mvc-scrypt';
declare type ContractConfig = {
transferCheckCodeHashArray: string[];
unlockContractCodeHashArray: string[];
tokenGenesisSize: number;
tokenSize: number;
tokenTransferCheckSizes: number[];
};
export declare class ContractUtil {
static transferCheckCodeHashArray: Bytes[];
static unlockContractCodeHashArray: Bytes[];
static tokenCodeHash: string;
static tokenGenesisCodeHash: string;
static init(config?: ContractConfig): void;
}
export {};