Skip to content

Commit

Permalink
chore: simplify folders structure, rename project to vevm
Browse files Browse the repository at this point in the history
  • Loading branch information
guerrap committed Mar 20, 2024
1 parent a92406a commit d9e6d94
Show file tree
Hide file tree
Showing 51 changed files with 51 additions and 51 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@carrot-kpi/wagmi-composables",
"name": "vevm",
"version": "0.0.0",
"type": "module",
"main": "./dist/index.js",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { inject } from "vue";
import { WAGMI_CONFIG_KEY, ensureInjectionContext } from "../../commons";
import { WAGMI_CONFIG_KEY, ensureInjectionContext } from "../commons";
import type { Config } from "@wagmi/core";

export type UseWagmiConfigReturnType<config extends Config> = config;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
96 changes: 48 additions & 48 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
export * from "./composables/wagmi/useAccount";
export * from "./composables/wagmi/useBalance";
export * from "./composables/wagmi/useBlockNumber";
export * from "./composables/wagmi/useBlockTransactionCount";
export * from "./composables/wagmi/useBytecode";
export * from "./composables/wagmi/useCall";
export * from "./composables/wagmi/useChain";
export * from "./composables/wagmi/useChainId";
export * from "./composables/wagmi/useClient";
export * from "./composables/wagmi/useConnect";
export * from "./composables/wagmi/useConnections";
export * from "./composables/wagmi/useConnectorClient";
export * from "./composables/wagmi/useConnectors";
export * from "./composables/wagmi/useDisconnect";
export * from "./composables/wagmi/useEnsAddress";
export * from "./composables/wagmi/useEnsAvatar";
export * from "./composables/wagmi/useEnsResolver";
export * from "./composables/wagmi/useEnsText";
export * from "./composables/wagmi/useEstimateFeesPerGas";
export * from "./composables/wagmi/useEstimateGas";
export * from "./composables/wagmi/useEstimateMaxPriorityFeePerGas";
export * from "./composables/wagmi/useFeeHistory";
export * from "./composables/wagmi/useGasPrice";
export * from "./composables/wagmi/usePrepareTransactionRequest";
export * from "./composables/wagmi/usePublicClient";
export * from "./composables/wagmi/useReadContract";
export * from "./composables/wagmi/useReadContracts";
export * from "./composables/wagmi/useReconnect";
export * from "./composables/wagmi/useSendTransaction";
export * from "./composables/wagmi/useSignMessage";
export * from "./composables/wagmi/useSignTypedData";
export * from "./composables/wagmi/useSimulateContract";
export * from "./composables/wagmi/useSwitchAccount";
export * from "./composables/wagmi/useSwitchChain";
export * from "./composables/wagmi/useTransaction";
export * from "./composables/wagmi/useTransactionConfirmations";
export * from "./composables/wagmi/useTransactionCount";
export * from "./composables/wagmi/useTransactionReceipt";
export * from "./composables/wagmi/useVerifyMessage";
export * from "./composables/wagmi/useVerifyTypedData";
export * from "./composables/wagmi/useWagmiConfig";
export * from "./composables/wagmi/useWaitForTransactionReceipt";
export * from "./composables/wagmi/useWalletClient";
export * from "./composables/wagmi/useWatchBlockNumber";
export * from "./composables/wagmi/useWatchBlocks";
export * from "./composables/wagmi/useWatchContractEvent";
export * from "./composables/wagmi/useWatchPendingTransactions";
export * from "./composables/wagmi/useWriteContract";
export * from "./composables/useAccount";
export * from "./composables/useBalance";
export * from "./composables/useBlockNumber";
export * from "./composables/useBlockTransactionCount";
export * from "./composables/useBytecode";
export * from "./composables/useCall";
export * from "./composables/useChain";
export * from "./composables/useChainId";
export * from "./composables/useClient";
export * from "./composables/useConnect";
export * from "./composables/useConnections";
export * from "./composables/useConnectorClient";
export * from "./composables/useConnectors";
export * from "./composables/useDisconnect";
export * from "./composables/useEnsAddress";
export * from "./composables/useEnsAvatar";
export * from "./composables/useEnsResolver";
export * from "./composables/useEnsText";
export * from "./composables/useEstimateFeesPerGas";
export * from "./composables/useEstimateGas";
export * from "./composables/useEstimateMaxPriorityFeePerGas";
export * from "./composables/useFeeHistory";
export * from "./composables/useGasPrice";
export * from "./composables/usePrepareTransactionRequest";
export * from "./composables/usePublicClient";
export * from "./composables/useReadContract";
export * from "./composables/useReadContracts";
export * from "./composables/useReconnect";
export * from "./composables/useSendTransaction";
export * from "./composables/useSignMessage";
export * from "./composables/useSignTypedData";
export * from "./composables/useSimulateContract";
export * from "./composables/useSwitchAccount";
export * from "./composables/useSwitchChain";
export * from "./composables/useTransaction";
export * from "./composables/useTransactionConfirmations";
export * from "./composables/useTransactionCount";
export * from "./composables/useTransactionReceipt";
export * from "./composables/useVerifyMessage";
export * from "./composables/useVerifyTypedData";
export * from "./composables/useWagmiConfig";
export * from "./composables/useWaitForTransactionReceipt";
export * from "./composables/useWalletClient";
export * from "./composables/useWatchBlockNumber";
export * from "./composables/useWatchBlocks";
export * from "./composables/useWatchContractEvent";
export * from "./composables/useWatchPendingTransactions";
export * from "./composables/useWriteContract";

export * from "./types";
2 changes: 1 addition & 1 deletion tests/composables/wagmi/useAccount.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, test, expect } from "vitest";
import { DEFAULT_ACCOUNT_ADDRESSES, withHostSetup } from "../../utils";
import { useAccount } from "../../../src/composables/wagmi/useAccount";
import { useAccount } from "../../../src/composables/useAccount";

describe("Composables", () => {
describe("Wagmi", () => {
Expand Down

0 comments on commit d9e6d94

Please sign in to comment.