elrond-wasm 0.32.0, mandos 0.14.0
·
7006 commits
to master
since this release
- VM new functionality added as part of the environment interface 1.2:
- Fully managed functionality for elliptic curves (no allocator);
- Fully managed cryptographic functions (no allocator);
- More efficient printing of big ints and hex;
- Functionality available by adding the
ei-1-2flag to contracts.
BigFloatfunctionality. Since the functionality is not yet deployed on mainnet, use flagbig-floatto use.- Major refactoring of the call value mechanism:
TokenIdentifiernow only refers to ESDT, for mixed EGLD+ESDT we haveEgldOrEsdtTokenIdentifier.EsdtTokenPaymentnow only refers to ESDT, for mixed EGLD+ESDT we haveEgldOrEsdtTokenPayment.- Compact version for multi-transfer:
let [payment_a, payment_b, payment_c] = self.call_value().multi_esdt();. - Explicit
single_esdtvs.single_fungible_esdtvs.egld_or_single_esdtvs.egld_or_single_fungible_esdt. - Payment arguments are still supported, although discouraged. They always assume the EGLD+ESDT scenario.
ManagedOptionprovides some minor optimization for specific use-cases. Mostly for use in the framework.- Cleanup in the callback mechanism and in the
SendApi. SparseArrayimplementation.UniqueIdMapper- efficient storage mapper for holding unique values.- The ABI also contains events.
- New standard module:
StakingModule.