Aller au contenu

setupClient

Ce contenu n’est pas encore disponible dans votre langue.

setupClient(config): Promise<FrakClient | undefined>

Defined in: clients/setupClient.ts:20

Directly setup the Frak client with an iframe Return when the FrakClient is ready (setup and communication estbalished with the wallet)

The configuration to use for the Frak Wallet SDK

FrakWalletSdkConfig

Promise<FrakClient | undefined>

a Promise with the Frak Client

const frakConfig: FrakWalletSdkConfig = {
metadata: {
name: "My app title",
},
}
const client = await setupClient({ config: frakConfig });