Skip to content

Commit

Permalink
fix: wagmi plugin type naming
Browse files Browse the repository at this point in the history
  • Loading branch information
chmanie committed Jan 13, 2025
1 parent eeaab1f commit 1c096be
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/wagmi-plugin/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"parserOptions": {
"project": "./tsconfig.json"
"project": "./packages/wagmi-plugin/tsconfig.json"
}
}
2 changes: 1 addition & 1 deletion packages/wagmi-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"homepage": "https://docs.colony.io/develop",
"dependencies": {
"@colony/abis": "^1.8.1",
"@colony/abis": "^1.8.3",
"@colony/core": "^3.0.0",
"@typechain/ethers-v5": "^11.1.0",
"@typechain/ethers-v6": "^0.4.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/wagmi-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import { join as joinPath } from 'node:path';
import { readFile } from 'node:fs/promises';
import { fetch } from 'cross-fetch';
import { type Address } from 'abitype';
import { joinAbis, type NodeType } from '@colony/abis/utils';
import { joinAbis, type MergeType } from '@colony/abis/utils';
import { nonNullable } from '@colony/core';

interface ContractConfig {
name: string;
path: string;
address?: Address;
merge?: NodeType;
merge?: MergeType;
}

interface ColonyConfig {
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1c096be

Please sign in to comment.