ask
ask copied to clipboard
The framework to write WASM smart contracts for Substrate Frame Pallet-Contracts in AssemblyScript.
Bumps [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) from 4.14.202 to 4.17.3. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.10.5 to 20.12.12. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.3.3 to 5.4.5. Release notes Sourced from typescript's releases. TypeScript 5.4.5 For release notes, check out the release announcement. For the complete list of fixed issues, check...
Bumps [mocha](https://github.com/mochajs/mocha) from 10.3.0 to 10.4.0. Release notes Sourced from mocha's releases. v10.4.0 10.4.0 / 2024-03-26 :tada: Enhancements #4829 feat: include .cause stacks in the error stack traces (@voxpelli) #4985...
Bumps [eslint](https://github.com/eslint/eslint) from 8.56.0 to 8.57.0. Release notes Sourced from eslint's releases. v8.57.0 Features 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas) dca7d0f feat: Enable eslint.config.mjs...
# Problem: - Error while deploying contracts that contains methods that deletes storage states. That includes operation like `Mapping.delete()` that call `env().clearContractStroage()`. ### Temporary Fix: - Commented out the new...
## Changes - Add Tuple & Enum Variant support in `ask-transform`'s Metadata vistitor. - Add `debugMessage()` in env for debugging (https://github.com/ask-lang/ask/pull/260/commits/e0e22609595fc1f8eea5436308cebbe3ba55d784) # Ask! Tuple & Enum Support (Experimental) AssemblyScript does...
Track adaptations of upstream libraries: - [x] https://github.com/as-pect/as-pect - [x] https://github.com/as-pect/visitor-as - [ ] https://github.com/MaxGraey/as-bignum The AssembyScript some features are changed in 0.25.x. So there need more researches and code...
The ask! v0.1.0 (`ask-old`) supported the cross contract calls via the use of `@dynamic` decorator. Example - https://github.com/ask-lang/ask-old/tree/master/examples/crosscall Does ask! v0.4.0 supports the cross contract calls? There is no reference...
## Problem Error when build contracts when using `Mapping` type where type `V` take more than one required constructor arguments. ### Example contract Using `Uint8Array` for mapping value, it takes...