FuelLabs/fuel-connectors

BurnerWallertConnector losing connection after refresh the page

Closed this issue · 4 comments

BurnerWallertConnector losing connection after refresh the page

Hey @LuizAsFight! I'm not sure, but I think we might be able to resolve this by using localStorage.

The BurnerWalletConnector is losing its connection after a page refresh because the state of the burnerWallet and burnerWalletProvider is not being persisted between sessions.

the localStorage is already used if the user don't override the storage when creating the connector

it is used to persist the pkey of the wallet which should be enough to recreate the correct wallet after refresh

It's a great idea to persist the providerUrl also, this way we can recreate the correct provider after refresh also

the localStorage is already used if the user don't override the storage when creating the connector

it is used to persist the pkey of the wallet which should be enough to recreate the correct wallet after refresh

It's a great idea to persist the providerUrl also, this way we can recreate the correct provider after refresh also

Looks great! I'll send a PR.