Docs
Wallets
Wallets
Connectors are used to connect the user's wallet to your dapp. If you dapp requires the user to submit a transaction or sign a message, you must provide a list of supported wallets to Starknet React.
Connectors
This in an alphabetical list of connectors supported by Starknet React.
Injected Connector
An injected connector is a wallet that injects itself in the web page. This type of wallets are also known as "browser wallets".
Configure a new injected wallet with the following properties:
id
: unique wallet id, used when injecting the wallet in the web page.name
: human friendly name.icon
: wallet icons, for both light and dark mode. Icons should be base 64 encoded svg images that developers can use assrc
properties on animg
HTML tag.
Argent X
The Argent X wallet is supported out of the box.
_10import { argent } from "@starknet-react/core";_10_10const connectors = [_10 argent()_10];
Braavos
The Braavos wallet is supported out of the box.
_10import { braavos } from "@starknet-react/core";_10_10const connectors = [_10 braavos()_10];