Errors
Error classes used by Wagmi.
BaseError
Error class extended by all errors.
ts
import { BaseError } from '@wagmi/vue'
Config
ChainNotConfiguredError
When a chain is not configured. You likely need to add the chain to Config['chains']
.
ts
import { ChainNotConfiguredError } from '@wagmi/vue'
ConnectorAccountNotFoundError
When an account does not exist on the connector or is unable to be used.
ts
import { ConnectorAccountNotFoundError } from '@wagmi/vue'
ConnectorAlreadyConnectedError
When a connector is already connected.
ts
import { ConnectorAlreadyConnectedError } from '@wagmi/vue'
ConnectorNotConnectedError
When a connector is not connected.
ts
import { ConnectorNotConnectedError } from '@wagmi/vue'
ConnectorChainMismatchError
When the Wagmi Config is out-of-sync with the connector's active chain ID. This is rare and likely an upstream wallet issue.
ts
import { ConnectorChainMismatchError } from '@wagmi/vue'
ConnectorNotFoundError
When a connector is not found or able to be used.
ts
import { ConnectorNotFoundError } from '@wagmi/vue'
Connector
ProviderNotFoundError
When a connector's provider is not found or able to be used.
ts
import { ProviderNotFoundError } from '@wagmi/vue'
SwitchChainNotSupportedError
When switching chains is not supported by connectors.
ts
import { SwitchChainNotSupportedError } from '@wagmi/vue'