Skip to main content

Flow Client Library (FCL)

The Flow Client Library (FCL) JS is a package used to interact with user wallets and the Flow blockchain. When using FCL for authentication, dapps are able to support all FCL-compatible wallets on Flow and their users without any custom integrations or changes needed to the dapp code.

It was created to make developing applications that connect to the Flow blockchain easy and secure. It defines a standardized set of communication patterns between wallets, applications, and users that is used to perform a wide variety of actions for your dapp. FCL also offers a full featured SDK and utilities to interact with the Flow blockchain.

While FCL itself is a concept and standard, FCL JS is the javascript implementation of FCL and can be used in both browser and server environments. All functionality for connecting and communicating with wallet providers is restricted to the browser. We also have FCL Swift implementation for iOS, see FCL Swift contributed by @lmcmz.


Getting Started​

Requirements​

  • Node version v12.0.0 or higher.

Installation​

To use the FCL JS in your application, install using yarn or npm


_10
npm i -S @onflow/fcl


_10
yarn add @onflow/fcl

Importing​

ES6


_10
import * as fcl from "@onflow/fcl";

Node.js


_10
const fcl = require("@onflow/fcl");


FCL for Dapps​

Wallet Interactions​

  • Wallet Discovery and Sign-up/Login: Onboard users with ease. Never worry about supporting multiple wallets. Authenticate users with any FCL compatible wallet.

_10
// in the browser
_10
import * as fcl from "@onflow/fcl"
_10
_10
fcl.config({
_10
"discovery.wallet": "https://fcl-discovery.onflow.org/testnet/authn", // Endpoint set to Testnet
_10
})
_10
_10
fcl.authenticate()

FCL Default Discovery UI

Note: A Dapper Wallet developer account is required. To enable Dapper Wallet inside FCL, you need to follow this guide.

  • Interact with smart contracts: Authorize transactions via the user's chosen wallet
  • Prove ownership of a wallet address: Signing and verifying user signed data

Learn more about wallet interactions >

Blockchain Interactions​

  • Query the chain: Send arbitrary Cadence scripts to the chain and receive back decoded values

_16
import * as fcl from "@onflow/fcl";
_16
_16
const result = await fcl.query({
_16
cadence: `
_16
pub fun main(a: Int, b: Int, addr: Address): Int {
_16
log(addr)
_16
return a + b
_16
}
_16
`,
_16
args: (arg, t) => [
_16
arg(7, t.Int), // a: Int
_16
arg(6, t.Int), // b: Int
_16
arg("0xba1132bc08f82fe2", t.Address), // addr: Address
_16
],
_16
});
_16
console.log(result); // 13

  • Mutate the chain: Send arbitrary transactions with your own signatures or via a user's wallet to perform state changes on chain.

_14
import * as fcl from "@onflow/fcl";
_14
// in the browser, FCL will automatically connect to the user's wallet to request signatures to run the transaction
_14
const txId = await fcl.mutate({
_14
cadence: `
_14
import Profile from 0xba1132bc08f82fe2
_14
_14
transaction(name: String) {
_14
prepare(account: AuthAccount) {
_14
account.borrow<&{Profile.Owner}>(from: Profile.privatePath)!.setName(name)
_14
}
_14
}
_14
`,
_14
args: (arg, t) => [arg("myName", t.String)],
_14
});

Learn more about on-chain interactions >

Utilities​

  • Get account details from any Flow address
  • Get the latest block
  • Transaction status polling
  • Event polling
  • Custom authorization functions

Learn more about utilities >

Next Steps​

See the Flow App Quick Start.

See the full API Reference for all FCL functionality.

Learn Flow's smart contract language to build any script or transactions: Cadence.

Explore all of Flow docs and tools.


FCL for Wallet Providers​

Wallet providers on Flow have the flexibility to build their user interactions and UI through a variety of ways:

  • Front channel communication via Iframe, pop-up, tab, or extension
  • Back channel communication via HTTP

FCL is agnostic to the communication channel and is configured to create both custodial and non-custodial wallets. This enables users to interact with wallet providers without needing to download an app or extension.

The communication channels involve responding to a set of pre-defined FCL messages to deliver the requested information to the dapp. Implementing a FCL compatible wallet on Flow is as simple as filling in the responses with the appropriate data when FCL requests them. If using any of the front-channel communication methods, FCL also provides a set of wallet utilities to simplify this process.

Current Wallet Providers​

Wallet Discovery​

It can be difficult to get users to discover new wallets on a chain. To solve this, we created a wallet discovery service that can be configured and accessed through FCL to display all available Flow wallet providers to the user. This means:

  • Dapps can display and support all FCL compatible wallets that launch on Flow without needing to change any code
  • Users don't need to sign up for new wallets - they can carry over their existing one to any dapp that uses FCL for authentication and authorization.

The discovery feature can be used via API, allowing you to customize your own UI or use the default UI without any additional configuration.

Building a FCL compatible wallet​

  • Read the wallet guide to understand the implementation details.
  • Review the architecture of the Flow Dev Wallet for an overview.
  • If building a non-custodial wallet, see the Account API and the FLIP on derivation paths and key generation.

Support​

Notice an problem or want to request a feature? Add an issue.

Discuss FCL with the community on the forum.

Join the Flow community on Discord to keep up to date and to talk to the team.