You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
accountStatus: 'full', // Show full account info when connected
121
+
label: 'Connect Wallet', // Custom connect button text
122
+
showBalance: true, // Show/hide balance display
123
+
124
+
// Responsive configurations are also supported:
125
+
// showBalance: {
126
+
// smallScreen: false,
127
+
// largeScreen: true,
128
+
// },
129
+
// accountStatus: {
130
+
// smallScreen: 'avatar',
131
+
// largeScreen: 'full',
132
+
// },
133
+
},
134
+
},
112
135
};
113
136
114
137
exportdefaultrainbowKitAppConfig;
115
138
```
116
139
117
140
-**`wagmiParams`**: Contains parameters for RainbowKit's `getDefaultConfig()` (e.g., `appName`, `projectId`). The adapter will use these but will override `chains` and `transports` based on its own `networkConfig` and `AppConfigService` RPC overrides.
118
141
-**`providerProps`**: Contains props to be spread onto the `<RainbowKitProvider />` component (e.g., `theme`, `modalSize`).
142
+
-**`customizations`**: Enhanced UI customizations that leverage RainbowKit's native prop types directly. This section allows you to configure the ConnectButton component using RainbowKit's official props.
143
+
144
+
#### RainbowKit ConnectButton Customizations
145
+
146
+
The `customizations.connectButton` section supports all native RainbowKit ConnectButton props:
0 commit comments