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