- Standardized the use of quotes and spacing in various files. - Removed unnecessary line breaks and trailing spaces in components. - Improved the structure of computed properties and methods for better clarity. - Enhanced the consistency of prop definitions and emit events in Vue components. - Updated the GraphQL composable to streamline error handling and data processing. - Refactored network configuration files for better organization and readability. - Cleaned up model files by removing redundant lines and ensuring consistent formatting. - Adjusted router configuration for improved readability. - Enhanced utility functions for better maintainability and clarity.
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
import { defineConfig } from "@wagmi/cli";
|
|
import { hardhat } from "@wagmi/cli/plugins";
|
|
|
|
export default defineConfig({
|
|
out: "src/blockchain/abi.ts",
|
|
contracts: [],
|
|
plugins: [
|
|
hardhat({
|
|
project: "p2pix-smart-contracts",
|
|
}),
|
|
],
|
|
});
|