--- layout: storage permalink: /:collection/:path.html --- # Hubs and user choice Blockstack operates a default Gaia storage hub at `https://hub.blockstack.org`. Individuals or organizations may also run their own hubs, either as a for-profit service or for other reasons. ## Background Each user with an identity in the Blockstack Network has a Gaia hub configured on their profile. New users that create identities with the Blockstack Browser automatically are given storage on this default hub. For a user to have a storage hub other than this default, the user must create an identity through an application that enables storage hub selection. {% include note.html content="Users with existing identities cannot yet migrate their data from one hub to another." %} ## Enable the Gaia hub URL option for new users A major principle of Blockstack applications is that DApps do not store or replicated user data. Through the Gaia feature, Blockstack seeks to empower users to choose where to store their data and how they manage it. As a step towards fulfilling this principle, DApp developers can configure their application to prompt new users to provide a Gaia hub URL. An application with this feature enabled presents users creating an identity for the first time with this prompt: ![Official provider](/storage/images/official-provider.jpeg) Users can choose to **Use Blockstack's official provider** or **Use a different provider**. Choosing the non-default option prompts the user with the following: ![Different provider](/storage/images/different-provider.png) Users can enter the HTTPS address of a hub hosted by an entity other than Blockstack. Once the user submits the above form, they continue through the standard identity creation. As they use DApps on the Blockstack Network, all their data is stored in this storage hub and not the default Blockstack hub. ## Enabling hub selection in your DApp To enable this feature, you must ensure your DApp is using the latest version of the blockstack.js library. Instead of the default flow `redirectToSignIn()` method, you must use the `makeAuthRequest()` method. This method takes the following parameters:
transitPrivateKey(String = generateAndStoreTransitKey())
redirectURI(String = `${window.location.origin}/`)
manifestURI(String = `${window.location.origin}/manifest.json`)
scopes (Array = DEFAULT_SCOPE)
appDomain(String = window.location.origin)
expiresAt(Number = nextHour().getTime())
extraParams(Object = {})