Web3Button
Button that executes a function on a smart contract from the connected wallet when clicked.
It ensures the following criteria before attempting to call the contract function:
- There is a connected wallet (if there is not, it renders a ConnectWallet Button instead).
- The connected wallet is on the correct network
as specified in the
activeChain
prop of ThirdwebProvider. if wallet is connected to any other network, it renders a switch network button instead.
import { Web3Button } from "@thirdweb-dev/react-native";
Render the Web3Button
component with two required props to display the button:
contractAddress
: The address of the smart contract to interact with.action
: The logic to execute when the button is clicked.
import { Web3Button } from "@thirdweb-dev/react-native";function App() {return (<Web3ButtoncontractAddress="0x..." // Your smart contract addressaction={async (contract) => {await someAction(contract);}}>Execute Action</Web3Button>);}
Always return a promise from action
If the action you are performing is async, make sure to return a Promise
from the action
function so that the SDK knows when the action is complete
This can be done by either using async/await
or by directly returning a Promise
.
The address of the smart contract to interact with.
If you have not imported your contract to thirdweb's dashboard, you must additionally specify the contractAbi
prop.
import { Web3Button } from "@thirdweb-dev/react-native";function App() {return (<Web3ButtoncontractAddress="0x..."action={(contract) => {// Logic to execute when clickedawait someAction(contract);}}>Execute Action</Web3Button>);}
The logic to execute when the button is clicked.
The contract instance is available as the first argument of the function for you to interact with.
If the action you are performing is async, make sure to return a Promise
from the action
function so that the SDK knows when the action is complete
import { Web3Button } from "@thirdweb-dev/react-native";// For example, claim an NFT from this contract when the button is clickedfunction App() {return (<Web3ButtoncontractAddress="0x..."action={async (contract) => {await contract.erc721.claim(1);}}>Claim NFT</Web3Button>);}
The Application Binary Interface (ABI) of the contract.
This is only required if you have not imported your contract to the dashboard.
import { Web3Button } from "@thirdweb-dev/react-native";function App() {return (<Web3ButtoncontractAddress="0x..."contractAbi={[{ ... }]}action={(contract) => console.log(contract)} // Logic to execute when clicked>Execute Action</Web3Button>);}
Callback function to be run when the contract method call is successful.
import { Web3Button } from "@thirdweb-dev/react-native";function App() {return (<Web3ButtoncontractAddress="0x..."action={(contract) => console.log(contract)} // Logic to execute when clickedonSuccess={(result) => alert("Success!")}>Execute Action</Web3Button>);}
Callback function to be run when the contract method call fails.
import { Web3Button } from "@thirdweb-dev/react-native";function App() {return (<Web3ButtoncontractAddress="0x..."action={(contract) => console.log(contract)} // Logic to execute when clickedonError={(error) => alert("Something went wrong!")}>Execute Action</Web3Button>);}
Callback function to be run after the user has confirmed the transaction.
import { Web3Button } from "@thirdweb-dev/react-native";function App() {return (<Web3ButtoncontractAddress="0x..."action={(contract) => console.log(contract)} // Logic to execute when clickedonSubmit={() => console.log("Transaction submitted")}>Execute Action</Web3Button>);}
Web3Button renders a ConnectWallet if no wallet is connected.
You can pass props for that ConnectWallet
component by passing them in the connectWallet
prop on Web3Button
import { Web3Button } from "@thirdweb-dev/react-native";<Web3ButtonconnectWalletProps={{buttonTitle: "Connect",modalTitle: "Login",// ... etc}}contractAddress="0x..."action={(contract) => console.log(contract)} // Logic to execute when clicked>Execute Action</Web3Button>;
Change the theme of the button to light
or dark
mode, to match the theme of your app.
The default value is dark
.
import { Web3Button } from "@thirdweb-dev/react-native";<Web3Buttontheme="dark"contractAddress="0x..."action={(contract) => console.log(contract)} // Logic to execute when clicked>Execute Action</Web3Button>;
You can also create a custom theme by passing an object. To do this, you can use darkTheme
or lightTheme
functions to use light / dark theme as base and override it
import { darkTheme, lightTheme } from "@thirdweb-dev/react-native";<Web3Buttontheme={darkTheme({borderRadii: {md: 12,},colors: {accentButtonColor: "black",},})}contractAddress="0x..."action={(contract) => console.log(contract)} // Logic to execute when clicked>Execute Action</Web3Button>;