diff --git a/docs/appkit/react-native/core/options.mdx b/docs/appkit/react-native/core/options.mdx index c4558a8c..bca33ea1 100644 --- a/docs/appkit/react-native/core/options.mdx +++ b/docs/appkit/react-native/core/options.mdx @@ -82,24 +82,6 @@ createAppKit({ }) ``` -## tokens - -You can select tokens for AppKit to show the user's balance of. Each key represents the chain id of the token's blockchain. - -```ts -createAppKit({ - //... - tokens: { - 1: { - address: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48' - }, - 137: { - address: '0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619' - } - } -}) -``` - ## customWallets Add custom wallets to the modal's main view. `customWallets` is an array of objects, where each object contains specific information of a custom wallet. diff --git a/docs/appkit/shared/options.mdx b/docs/appkit/shared/options.mdx index e4101221..60f3b00c 100644 --- a/docs/appkit/shared/options.mdx +++ b/docs/appkit/shared/options.mdx @@ -113,27 +113,6 @@ createAppKit({ }) ``` -## tokens - -Tokens for AppKit to show the user's balance of. Each key represents the chain id of the token's blockchain. - -```ts -createAppKit({ - //... - tokens: { - "eip155:1": { - address: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', - image: 'token_image_url' //optional - }, - "eip155:137": { - address: '0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619', - image: 'token_image_url' //optional - } - } -}) -``` - -If you would like to remove default wallets completely, you can set the `featuredWalletIds` property to an empty array. ## chainImages