Integrate Freighter with a React dapp
Wallets are an essential part of any dapp. They allow users to interact with the blockchain and sign transactions. In this section, you'll learn how to integrate the Freighter wallet into your React dapps.
WalletData Componentโ
In the example crowdfund dapp, the WalletData
component plays a key role in wallet integration. Let's break down the code and understand its functionality:
import React from "react";
import { useAccount, useIsMounted } from "../../../hooks";
import { ConnectButton } from "../../atoms";
import styles from "./style.module.css";
export function WalletData() {
const mounted = useIsMounted();
const account = useAccount();
return (
<>
{mounted && account ? (
<div className={styles.displayData}>
<div className={styles.card}>{account.displayName}</div>
</div>
) : (
<ConnectButton label="Connect Wallet" />
)}
</>
);
}
Here's a breakdown of the code:
- The
mounted
variable is obtained using theuseIsMounted
hook, indicating whether the component is currently mounted or not. - The
useAccount
hook is used to fetch the user's account data, and thedata
property is destructured from the result. - Conditional rendering is used to display different content based on the component's mount status and the availability of account data.
- If the component is mounted and the account data is available, the user's wallet data is displayed. This includes the account's display name.
- If the component is not mounted or the account data is not available, a
ConnectButton
component is rendered, allowing the user to connect with Freighter.
Guides in this category:
๐๏ธ Connect to the Testnet
Create a Stellar account on Testnet with Freighter
๐๏ธ Enable Soroban tokens
Add smart contract tokens to your Freighter wallet
๐๏ธ Integrate Freighter with a React dapp
Integrate the Freighter wallet into your React dapps
๐๏ธ Prompt Freighter to sign transactions as a JS dapp developer
Sign smart contract transactions using the Freighter browser extension
๐๏ธ Send Soroban token payments
Send a smart contract token payment directly from Freighter
๐๏ธ Sign authorization entries
Use Freighter's API to sign an authorization entry
๐๏ธ Sign Soroban XDRs
Sign smart contract XDRs using dapps integrated with Freighter