Benjamin
Benjamin
Added [Rising-Revenant](https://github.com/grugslair/Rising-Revenant) to the startknet ecosystem
Fix for issue #6462 - - - This change is [](https://reviewable.io/reviews/starkware-libs/cairo/6463)
# Description ## Related issue Fixes #2785 ## Tests - [ ] Yes - [ ] No, because they aren't needed - [ ] No, because I need help ##...
Add support for fixed sized arrays in dojo models.
# Description ## THIS WILL NEED AN UPDATE TO THE SCARB REPO https://github.com/dojoengine/scarb/blob/fix-unit-type/scarb/Cargo.toml#L49 Before the hash of the model name was computed everyt time it was called, this has been...
# Description Added the write schema method to dojo to write part of a model efficiently ## Related issue ## Tests - [x] Yes - [ ] No, because they...
# Feature Request **Describe the Feature Request** Add the ToSpanTrait to Spans to enhance generics ```rust fn do_something_on_many(collection: TS){ collection.to_span().into_iter().map(|c| c.do_something()) } ``` Where `do_something_on_many` can take `Span`, `Array` or...
Gave Span the ToSpanTrait to help with generics eg: ```rust fn do_something_on_many(collection: TS){ collection.to_span().into_iter().map(|c| c.do_something()) } ``` Where `do_something_on_many` can take `Span`, `Array` or `[T; N]` and in some cases...