UNPKG

@minima-global/mds

Version:

Official MDS Typescript Library for Minima. Used for creating minidapps that interact with the Minima Blockchain.

27 lines 620 B
/** * Parameters for the scripts command. * List all scripts or search for a script / basic address your node is *tracking. */ export type ScriptsParams = { /** * The address to search for. */ address?: string; }; export type NewScriptParams = { script: string; trackall: 'true' | 'false'; clean?: 'true' | 'false'; }; export type RunScriptParams = { script: string; state?: string; prevstate?: string; globals?: string; signatures?: string; extrascripts?: string; }; export type RemoveScriptParams = { address: string; }; //# sourceMappingURL=params.d.ts.map