- Update peer depedency for
@concordium/web-sdk
to support any version above7
- Fix issue related to inferring module type names from the input file name, by removing characters, which are not valid in type names.
- Improve information when reporting progress during code-generation.
- Generate
create<ContractName>ParameterWebWallet
andcreate<EntrypointName>ParameterWebWallet
functions for constructing the smart contract parameters in the format used by the Concordium Web-Wallet. - Minor breaking change:
create<EntrypointName>Parameter
function for contract entries andcreate<ContractName>Parameter
function in module are no longer generated when parameter schema type isUnit
. These functions are mainly used internally, but are still exposed. - Fix bug for generating JSON for schema type
ULeb128
andILeb128
. - Add optional flag
--ts-nocheck
, enabling it will add// @ts-nocheck
in each generated file. - Add
--output-type <type>
flag to CLI allowing to specify whether to generate TypeScript or JavaScript directly. - Fix the executable version of the package on Windows.
- Fix missing
bin
in deployed package.
- Initial release