Optionalaccount_Whether to enforce account_id well-formed-ness where it wasn't enforced historically.
Optionalinitial_The initial number of memory pages. NOTE: It's not a limiter itself, but it's a value we use for initial_memory_pages.
Optionalmax_Max number of actions per receipt.
Optionalmax_Max length of arguments in a function call action.
Optionalmax_Max contract size
Optionalmax_If present, stores max number of elements in a single contract's table
Optionalmax_If present, stores max number of functions in one contract
Optionalmax_Max amount of gas that can be used, excluding gas attached to promises.
Optionalmax_Max length of any method name (without terminating character).
Optionalmax_Max length of returned data
Optionalmax_Max storage key size
Optionalmax_Max storage value size
Optionalmax_If present, stores max number of locals declared globally in one contract
Optionalmax_What is the maximal memory pages amount is allowed to have for a contract.
Optionalmax_Max total length of all method names (including terminating character) for a function call permission access key.
Optionalmax_Max number of input data dependencies
Optionalmax_Maximum number of log entries.
Optionalmax_Maximum number of registers that can be used simultaneously.
Note that due to an implementation quirk [read: a bug] in VMLogic, if we have this number of registers, no subsequent writes to the registers will succeed even if they replace an existing register.
Optionalmax_Max number of promises that a function call can create
Optionalmax_Max receipt size
Optionalmax_Maximum number of bytes that can be stored in a single register.
Optionalmax_How tall the stack is allowed to grow?
See https://wiki.parity.io/WebAssembly-StackHeight to find out how the stack frame cost is calculated.
Optionalmax_If present, stores max number of tables declared globally in one contract
Optionalmax_Maximum total length in bytes of all log messages.
Optionalmax_Max total prepaid gas for all function call actions per receipt.
Optionalmax_Max transaction size
Optionalmax_Maximum number of bytes for payload passed over a yield resume.
Optionalper_Hard limit on the size of storage proof generated while executing a single receipt.
Optionalregisters_Limit of memory used by registers.
Optionalyield_Number of blocks after which a yielded promise times out.
Describes limits for VM and Runtime. TODO #4139: consider switching to strongly-typed wrappers instead of raw quantities