You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A ethers to fuels migration or comparison guide would be nice. Most of the hackers in the hacker house were new to Fuel but had some previous experience with ethers or other Ethereum tooling.
I met some hackers who said that it would be easier for them to build React frontends with our SDK if we had dedicated React hooks. Something like wagmi. Someone from the Fuel community already started this project - fuels-react but it is no longer maintained.
The docs for the wallet sdk and the ts sdk are not in the same place. This can be a bit tricky for new devs.
We should have something like Rainbowkit for Fuel. Another React tooling request that is related to an Ethereum ecosystem counterpart. The frontend team has already built something like this but, again, it's not as easy to use as Rainbowkit. This is something we should look at.
Our official dev quickstart on the new Fuel Docs Hub should utilize our new Fuels CLI and the scaffolding tool. Running typegen and build commands again and again is not needed anymore, and not a pleasant dev experience.
There are not enough (or any) written guides or video guides where we (or someone else from the community) showcases how to build an app start-to-finish using the SDK.
You need to have some balance in your wallet even if you want to just read from a contract (.simulate()). This is not ideal
The text was updated successfully, but these errors were encountered:
Hey, this is nice feedback. I'm going to comment on some of them here:
2. We already have an implementation of the hooks for interacting with the SDK and Wallet SDK. @fuel-wallet/react you can take a look at the docs: https://docs.fuel.network/docs/wallet/dev/hooks-reference/ is getting better on the new version that is going to be released with the new Connectors.
3. This is a on going conversation. And with the new version of the Wallet SDK, we can move it to TS-SDK.
4. We recently implemented a new Connectors interface inside the Wallet SDK to create multiple connectors FuelLabs/fuels-wallet#972. We are using the first version of it inside the https://alpha.fuel.network/bridge. This UI is provided by the package @fuel-wallet/react.
7. Not on the things we already solve, but it can be done using the fundWithFakeUTXO used by the getTransactionCost. We could add something similar on the dryRun method.
.simulate()
). This is not idealThe text was updated successfully, but these errors were encountered: