Brice
Brice
It would be convenient if the account names from Devnet.toml could be used in a deployment plan instead of needing to keep the addresses in sync across the multiple different...
`clarinet check` reports the number of contracts checked, e.g.: ``` ✔ 2 contracts checked ``` This number should not include contracts from `requirements`. Using the same project from #394 (below),...
It would be beneficial to help maintain the documentation on the [website](https://docs.hiro.so/smart-contracts/clarinet) if the README.md from this repo was automatically pushed to the docs repo whenever there is a release.
If a user has a bad mnemonic in a settings file (e.g. settings/Testnet.toml), clarinet will panic instead of reporting a nice error message. Users will often see this if they...
To help identify where our users are and where we need to focus, we should add the platform (e.g. Mac, Windows, Linux) to the telemetry events. I believe `std::env::consts::OS` should...
I think it would be nice to optionally have an environment variable that holds my selection for opting in/out of telemetry, since developers are likely to choose the same option...
We identified that there is a problem with the current cross-compile build for aarch64 (for Apple silicon). I think there are multiple phases to the solution for this: 1. Disable...
When a new version is released, there is nothing currently in place to automate the code generated in https://github.com/hirosystems/clarinet/blob/3a1ba93fa2fff4f9a0ee213edf493163ccbfdc65/components/clarinet-cli/src/generate/contract.rs#L79 We should be able to add something in the release script...
The following invalid clarity code will cause the AST visitor to crash: ```clarity (map-get? names-map (tuple (name))) ```
The REPL analyses are optional, checking for warnings in the code. These do not need to be run on the built-in contracts every time the REPL is used. Disable these...