generated from proofoftom/buidler-waffle-typechain-quasar
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/export-project-images' into merge/devconsea
- Loading branch information
Showing
39 changed files
with
755 additions
and
570 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/** | ||
* Export the project logo images in a ClrFund round. | ||
* | ||
* Sample usage: | ||
* yarn hardhat export-images \ | ||
* --output-dir ../vue-apps/public/ipfs | ||
* --gateway https://ipfs.io | ||
* --round-file ../vue-app/src/rounds/arbitrum/0x4A2d90844EB9C815eF10dB0371726F0ceb2848B0.json | ||
* | ||
* Notes: | ||
* 1) This script assumes the round has been exported using the `export-round` hardhat task | ||
*/ | ||
|
||
import { task } from 'hardhat/config' | ||
import { isPathExist, makeDirectory } from '../../utils/misc' | ||
import { getIpfsContent } from '@clrfund/common' | ||
import fs from 'fs' | ||
import { dirname } from 'path' | ||
|
||
/** | ||
* Download the IPFS file with the ipfsHash to the output directory | ||
* @param gateway IPFS gateway url | ||
* @param ipfsHash IPFS hash of the file to download | ||
* @param outputDir The directory to store the downloaded file | ||
*/ | ||
async function download({ | ||
gateway, | ||
ipfsHash, | ||
outputDir, | ||
}: { | ||
gateway: string | ||
ipfsHash: string | ||
outputDir: string | ||
}) { | ||
if (!ipfsHash) return | ||
|
||
const res = await getIpfsContent(ipfsHash, gateway) | ||
if (res.hasBody()) { | ||
console.log('Downloaded', ipfsHash) | ||
const path = `${outputDir}/${ipfsHash}` | ||
const folder = dirname(path) | ||
if (!isPathExist(folder)) { | ||
makeDirectory(folder) | ||
} | ||
|
||
fs.writeFileSync(path, res.body) | ||
} | ||
} | ||
|
||
task('export-images', 'Export project logo images') | ||
.addParam('outputDir', 'The output directory') | ||
.addParam('roundFile', 'The exported funding round file path') | ||
.addParam('gateway', 'The IPFS gateway url') | ||
.setAction(async ({ outputDir, roundFile, gateway }) => { | ||
console.log('Starting to download from ipfs') | ||
|
||
const data = fs.readFileSync(roundFile, { encoding: 'utf-8' }) | ||
const round = JSON.parse(data) | ||
const projects = round.projects | ||
const images = projects.map((project: any) => { | ||
const { bannerImageHash, thumbnailImageHash, imageHash } = | ||
project.metadata | ||
return { bannerImageHash, thumbnailImageHash, imageHash } | ||
}) | ||
|
||
for (let i = 0; i < images.length; i++) { | ||
await download({ | ||
gateway, | ||
ipfsHash: images[i].bannerImageHash, | ||
outputDir, | ||
}) | ||
await download({ | ||
gateway, | ||
ipfsHash: images[i].thumbnailImageHash, | ||
outputDir, | ||
}) | ||
await download({ | ||
gateway, | ||
ipfsHash: images[i].imageHash, | ||
outputDir, | ||
}) | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"network": "arbitrum-one", | ||
"address": "0xc06349D95C30551Ea510bD5F35CfA2151499D60a", | ||
"factoryStartBlock": 96912420, | ||
"recipientRegistryStartBlock": 96912420 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.