-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove deprecated stuff wallet (#1113)
Bump `fuels` to `0.74.0` version and also remove deprecated stuff related to the `connectors` and latest sdk. - Remove `@fuel-wallet/react` - Remove all connectors from `@fuel-wallet/connectors` This PR includes contributions from: - #1086 - #1093 It's blocked by FuelLabs/fuel-connectors#1 --------- Co-authored-by: Sérgio Torres <[email protected]> Co-authored-by: luizstacio <[email protected]>
- Loading branch information
1 parent
77f865c
commit 3c5d91d
Showing
149 changed files
with
2,821 additions
and
6,141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'@fuel-wallet/connections': patch | ||
'@fuel-wallet/types': patch | ||
'fuels-wallet': patch | ||
--- | ||
|
||
chore: update ts-sdk and fuel-ui packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ contracts | |
**/__generated__/ | ||
**/generated/* | ||
.changeset/**.md | ||
**/playwright-html/ | ||
**/playwright-results/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,3 +84,7 @@ act-actions | |
|
||
# XState typegen | ||
*.typegen.ts | ||
|
||
|
||
playwright-results | ||
playwright-html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ pnpm-lock.yaml | |
**/__generated__/ | ||
**/generated/ | ||
.changeset/**.md | ||
**/playwright-html/ | ||
**/playwright-results/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,28 @@ | ||
import { FuelProvider } from '@fuel-wallet/react'; | ||
import { | ||
FuelWalletConnector, | ||
FuelWalletDevelopmentConnector, | ||
FueletWalletConnector, | ||
} from '@fuels/connectors'; | ||
import { FuelProvider } from '@fuels/react'; | ||
import { ReactQueryDevtools } from '@tanstack/react-query-devtools'; | ||
import React from 'react'; | ||
import ReactDOM from 'react-dom/client'; | ||
|
||
import App from './App'; | ||
|
||
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( | ||
<React.StrictMode> | ||
<FuelProvider> | ||
<FuelProvider | ||
fuelConfig={{ | ||
connectors: [ | ||
new FuelWalletConnector(), | ||
new FuelWalletDevelopmentConnector(), | ||
new FueletWalletConnector(), | ||
], | ||
}} | ||
> | ||
<App /> | ||
<ReactQueryDevtools initialIsOpen={false} /> | ||
</FuelProvider> | ||
</React.StrictMode> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.