Skip to content

Commit

Permalink
Merge pull request #80 from FuelLabs/temp/mainnet
Browse files Browse the repository at this point in the history
feat: added burner wallet
  • Loading branch information
rishabhkeshan authored Oct 31, 2024
2 parents 3f3e408 + ba803e8 commit 17af4d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
FuelWalletConnector,
SolanaConnector,
WalletConnectConnector,
BurnerWalletConnector,
} from "@fuels/connectors";
import { FuelProvider } from "@fuels/react";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
Expand Down Expand Up @@ -58,6 +59,7 @@ const FUEL_CONFIG = createFuelConfig(() => {
const fueletWalletConnector = new FueletWalletConnector();
const fuelWalletConnector = new FuelWalletConnector();
const bakoSafeConnector = new BakoSafeConnector();
const burnerWalletConnector = new BurnerWalletConnector({ fuelProvider });
const walletConnectConnector = new WalletConnectConnector({
projectId: WalletConnectProjectId,
wagmiConfig: wagmiConfig as WagmiConfig,
Expand All @@ -75,6 +77,7 @@ const FUEL_CONFIG = createFuelConfig(() => {
fueletWalletConnector,
walletConnectConnector,
solanaConnector,
burnerWalletConnector,
...(isMobile ? [] : [fuelWalletConnector, bakoSafeConnector]),
],
};
Expand Down

0 comments on commit 17af4d2

Please sign in to comment.