Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

Commit 6e4f2ca

Browse files
authored
add DelegatedManagerFactory abi (#7)
1 parent 89fa10b commit 6e4f2ca

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/update-abis.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,20 @@ cp .env.default .env
4747
yarn && yarn compile
4848
cd artifacts
4949

50+
# Define the Set manager factory contracts of interest for the subgraph development
51+
MANAGER_FACTORY_CONTRACTS=(
52+
DelegatedManagerFactory
53+
)
54+
5055
# Define the Set manager contracts of interest for the subgraph development
5156
MANAGER_CONTRACTS=(
5257
DelegatedManager
5358
)
5459

5560
# Copy the contract ABI code into the bind mounted working directory
61+
for c in "${MANAGER_FACTORY_CONTRACTS[@]}"; do
62+
cp "contracts/factories/$c.sol/$c.json" "/subgraph/abis"
63+
done
5664
for c in "${MANAGER_CONTRACTS[@]}"; do
5765
cp "contracts/manager/$c.sol/$c.json" "/subgraph/abis"
5866
done

0 commit comments

Comments
 (0)