From 7cda8d5573928239d0af2c6d951d697b2fe47675 Mon Sep 17 00:00:00 2001 From: hueso Date: Thu, 5 Mar 2026 21:59:10 -0300 Subject: [PATCH] import contracts from submodule --- .gitmodules | 3 +++ wagmi.config.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .gitmodules diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c122daf --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "p2pix-smart-contracts"] + path = p2pix-smart-contracts + url = https://git.p2pix.co/doiim/p2pix-smart-contracts diff --git a/wagmi.config.ts b/wagmi.config.ts index e12d046..0a19f61 100644 --- a/wagmi.config.ts +++ b/wagmi.config.ts @@ -6,6 +6,6 @@ export default defineConfig({ contracts: [], plugins: [ hardhat({ - project: '../p2pix-smart-contracts', + project: 'p2pix-smart-contracts', }),], })