UNPKG

@signumjs/contracts

Version:

Smart Contracts package for Signum Network

13 lines (12 loc) 284 B
/** * Generic Datatype for contracts * * The data type can only be a numeric as contracts accept only longs. * * * <b>Text is not supported</b> * * @see {@link GenerateMethodCallArgs} and {@link generateMethodCall} * */ export type ContractData = string | number | boolean;