Skip to main content
Version: Current

Walletless Onboarding

Walletless onboarding is an approach through which developers can meet new users where they are in their Web3 journey, delivering a familiar experience while progressively exposing new users to the benefits of Web3. On Flow, developers can help users realize the benefits of both custodial and non-custodial experiences with a seamless path to real ownership and self-sovereignty at a user’s own pace.

Overview

warning

Note that the documentation on Hybrid Custody covers the current state and will likely differ from the final implementation. Testnet is currently out of sync with docs and will be updated shortly. Builders should be aware that breaking changes may follow before reaching a final community consensus on implementation. Interested in contributing? Check out the source!.

At a high level, implementing walletless onboarding is effectively a process of abstracting away the complexities of getting started in Web3. Your app will handle account creation, key management, and transaction signing behind a familiar Web2 authentication scheme and fiat denominated payments.

There are a number of business & regulatory considerations that come along with the totality of that abstraction, and this doc will seek to highlight those considerations and provide guidance as well as point to existing tools and services where possible.

How you subsidize account creation will ultimately be up to you, and the custodial pattern you choose will likely involve regulatory implications based on where you and your customers reside. You'll also want to consider whether you or your users will subsidize transaction & account storage fees.

With that said, our Walletless Arcade example app implemented a simple in-app custodial method and funded account creation, transaction, and storage fees with a backend developer account. Don't let these non-technical considerations keep you from building awesome apps!

If you're a smart contract developer looking to get started straight away with example walletless onboarding transactions, take a look at the @onflow/hybrid-custody repo.

Introduction

To build a walletless onboarding experience, developers can design their first-time user experiences in a way that abstracts away the existence of an underlying blockchain from the user Apps can leverage familiar Web2 onboarding features, such as social/email login and payments via credit card in order to help users experience the value of the app up front.

Underneath these onboarding features, developers can provide new users with an in-app custodial Flow account and handle all transactions on behalf of the user so that the newcomers can begin using apps without the need to immediately set up a wallet. In this case, any collectibles that a user acquires through the use of the app are held within this app custody account.

While this approach can deliver an effective onboarding experience for users new to Web3, it’s important to provide these users with a seamless path to real ownership and control over the digital items that they’ve acquired. Given the benefits of an app custody experience (seamless on-chain transactions), we’ll want to establish this transition in a way that combines these benefits with those of self-custody (real ownership, portability of assets, composability at owner's discretion).

On Flow, developers can establish this state of hybrid custody - where a user realizes the benefits of both app and self custody through shared control between app custody and self custody accounts.

With hybrid custody, users can continue to seamlessly use your app without needing to approve transactions while maintaining the ability to take their digital items elsewhere in the ecosystem without first needing to transfer them out of the app controlled account.

Hybrid custody is enabled on Flow through Account Linking & Delegation. With Account Linking & Delegation, your app establishes a parent-child relationship by allowing the app custody account (child) to opt into being accessed by the self-custody account (parent). Read Account Linking & Delegation for more details on how hybrid custody is established on Flow.

Design Considerations

While developers will choose the best solution to onboard new users to their app, there are some considerations to take into account when designing a walletless onboarding experience.

Account Creation

In order to use a Web3 account built on Flow, a user will need to have a Flow account.

In apps where users bring their own wallet, it can simplify things quite a bit for developers, as they don’t need to worry about account creation and custody of keys - just authenticate the user and have them sign transactions.

But with a walletless onboarding flow, we’re enabling users to use the app without a wallet - so developers will need to handle account creation and custody on behalf of the user.

For most apps, developers will create a Flow account for each user and associate this new account with the user. Account creation on Flow requires a payer, so developers will need to determine whether they subsidize creation of Flow accounts or if they’ll require users to pay to sign up for the app.

Additionally, since the user’s Flow account will be managed by the app, developers will need to consider their preferred approach for secure storage and management of the keys for each account.

Example account creation transaction

walletless_onboarding.cdc

_70
import "FlowToken"
_70
import "FungibleToken"
_70
_70
/// This transaction creates an account, funding creation via the signer and
_70
/// adding the provided public key. You'll notice this transaction is pretty
_70
/// much your standard account creation. The magic for you will be how you custody
_70
/// the key for this account (locally, KMS, wallet service, etc.) in a manner that
_70
/// allows your dapp to mediate on-chain interactions on behalf of your user.
_70
/// **NOTE:** Custodial patterns have regulatory implications you'll want to consult a
_70
/// legal professional about.
_70
///
_70
/// In your dapp's walletless transaction, you'll likely also want to configure
_70
/// the new account with resources & capabilities relevant for your use case after
_70
/// account creation & optional funding.
_70
///
_70
/// For more examples like this, check out the following repo:
_70
/// https://github.com/onflow/hybrid-custody
_70
///
_70
transaction(
_70
pubKey: String,
_70
initialFundingAmt: UFix64,
_70
) {
_70
_70
prepare(signer: AuthAccount) {
_70
_70
/* --- Account Creation --- */
_70
// **NOTE:** your dApp may choose to separate creation depending on your custodial model)
_70
//
_70
// Create the child account, funding via the signer
_70
let newAccount = AuthAccount(payer: signer)
_70
// Create a public key for the proxy account from string value in the provided arg
_70
// **NOTE:** You may want to specify a different signature algo for your use case
_70
let key = PublicKey(
_70
publicKey: pubKey.decodeHex(),
_70
signatureAlgorithm: SignatureAlgorithm.ECDSA_P256
_70
)
_70
// Add the key to the new account
_70
// **NOTE:** You may want to specify a different hash algo & weight best for your use case
_70
newAccount.keys.add(
_70
publicKey: key,
_70
hashAlgorithm: HashAlgorithm.SHA3_256,
_70
weight: 1000.0
_70
)
_70
_70
/* --- (Optional) Additional Account Funding --- */
_70
//
_70
// Fund the new account if specified
_70
if initialFundingAmt > 0.0 {
_70
// Get a vault to fund the new account
_70
let fundingProvider = signer.borrow<&FlowToken.Vault{FungibleToken.Provider}>(
_70
from: /storage/flowTokenVault
_70
)!
_70
// Fund the new account with the initialFundingAmount specified
_70
newAccount.getCapability<&FlowToken.Vault{FungibleToken.Receiver}>(
_70
/public/flowTokenReceiver
_70
).borrow()!
_70
.deposit(
_70
from: <-fundingProvider.withdraw(
_70
amount: initialFundingAmt
_70
)
_70
)
_70
}
_70
_70
/* --- Continue with use case specific setup --- */
_70
//
_70
// At this point, the newAccount can further be configured as suitable for
_70
// use in your dapp (e.g. Setup a Collection, Mint NFT, Configure Vault, etc.)
_70
// ...
_70
}
_70
}

You can imagine creating these accounts on-demand, submitting a creation transaction when at onboarding, or simply associate pre-created accounts with onboarding users to make your UX more seamless.

NFT Minting and Purchase

In the walletless onboarding flow, developers will need to provide an abstracted way for users to purchase NFTs without interacting with a wallet or handling crypto. This approach will require developers to enable users to purchase using Web2 methods such as credit card or in-app payments and handle all relevant interactions with the Flow blockchain on the user’s behalf. If the user is purchasing a new NFT, developers will need to handle minting and transfer of the NFTs to the user’s account managed within the app.

Connecting Wallets

To facilitate a user transitioning to a state of hybrid custody in the app, developers will need to design a path for users to connect a self-custody wallet. Developers should aim to design this step in context for users, so there is a clear benefit to how hybrid custody benefits the user and how connecting a wallet unlocks new experiences.

info

While opening the gates to your walled garden might at first seem at odds with the interest of your application, consider that opening the gates unlocks enormous potential utility in an open and permissionless ecosystem and utility is its own sort of value to both users and the underlying object. Creating an NFT project, for example, is not just creating a product, but a platform upon which other developers can build.

Read Account Linking & Delegation for more details on how hybrid custody is established on Flow.

General Considerations

The following questions might be helpful to ask yourself as you think through your walletless onboarding solution:

  • What sort of familiar app authentication can I leverage to make for frictionless signup?
    • SMS Authentication
    • Email address
    • Social Authentication - Google, Twitter, Facebook, etc.
  • How will I handle key management for app accounts?
    • Cloud-based KMS
    • In-app local storage
    • Custodial service
  • How will new app accounts be funded?
    • Backend account funding creation
    • Custodial service
  • Who will fund ongoing transaction & account storage fees?
    • Payer service
    • Custodial service
  • How can I allow users to pay for on-chain assets with fiat?
    • Fiat-to-crypto payment APIs - Stripe, Paypal, etc.

Example Apps

To help demonstrate a walletless onboarding experience, we’ve built a pair of sample apps that showcase the end-to-end flow of a user journey that begins in a walletless, app custody experience and ends with a hybrid custody state where a user can seamlessly use their digital items in other apps.