Hugo C
Hugo C
- Required for https://github.com/hirosystems/clarinet-vscode/issues/4
### Issue When requiring `https://deno.land/[email protected]/testing/asserts.ts` **(version >= 0.129)** in a test file, `clarinet test` throws the following error: ``` error: TS2352 [ERROR]: Conversion of type 'T' to type 'string' may...
The `generate_default_deployment` can take quite a long time and currently runs every time a clarity file is opened or saved. - When reading the manifest, `compute_addresses` is called for every...
The clarinet-deno lib could be improved it two ways - fix many Deno lint warnings (const vs let, no unused var, etc) - improve typing (String instead of string, avoid...
It's possible to declare multiple contracts identifiers with the same source file in the Clarinet.toml ```toml [contracts.counter-1] path = "contracts/counter.clar" [contracts.counter-2] path = "contracts/counter.clar" ``` In this case, the "manifest.contracts"...
Currently, the "problems" (warnings and errors) of a contract are still displayed in the "problems" panel when the file is deleted. It should be refreshed. Use fs watchers in `clientOps`...
- [ ] Base PR on develop once #434 is merged Fix: https://github.com/hirosystems/clarinet-vscode/issues/6
### Bug `filter` throws an error when the test function is a native one, such as `is-err`, `is-ok`, `is-some`, `is-none`. The error is: **`use of illegal / unresolved function 'is-some`.**...
### Description wip ### Applicable issues - fixes # ### Additional info (benefits, drawbacks, caveats) ### Checklist - [ ] Test coverage for new or modified code paths - [...
The withdrawal of assets from L2 happen in two steps: call `stx-withdraw?` on L2 and then call `withdraw-stx` on L1 (function names [might change](https://github.com/hirosystems/stacks-subnets/issues/246)). At any point, we should be...