Skip to content

setupClient

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 });