Francesco Ceccon
Francesco Ceccon
The [new version of wagmi](https://wagmi.sh/docs/getting-started) changed their API and now it's closer to the API in `starknet-react`. From a discussion with @pet3ris we started thinking about aligning our API to...
PR #143 is failing to build because they added the new hook to the example, which uses the published version of the package. The solution is to: * have the...
JSON RPC supports batching multiple requests into one (batching). The performance gain is quite high, for example it takes around 80-100 ms to fetch a single block, but ~200ms to...
## Feature Request ### Crates * `tonic-reflection` ### Motivation `grpcurl` requires the reflection server to implement all reflection methods to resolve types, including `all_extension_numbers_of_type`. Since the server does not implement...
We should create a type-safe encoder/decoder (based on #177) that then we can leverage in our hooks. This fixes #98
Create a library [similar to abitype](https://github.com/wagmi-dev/abitype).
We should have two hooks to fetch transaction receipts: - `useTransactionReceipt` - `useTransactionsReceipts`
Someone mentioned that the library is not working with StarkNet mainnet. We should investigate and fix this.
I noticed that when the gateway returns a "too many requests" error, the error I get from the `SequencerGatewayProvider` is a deserialization error (because the gateway returns an html page)....
I'm testing parts my smart contracts using `fast-check` (a property based testing library similar to quickcheck). In this case I'm interested in checking general properties of my system rather than...