Cameron Carstens
Cameron Carstens
This is what I had in mind initially as I see developers needing to do this often. The only problem being that this could get quite expensive. I bring this...
Closed by https://github.com/FuelLabs/sway/pull/4821
Could you add `.append_variable_outputs(1)` to your sdk harness call so that it looks like this and try again? ```rust contract_instance .with_account(recipient_wallet.clone()) .unwrap() .methods() .claim(stream_id) .append_variable_outputs(1) .call() .await .expect("Failed to claim");...
> > Could you add `.append_variable_outputs(1)` to your sdk harness call so that it looks like this and try again? > > ```rust > > contract_instance > > .with_account(recipient_wallet.clone()) >...
Closed by https://github.com/FuelLabs/sway/pull/5439
An external discussion has led to the conclusion that rather than introducing the `PredicateId` type, all semantic naming should refer to the "Predicate Address" rather than id or root. This...
Closed by https://github.com/FuelLabs/sway/pull/5596
Using the glob operator when importing `Vec` does not resolve the issue.
The same error is seen in this minimal repro: ```sway contract; struct MyGenericStruct { pub val: T, } impl From for raw_slice { fn from(my_struct: MyGenericStruct) -> Self { raw_slice::from_parts::(asm...
> I will look into this. It looks like it's hardcoded to 64 [here](https://github.com/FuelLabs/sway/blob/10b7221d6cee6e9d62d28e13ca14089203174c95/sway-lib-core/src/codec.sw#L669). This will be a problem as the SRC-11 example uses 741 characters.