Registers Enoki Connect wallets for your dApp.
This function fetches wallet metadata for the provided public app slugs and registers them with the wallet standard. It returns the registered wallet instances and an unregister function to remove them if needed.
unregister
An array of public app slugs to register. You can obtain these slugs from the wallet developer.
An object containing:
wallets
const { wallets, unregister } = await registerEnokiConnectWallets({ publicAppSlugs: ['an-app-slug'], dappName: 'My Dapp',}); Copy
const { wallets, unregister } = await registerEnokiConnectWallets({ publicAppSlugs: ['an-app-slug'], dappName: 'My Dapp',});
Registers Enoki Connect wallets for your dApp.
This function fetches wallet metadata for the provided public app slugs and registers them with the wallet standard. It returns the registered wallet instances and an
unregisterfunction to remove them if needed.