@privy-io/react-auth 1.28.0-beta.1 → 1.28.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -352,12 +352,12 @@ type CoinbaseWalletClientType = 'coinbase_wallet';
352
352
  *
353
353
  * How this works:
354
354
  *
355
- * The raw data is pulled from https://registry.walletconnect.com/api/v2/wallets
355
+ * The raw data is pulled from https://registry.walletconnect.com/api/v3/wallets
356
356
  * Some post-processing is done using the following script.
357
357
  *
358
358
  * const axios = require('axios');
359
359
  * const walletTypes = [];
360
- * axios.get("https://registry.walletconnect.com/api/v2/wallets").then((apiResult) => {
360
+ * axios.get("https://explorer-api.walletconnect.com/v3/wallets?projectId=2f05ae7f1116030fde2d36508f472bfb&entries=400&page=1&version=2&chains=eip155%3A1").then((apiResult) => {
361
361
  * Object.values(apiResult.data.listings).forEach((walletEntry) => {
362
362
  * if (!walletEntry.mobile.native || !walletEntry.mobile.universal) return;
363
363
  * if (!walletEntry.chains.includes('eip155:1')) return;
@@ -369,7 +369,7 @@ type CoinbaseWalletClientType = 'coinbase_wallet';
369
369
  * console.log(walletTypes.join("\n | "));
370
370
  * });
371
371
  */
372
- type WalletConnectWalletClientType = 'rainbow' | 'trust' | 'uniswap' | 'metamask' | 'argent' | 'spot' | 'zerion' | 'bitkeep' | 'unstoppable' | 'omni' | 'mathwallet' | 'bitpay' | '1inch' | 'eidoo' | 'coin98' | 'unstoppable' | 'alphawallet' | 'rwallet' | 'plasmapay' | 'o3wallet' | 'hashkey_me' | 'defiant' | 'essentials' | 'stasis' | 'julwallet' | 'tangem' | 'secux' | 'linen' | 'ambire' | 'obvious' | 'easypocket' | 'rice_wallet' | 'safemoon' | 'simplehold' | 'bitizen' | 'slavi_wallet' | 'nufinetes' | 'now_wallet' | 'blocto' | 'timeless' | 'arculus_wallet' | 'card' | 'mew_wallet' | 'pltwallet' | 'avacus' | 'bitski' | 'hippowallet' | 'edge' | 'assure' | 'enjin_wallet' | 'slingshot' | 'coinstats' | 'bitcoincom_wallet' | 'defiant' | 'binance';
372
+ type WalletConnectWalletClientType = 'metamask' | 'trust' | 'safe' | 'rainbow' | 'uniswap' | 'zerion' | 'argent' | 'spot' | 'omni' | 'cryptocom' | 'blockchain' | 'safepal' | 'bitkeep' | 'zengo' | '1inch' | 'binance' | 'exodus' | 'mew_wallet' | 'alphawallet' | 'keyring_pro' | 'mathwallet' | 'unstoppable' | 'obvious' | 'ambire' | 'internet_money_wallet' | 'coin98' | 'abc_wallet' | 'arculus_wallet' | 'haha' | 'cling_wallet' | 'broearn' | 'copiosa' | 'burrito_wallet' | 'enjin_wallet' | 'plasma_wallet' | 'avacus' | 'bee' | 'pitaka' | 'pltwallet' | 'minerva' | 'kryptogo' | 'prema' | 'slingshot' | 'kriptonio' | 'timeless' | 'secux' | 'bitizen' | 'blocto' | 'safemoon';
373
373
  /** @hidden */
374
374
  type UnknownWalletClientType = 'unknown';
375
375
  type WalletClientType = InjectedWalletClientType | CoinbaseWalletClientType | WalletConnectWalletClientType | EmbeddedWalletClientType | UnknownWalletClientType;