Skip to content

useConnect ​

Composable for connecting accounts with connectors.

Import ​

ts
import { useConnect } from '@wagmi/vue'

Usage ​

vue
<script setup lang="ts">
import { useConnect } from '@wagmi/vue'
import { injected } from 'wagmi/connectors'

const { connect } = useConnect()
</script>

<template>
  <button @click="connect({ connector: injected() })">
    Connect
  </button>
</template>
ts
import { http, createConfig } from '@wagmi/vue'
import { mainnet, sepolia } from '@wagmi/vue/chains'

export const config = createConfig({
  chains: [mainnet, sepolia],
  transports: {
    [mainnet.id]: http(),
    [sepolia.id]: http(),
  },
})

Parameters ​

ts
import { type UseConnectParameters } from '@wagmi/vue'

config ​

Config | undefined

Config to use instead of retrieving from the WagmiPlugin.

vue
<script setup lang="ts">
import { useConnect } from '@wagmi/vue'
import { config } from './config'

const result = useConnect({
  config, 
})
</script>
ts
import { http, createConfig } from '@wagmi/vue'
import { mainnet, sepolia } from '@wagmi/vue/chains'

export const config = createConfig({
  chains: [mainnet, sepolia],
  transports: {
    [mainnet.id]: http(),
    [sepolia.id]: http(),
  },
})


mutation ​

TanStack Query parameters. See the TanStack Query mutation docs for more info.

Wagmi does not support passing all TanStack Query parameters

TanStack Query parameters, like mutationFn and mutationKey, are used internally to make Wagmi work and you cannot override them. Check out the source to see what parameters are not supported. All parameters listed below are supported.

gcTime ​

number | Infinity | undefined

  • The time in milliseconds that unused/inactive cache data remains in memory. When a mutation's cache becomes unused or inactive, that cache data will be garbage collected after this duration. When different cache times are specified, the longest one will be used.
  • If set to Infinity, will disable garbage collection

meta ​

Record<string, unknown> | undefined

If set, stores additional information on the mutation cache entry that can be used as needed. It will be accessible wherever connect is available (e.g. onError, onSuccess functions).

networkMode ​

'online' | 'always' | 'offlineFirst' | undefined

onError ​

((error: ConnectErrorType, variables: { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }, context?: context | undefined) => Promise<unknown> | unknown) | undefined

This function will fire if the mutation encounters an error and will be passed the error.

onMutate ​

((variables: { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }) => Promise<context | void> | context | void) | undefined

  • This function will fire before the mutation function is fired and is passed the same variables the mutation function would receive
  • Useful to perform optimistic updates to a resource in hopes that the mutation succeeds
  • The value returned from this function will be passed to both the onError and onSettled functions in the event of a mutation failure and can be useful for rolling back optimistic updates.

onSuccess ​

((data: { accounts: readonly [Address, ...Address[]]; chainId: number; }, variables: { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }, context?: context | undefined) => Promise<unknown> | unknown) | undefined

This function will fire when the mutation is successful and will be passed the mutation's result.

onSettled ​

((data: { accounts: readonly [Address, ...Address[]]; chainId: number; }, error: ConnectErrorType, variables: { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }, context?: context | undefined) => Promise<unknown> | unknown) | undefined

This function will fire when the mutation is either successfully fetched or encounters an error and be passed either the data or error

queryClient ​

QueryClient

Use this to use a custom QueryClient. Otherwise, the one from the nearest context will be used.

retry ​

boolean | number | ((failureCount: number, error: ConnectErrorType) => boolean) | undefined

  • Defaults to 0.
  • If false, failed mutations will not retry.
  • If true, failed mutations will retry infinitely.
  • If set to an number, e.g. 3, failed mutations will retry until the failed mutations count meets that number.

retryDelay ​

number | ((retryAttempt: number, error: ConnectErrorType) => number) | undefined

  • This function receives a retryAttempt integer and the actual Error and returns the delay to apply before the next attempt in milliseconds.
  • A function like attempt => Math.min(attempt > 1 ? 2 ** attempt * 1000 : 1000, 30 * 1000) applies exponential backoff.
  • A function like attempt => attempt * 1000 applies linear backoff.

Return Type ​

ts
import { type UseConnectReturnType } from '@wagmi/vue'

connectors ​

readonly Connector[]

Globally configured connectors via createConfig. Useful for rendering a list of available connectors.

vue
<script setup lang="ts">
import { useConnect } from '@wagmi/vue'

const { connect, connectors } = useConnect()
</script>

<template>
  <div>
    <button v-for="connector in connectors" :key="connector.id" @click="connect({ connector })">
      {{ connector.name }}
    </button>
  </div>
</template>
ts
import { http, createConfig } from '@wagmi/vue'
import { mainnet, sepolia } from '@wagmi/vue/chains'

export const config = createConfig({
  chains: [mainnet, sepolia],
  transports: {
    [mainnet.id]: http(),
    [sepolia.id]: http(),
  },
})


TanStack Query mutation docs

connect ​

(variables: { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }, { onSuccess, onSettled, onError }) => void

The mutation function you can call with variables to trigger the mutation and optionally hooks on additional callback options.

  • variables ​

    { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }

    The variables object to pass to the connect action.

  • onSuccess ​

    (data: { accounts: readonly [Address, ...Address[]]; chainId: number; }, variables: { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }, context: TContext) => void

    This function will fire when the mutation is successful and will be passed the mutation's result.

  • onError ​

    (error: ConnectErrorType, variables: { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }, context: TContext | undefined) => void

    This function will fire if the mutation encounters an error and will be passed the error.

  • onSettled ​

    (data: { accounts: readonly [Address, ...Address[]]; chainId: number; } | undefined, error: ConnectErrorType | null, variables: { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }, context: TContext | undefined) => void

    • This function will fire when the mutation is either successfully fetched or encounters an error and be passed either the data or error
    • If you make multiple requests, onSuccess will fire only after the latest call you've made.

connectAsync ​

(variables: { chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; }, { onSuccess, onSettled, onError }) => Promise<{ accounts: readonly [Address, ...Address[]]; chainId: number; }>

Similar to connect but returns a promise which can be awaited.

data ​

{ accounts: readonly [Address, ...Address[]]; chainId: number; } | undefined

error ​

ConnectErrorType | null

The error object for the mutation, if an error was encountered.

failureCount ​

number

  • The failure count for the mutation.
  • Incremented every time the mutation fails.
  • Reset to 0 when the mutation succeeds.

failureReason ​

ConnectErrorType | null

  • The failure reason for the mutation retry.
  • Reset to null when the mutation succeeds.

isError / isIdle / isPending / isSuccess ​

boolean

Boolean variables derived from status.

isPaused ​

boolean

  • will be true if the mutation has been paused.
  • see Network Mode for more information.

reset ​

() => void

A function to clean the mutation internal state (e.g. it resets the mutation to its initial state).

status ​

'idle' | 'pending' | 'error' | 'success'

  • 'idle' initial status prior to the mutation function executing.
  • 'pending' if the mutation is currently executing.
  • 'error' if the last mutation attempt resulted in an error.
  • 'success' if the last mutation attempt was successful.

submittedAt ​

number

  • The timestamp for when the mutation was submitted.
  • Defaults to 0.

variables ​

{ chainId?: number | undefined; connector?: CreateConnectorFn | Connector | undefined; } | undefined

  • The variables object passed to connect.
  • Defaults to undefined.

TIP

Not all connectors support connecting directly to a chainId (e.g. they don't support programmatic chain switching). In those cases, the connector will connect to whatever chain the connector's provider (e.g. wallet) is connected to.

TanStack Query ​

ts
import {
  type ConnectData,
  type ConnectVariables,
  type ConnectMutate,
  type ConnectMutateAsync,
  connectMutationOptions,
} from '@wagmi/vue/query'

Action ​

Released under the MIT License.