UNPKG

meta-contract

Version:

Meta Contract SDK

16 lines (15 loc) 470 B
import { Bytes } from '../scryptlib'; 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 init(config?: ContractConfig): void; } export {};