Braqzen

Results 102 issues of 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...

good first issue
The Sway Book

## 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...

enhancement
lib: std
compiler: frontend
compiler: parser

## 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...

enhancement
good first issue
forc

## 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...

good first issue
lib: std
code quality

## 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...

bug
P: critical
compiler: frontend

# 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 {...

enhancement
compiler: frontend
compiler: ui

# 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...

documentation
good first issue

# 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...

good first issue
ci
lib: std
formatter
lib: core

## 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...

good first issue
The Sway Book

What is the difference between the two commands? I thought that `--dry-run` does not change the state but apparently `--simulate` doesn't either. ![1](https://user-images.githubusercontent.com/103777923/191747692-b9f2dfb7-dc0d-4660-91f8-17d78765e057.png) ![2](https://user-images.githubusercontent.com/103777923/191748091-dcc1628f-7111-4a1a-86cd-e1ef2f017631.png)

good first issue
forc