@wagmi/vue 0.4.4 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
- package/src/exports/actions.ts +2 -7
- package/src/exports/chains.ts +2 -7
- package/src/exports/connectors.ts +2 -7
- package/src/exports/index.ts +54 -295
- package/src/exports/internal.ts +2 -8
- package/src/exports/nuxt.ts +4 -4
- package/src/exports/query.ts +3 -15
- package/src/version.ts +1 -1
- package/dist/esm/exports/actions.js +0 -7
- package/dist/esm/exports/chains.js +0 -7
- package/dist/esm/exports/connectors.js +0 -7
- package/dist/esm/exports/index.js +0 -64
- package/dist/esm/exports/internal.js +0 -5
- package/dist/esm/exports/nuxt.js +0 -3
- package/dist/esm/exports/query.js +0 -8
- package/dist/types/exports/actions.d.ts +0 -2
- package/dist/types/exports/chains.d.ts +0 -2
- package/dist/types/exports/connectors.d.ts +0 -2
- package/dist/types/exports/index.d.ts +0 -54
- package/dist/types/exports/internal.d.ts +0 -2
- package/dist/types/exports/nuxt.d.ts +0 -4
- package/dist/types/exports/query.d.ts +0 -3
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
export { configKey, WagmiPlugin, type WagmiPluginOptions } from '../plugin.js';
|
|
2
|
-
export { BaseError, type BaseErrorType } from '../errors/base.js';
|
|
3
|
-
export { WagmiInjectionContextError, type WagmiInjectionContextErrorType, WagmiPluginNotFoundError, type WagmiPluginNotFoundErrorType, } from '../errors/plugin.js';
|
|
4
|
-
export { type UseBalanceParameters, type UseBalanceReturnType, useBalance, } from '../composables/useBalance.js';
|
|
5
|
-
export { type UseBlockNumberParameters, type UseBlockNumberReturnType, useBlockNumber, } from '../composables/useBlockNumber.js';
|
|
6
|
-
export { type UseBytecodeParameters, type UseBytecodeReturnType, useBytecode, } from '../composables/useBytecode.js';
|
|
7
|
-
export { type UseChainIdParameters, type UseChainIdReturnType, useChainId, } from '../composables/useChainId.js';
|
|
8
|
-
export { type UseChainsParameters, type UseChainsReturnType, useChains, } from '../composables/useChains.js';
|
|
9
|
-
export { type UseClientParameters, type UseClientReturnType, useClient, } from '../composables/useClient.js';
|
|
10
|
-
export { type UseConfigParameters, type UseConfigReturnType, useConfig, } from '../composables/useConfig.js';
|
|
11
|
-
export { type UseConnectParameters, type UseConnectReturnType, useConnect, } from '../composables/useConnect.js';
|
|
12
|
-
export {
|
|
13
|
-
/** @deprecated use `UseConnectionParameters` instead */
|
|
14
|
-
type UseConnectionParameters as UseAccountParameters, type UseConnectionParameters,
|
|
15
|
-
/** @deprecated use `UseConnectionReturnType` instead */
|
|
16
|
-
type UseConnectionReturnType as UseAccountReturnType, type UseConnectionReturnType,
|
|
17
|
-
/** @deprecated use `useConnection` instead */
|
|
18
|
-
useConnection as useAccount, useConnection, } from '../composables/useConnection.js';
|
|
19
|
-
export {
|
|
20
|
-
/** @deprecated use `UseConnectionEffectParameters` instead */
|
|
21
|
-
type UseConnectionEffectParameters as UseAccountEffectParameters, type UseConnectionEffectParameters,
|
|
22
|
-
/** @deprecated use `useConnectionEffect` instead */
|
|
23
|
-
useConnectionEffect as useAccountEffect, useConnectionEffect, } from '../composables/useConnectionEffect.js';
|
|
24
|
-
export { type UseConnectionsParameters, type UseConnectionsReturnType, useConnections, } from '../composables/useConnections.js';
|
|
25
|
-
export { type UseConnectorClientParameters, type UseConnectorClientReturnType, useConnectorClient, } from '../composables/useConnectorClient.js';
|
|
26
|
-
export { type UseConnectorsParameters, type UseConnectorsReturnType, useConnectors, } from '../composables/useConnectors.js';
|
|
27
|
-
export { type UseDisconnectParameters, type UseDisconnectReturnType, useDisconnect, } from '../composables/useDisconnect.js';
|
|
28
|
-
export { type UseEnsAddressParameters, type UseEnsAddressReturnType, useEnsAddress, } from '../composables/useEnsAddress.js';
|
|
29
|
-
export { type UseEnsAvatarParameters, type UseEnsAvatarReturnType, useEnsAvatar, } from '../composables/useEnsAvatar.js';
|
|
30
|
-
export { type UseEnsNameParameters, type UseEnsNameReturnType, useEnsName, } from '../composables/useEnsName.js';
|
|
31
|
-
export { type UseEstimateGasParameters, type UseEstimateGasReturnType, useEstimateGas, } from '../composables/useEstimateGas.js';
|
|
32
|
-
export { type UseReadContractParameters, type UseReadContractReturnType, useReadContract, } from '../composables/useReadContract.js';
|
|
33
|
-
export { type UseReconnectParameters, type UseReconnectReturnType, useReconnect, } from '../composables/useReconnect.js';
|
|
34
|
-
export { type UseSendTransactionParameters, type UseSendTransactionReturnType, useSendTransaction, } from '../composables/useSendTransaction.js';
|
|
35
|
-
export { type UseSignMessageParameters, type UseSignMessageReturnType, useSignMessage, } from '../composables/useSignMessage.js';
|
|
36
|
-
export { type UseSignTypedDataParameters, type UseSignTypedDataReturnType, useSignTypedData, } from '../composables/useSignTypedData.js';
|
|
37
|
-
export { type UseSimulateContractParameters, type UseSimulateContractReturnType, useSimulateContract, } from '../composables/useSimulateContract.js';
|
|
38
|
-
export { type UseSwitchChainParameters, type UseSwitchChainReturnType, useSwitchChain, } from '../composables/useSwitchChain.js';
|
|
39
|
-
export {
|
|
40
|
-
/** @deprecated use `UseSwitchConnectionParameters` instead */
|
|
41
|
-
type UseSwitchConnectionParameters as UseSwitchAccountParameters, type UseSwitchConnectionParameters,
|
|
42
|
-
/** @deprecated use `UseSwitchConnectionReturnType` instead */
|
|
43
|
-
type UseSwitchConnectionReturnType as UseSwitchAccountReturnType, type UseSwitchConnectionReturnType,
|
|
44
|
-
/** @deprecated use `useSwitchConnection` instead */
|
|
45
|
-
useSwitchConnection as useSwitchAccount, useSwitchConnection, } from '../composables/useSwitchConnection.js';
|
|
46
|
-
export { type UseTransactionParameters, type UseTransactionReturnType, useTransaction, } from '../composables/useTransaction.js';
|
|
47
|
-
export { type UseTransactionReceiptParameters, type UseTransactionReceiptReturnType, useTransactionReceipt, } from '../composables/useTransactionReceipt.js';
|
|
48
|
-
export { type UseWaitForTransactionReceiptParameters, type UseWaitForTransactionReceiptReturnType, useWaitForTransactionReceipt, } from '../composables/useWaitForTransactionReceipt.js';
|
|
49
|
-
export { type UseWatchBlockNumberParameters, type UseWatchBlockNumberReturnType, useWatchBlockNumber, } from '../composables/useWatchBlockNumber.js';
|
|
50
|
-
export { type UseWatchContractEventParameters, type UseWatchContractEventReturnType, useWatchContractEvent, } from '../composables/useWatchContractEvent.js';
|
|
51
|
-
export { type UseWriteContractParameters, type UseWriteContractReturnType, useWriteContract, } from '../composables/useWriteContract.js';
|
|
52
|
-
export { ChainNotConfiguredError, type ChainNotConfiguredErrorType, type Config, type Connection, type Connector, ConnectorAccountNotFoundError, type ConnectorAccountNotFoundErrorType, ConnectorAlreadyConnectedError, type ConnectorAlreadyConnectedErrorType, ConnectorChainMismatchError, type ConnectorChainMismatchErrorType, type ConnectorEventMap, ConnectorNotFoundError, type ConnectorNotFoundErrorType, ConnectorUnavailableReconnectingError, type ConnectorUnavailableReconnectingErrorType, type CreateConfigParameters, type CreateConnectorFn, type CreateStorageParameters, cookieStorage, cookieToInitialState, createConfig, createConnector, createStorage, custom, deepEqual, deserialize, fallback, http, injected, mock, noopStorage, type PartializedState, ProviderNotFoundError, type ProviderNotFoundErrorType, parseCookie, type Register, type ResolvedRegister, type State, type Storage, SwitchChainNotSupportedError, type SwitchChainNotSupportedErrorType, serialize, unstable_connector, webSocket, } from '@wagmi/core';
|
|
53
|
-
export { version } from '../version.js';
|
|
54
|
-
//# sourceMappingURL=index.d.ts.map
|