Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into cohort/clrfund
Browse files Browse the repository at this point in the history
  • Loading branch information
yuetloo committed Aug 3, 2023
2 parents e748cf5 + e8cdd41 commit a61eef4
Show file tree
Hide file tree
Showing 19 changed files with 276 additions and 143 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/finalize-round.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
echo "MACI_START_BLOCK:" $MACI_START_BLOCK
# tally and finalize
cd contracts
yarn hardhat run --network "${NETWORK}" scripts/tally.ts
yarn hardhat tally --round-address "${ROUND_ADDRESS}" --network "${NETWORK}"
curl --location --request POST 'https://api.pinata.cloud/pinning/pinFileToIPFS' \
--header "Authorization: Bearer ${{ secrets.PINATA_JWT }}" \
--form 'file=@"tally.json"'
Expand Down
4 changes: 2 additions & 2 deletions contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clrfund/contracts",
"version": "4.2.4",
"version": "4.2.5",
"license": "GPL-3.0",
"scripts": {
"hardhat": "hardhat",
Expand All @@ -11,7 +11,7 @@
"deployTestRound:local": "hardhat run --network localhost scripts/deployTestRound.ts",
"contribute:local": "hardhat run --network localhost scripts/contribute.ts",
"vote:local": "hardhat run --network localhost scripts/vote.ts",
"tally:local": "hardhat run --network localhost scripts/tally.ts",
"tally:local": "hardhat --network localhost tally",
"finalize:local": "hardhat run --network localhost scripts/finalize.ts",
"claim:local": "hardhat run --network localhost scripts/claim.ts",
"test": "hardhat test",
Expand Down
123 changes: 0 additions & 123 deletions contracts/scripts/tally.ts

This file was deleted.

1 change: 1 addition & 0 deletions contracts/tasks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ import './mergeAllocations'
import './setDurations'
import './deploySponsor'
import './loadUsers'
import './tally'
Loading

0 comments on commit a61eef4

Please sign in to comment.