From 3f77d8bbf73ce8909d84d8e8b50c9f913c44cb9f Mon Sep 17 00:00:00 2001 From: yuetloo Date: Mon, 5 Feb 2024 12:06:21 -0500 Subject: [PATCH] add maciTxHash --- .github/workflows/finalize-round.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/finalize-round.yml b/.github/workflows/finalize-round.yml index 8f16a75f6..d95de8018 100644 --- a/.github/workflows/finalize-round.yml +++ b/.github/workflows/finalize-round.yml @@ -61,7 +61,7 @@ jobs: run: | export SUBGRPAH_URL="https://api.thegraph.com/subgraphs/name/${{ github.event.inputs.subgraph_name }}" echo $SUBGRAPH_URL - export ROUND=$(curl -X POST -d '{"query":"{clrFunds {id currentRound {id maci}}}"}' $SUBGRPAH_URL) + export ROUND=$(curl -X POST -d '{"query":"{clrFunds {id currentRound {id maci maciTxHash}}}"}' $SUBGRPAH_URL) export CLRFUND_ADDRESS=$(node -e 'console.log(JSON.parse(process.env.ROUND).data.clrFunds[0].id)') export ROUND_ADDRESS=$(node -e 'console.log(JSON.parse(process.env.ROUND).data.clrFunds[0].currentRound.id)') export MACI_ADDRESS=$(node -e 'console.log(JSON.parse(process.env.ROUND).data.clrFunds[0].currentRound.maci)')