UNPKG

@signumjs/core

Version:

Principal package with functions and models for building Signum Network applications.

17 lines (16 loc) 332 B
/** * The argument object for {@link ContractApi.getContractsByAccount} * * * @category args */ export interface GetContractsByAccountArgs { /** * Account Id */ accountId: string; /** * The hash of the machine code, to get only the contracts that match this hash */ machineCodeHash?: string; }