rashad
rashad
- Might require a bit of investigation - Whilst working on https://github.com/FuelLabs/fuel-indexer/pull/1341 I noticed that we currently don't support `Result` types - Not sure if we should, but needs a...
- Might require a bit of investigation - Whilst working on https://github.com/FuelLabs/fuel-indexer/pull/1341 I noticed that we currently don't support `Bytes` or `RawBytes` types - Not sure if we should, but...
- Might require a bit of investigation - Whilst working on https://github.com/FuelLabs/fuel-indexer/pull/1341 I noticed that we currently don't support other generic Sway types - While we do support some generic...
- In order to complete https://github.com/FuelLabs/fuel-indexer/issues/881 we need to create a standard for including `Witness` data in a `Transaction` - where this `Witness` data can be filtered on a `Transaction`...
- `Witness` data are arbitrarily-sized byte arrays included in transactions that can include different types of data - Since `Witness` data is just bytes, we should investigate whether or not...
- We're temporarily wrapping `fuel_gql_client::client::types::TransactionStatus` because using just `fuel_gql_client::client::types::TransactionStatus` requires importing the entire `fuel_gql_client` crate, which won't easily compile to WASM - This issue is just an FYI so we...
- Fixes: - [ ] `Indexed` blocks shows the current block height, not the number of actual blocks that have been indexed - Actual blocks indexed is `$current_height - $num_blocks`...
- Currently, if you `forc index build` with comments in your manifest, these comments will be removed after your manifest gets updated and re-written - We should preserve whatever comments...
- We previously added support for many-to-many (M2M) relationships https://github.com/FuelLabs/fuel-indexer/issues/947 - As a quick win, we just implemented this via string hacking ([here](https://github.com/FuelLabs/fuel-indexer/blob/7a23f76c831f3b2966b7e5980ae7f526d2521bf3/packages/fuel-indexer-schema/src/join.rs#L61)) - Now that this functionality is stable...
- For some reason (I'm sure a good reason) we've pinned a few crates to `=0.35.3` - These crates are: - fuel-tx - fuel-types - fuel-vm - Let's figure out...