Braqzen
Braqzen
The quickstart contains sections for a contract and a frontend but does not contain a guide for the faucet. It may be obvious to us but if someone has never...
The quickstart contains sections for a contract and a frontend but does not contain a guide for the bridge. If a user has not engaged in defi or bridging then...
The quickstart contains sections for a contract and a frontend but does not contain a guide for the indexer. Indexing your own data or connecting to an external index is...
# Summary When a Tx is made it gets added to the Tx section at the bottom of the screen. The problem is the order that it is added in...
## Summary The explorer is limited to 10 Tx's. Pagination should be added to allow the user to view all of their Tx's. This is especially important since the Tx's...
## Summary As a user I would like to be able to filter the Tx's e.g. by a time range, address, interaction type, amount etc. There aren't many fields there...
`Forc: latest (0.60.0)` Repro: `forc build` ```sway contract; abi TestContract { fn test_method(); } impl TestContract for Contract { fn test_method() { while (true && true) {} } } ```...
Version `0.44.0` ```sway script; use std::{constants::ZERO_B256, vm::evm::evm_address::EvmAddress}; configurable { // SIGNER: EvmAddress = EvmAddress::from(ZERO_B256), SIGNER: EvmAddress = EvmAddress { value: ZERO_B256, }, } fn main() {} ``` Run `forc fmt`...
### Context Old code base used `forc 0.49.X` with `fuels 0.55.0` in which tests have passed. Repo was bumped to `forc 0.61.2` and `fuels 0.64.0` and some tests started to...
Cargo enables the declaration of dependencies inside the workspace file, enabling individual crates to opt into the same version via `package = { workspace = true }`. This is a...