Francesco Ceccon

Results 143 comments of Francesco Ceccon

So I thought more about this and my conclusion is that `InjectedConnector` needs to be specific to a single injected wallet for it to work well. With the current abstraction...

It's possible if you have a version of starknet.js that supports rpc providers. Just specify the rpc provider as `defaultProvider`. ```tsx ... ``` As for the second question, it should...

Yes, that's the best way to add batching. Also notice a couple of things: - The return values can be in any order (the server can process batches in parallel,...

The library would need a response enum that contains all type of response values. An alternative is to return the raw json values then let users deserialize them (all types...

Looks good, but I believe the callbacks should be called inside the `onSuccess` callback for `useQuery`.

Hey @J4ckyLIM, any blocker on this issue I can help with?

Hey, I added the `useTransactionReceipt` hook in #180. I think you should add the callbacks to that hook and not `useTransaction`.

This is a long standing issue and as you say there is no clear way forward. The wallets inject themselves at any point after the page loads and so it's...

In wagmi you need to specify the connectors manually so there is no issue. I agree `connectors` and `available` should be functions not values, probably a good idea to do...

I believe this is related to #170, need to track the user preferences on top of wallet availability.