Braqzen
Braqzen
## Summary The current examples section contains a few small... examples which do not demonstrate the common usage of the language but instead something a little closer to mini-contracts. The...
## Summary Currently the `Contract` does not behave like an object that takes `self` as a parameter meaning it does not allow the user to do something like `self.contract_id()` where...
## Summary Cargo allows you to [add, remove and upgrade](https://github.com/killercup/cargo-edit) dependencies. It would be nice, and has been requested externally, that a similar command is added to `forc`. Moreover, it...
## Summary Two functions exist under different names in two different places. I will argue that the first one should remain (because of the explicit name that differentiates from the...
## Summary When importing a type into `file2` and using that imported type in a custom type I must reimport the same type (not the custom one) into `file1` in...
# Repro ```rust contract; // Correct path // use std::vm::evm::evm_address::EvmAddress; use std::vm::evm::EvmAddress; abi MyContract { fn test_function() -> EvmAddress; } impl MyContract for Contract { fn test_function() -> EvmAddress {...
# Summary Reading the [tx_format.md](https://github.com/FuelLabs/fuel-specs/blob/master/specs/protocol/tx_format.md) documentation is confusing because none of the sections explain what any of the sections are, why they are important, where they come from, how they...
# Summary At the moment if you take a look at CI ([lib](https://github.com/FuelLabs/sway/blob/master/.github/workflows/ci.yml#L42) & [core](https://github.com/FuelLabs/sway/blob/master/.github/workflows/ci.yml#L24)) it appears that the code is run through the formatter. I have just submitted a...
## Summary The original issue mentioned some points that could be added to the book. After some comments a suggestion came in for separating the book into components and thus...
What is the difference between the two commands? I thought that `--dry-run` does not change the state but apparently `--simulate` doesn't either.  