Braqzen

Results 102 issues of Braqzen

Forc: `0.51.1` ```sway contract; use std::hash::Hash; abi Token { #[storage(write)] fn update(amount: u64); } storage { balances: StorageMap = StorageMap {} } impl Token for Contract { #[storage(write)] fn update(amount:...

### Changes - One word addition `is` added to note inside the spawning tutorial

Solidity permits the instantiation and storage of types which can be called directly. This would be a useful but low priority UX feature for Sway. ```sway use interface::MyExternalContractAbi; use std::constants::ZERO_B256;...

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-client

Forc `0.52.0` but upgraded from v49 or so where this was also an issue. Struct `A` has 2 `impl` blocks. One commented out at the top and another lower down...

bug
compiler: frontend

# Description Type: Improvement ## _What_ does your feature accomplish? It makes it easier to navigate the standard library depending on the context. Furthermore, it makes it easier to scale...

enhancement
good first issue
bikeshedding
lib: std
big

A configurable block exists in the entry point of a contract or script. The variables inside the block are accessible in the commonly named `main.sw` file. These variables are not...

enhancement
language feature
compiler: frontend

A function that contains a `require()` statement that uses `.call()` to change the state of the contract will propagate the error to the test enabling the developer to catch that...

After creating a new account and getting funds from the beta-4 faucet the balance on my account 0.5 ETH. Running the command ```bash forc wallet account 0 balance ``` The...

enhancement

Write a user interface that allows users to interact with the escrow smart contract Related: [Frontend for Escrow contracts](https://github.com/FuelLabs/fuels-ui/issues/26)

New Feature
App: Escrow
User Interface