Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.0.3 #27

Merged
merged 7 commits into from
Mar 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions api/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.DS_Store
node_modules
*.tar.gz
*.zip
*.log
dist/
build/
13 changes: 10 additions & 3 deletions api/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"name": "yearn-tokenlist-api",
"version": "1.0.0",
"version": "1.0.2",
"main": "index.js",
"files": [ "scripts/*", "src/*"],
"repository": {
"type": "git",
"url": "https://github.com/sambacha/yearn-finance-tokenlist.git",
"directory": "api/"
},
"scripts": {
"build-list:all": "yarn build-list:erc20-mainnet && yarn build-list:erc721-mainnet && yarn build-list:erc1155-mainnet && yarn scrape-open-graph",
"build-list:erc20-mainnet": "ts-node ./scripts/erc20-mainnet.ts && yarn run lint:fix-json",
Expand All @@ -10,8 +16,8 @@
"scrape-open-graph": "ts-node ./scripts/open-graph-scrapper.ts && yarn run lint:fix-json",
"lint:fix-json": "prettier --write \"../index/**/*.json\""
},
"author": "",
"license": "ISC",
"author": "sam bacha <sam@freighttrust.com>",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.2",
"@openzeppelin/contracts": "3.4.1",
Expand All @@ -21,6 +27,7 @@
"@types/node": "14.14.35",
"@types/node-fetch": "2.5.8",
"@uniswap/token-lists": "1.0.0-beta.19",
"@0xsequence/collectible-lists": "1.1.0",
"ajv": "6.12.2",
"ajv-formats": "1.5.1",
"cli-progress": "3.9.0",
Expand Down
105 changes: 60 additions & 45 deletions api/scripts/open-graph-scrapper.ts
Original file line number Diff line number Diff line change
@@ -1,83 +1,98 @@
import * as fs from "fs"
import { YearnInfo, YearnList, schema as yearn_schema } from "@yfi/tokenlist";
import { TokenInfo, TokenList, schema as token_schema } from "@uniswap/token-lists";
// @file graphql scrapper
import * as fs from 'fs';
import { YearnInfo, YearnList, schema as yearn_schema } from 'yearn-tokenlist';
import {
TokenInfo,
TokenList,
schema as token_schema,
} from '@uniswap/token-lists';
const cliProgress = require('cli-progress');
const Ajv = require("ajv")
const Ajv = require('ajv');
const ogs = require('open-graph-scraper');

// Progress bar
const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);
const progressBar = new cliProgress.SingleBar(
{},
cliProgress.Presets.shades_classic,
);

const main = async () => {

// Get all token list files
let folders = fs.readdirSync('../index/').filter(folder => !folder.includes('.'))
let files: string[] = folders.reduce((files: string[], folder:string) => {
const currentFiles: string[] = fs.readdirSync('../index/' + folder)
currentFiles.forEach(file => {
files.push('../index/' + folder + '/' + file)
})
return files
}, [])
let folders = fs
.readdirSync('../index/')
.filter((folder) => !folder.includes('.'));
let files: string[] = folders.reduce((files: string[], folder: string) => {
const currentFiles: string[] = fs.readdirSync('../index/' + folder);
currentFiles.forEach((file) => {
files.push('../index/' + folder + '/' + file);
});
return files;
}, []);

// Iterate over all lists
for (let i=0; i < files.length; i++) {
const f: string = files[i]
console.log('Images for ' + f)
const list_path = f
for (let i = 0; i < files.length; i++) {
const f: string = files[i];
console.log('Images for ' + f);
const list_path = f;

// Load list
let list = f.includes('erc20') ? require('../' + list_path) as TokenList : require('../' + list_path) as YearnList
progressBar.start(list.tokens.length, 0)
for (let j = 0; j < list.tokens.length; j++ ) {
const t: YearnInfo | TokenInfo = list.tokens[j]
let list = f.includes('erc20')
? (require('../' + list_path) as TokenList)
: (require('../' + list_path) as YearnList);
progressBar.start(list.tokens.length, 0);
for (let j = 0; j < list.tokens.length; j++) {
const t: YearnInfo | TokenInfo = list.tokens[j];
//@ts-ignore
if (t.extensions.link) {
try{
try {
//@ts-ignore
const graph = await ogs({'url': t.extensions.link, 'timeout' : 5000})
const image = graph.result ? (await graph.result).ogImage : null
const graph = await ogs({ url: t.extensions.link, timeout: 5000 });
const image = graph.result ? (await graph.result).ogImage : null;
//@ts-ignore
list.tokens[j].extensions.ogImage = image ? (image.url ? image.url : null) : null
list.tokens[j].extensions.ogImage = image
? image.url
? image.url
: null
: null;
} catch (e) {
//@ts-ignore
list.tokens[j].extensions.ogImage = null
list.tokens[j].extensions.ogImage = null;
}
} else {
//@ts-ignore
list.tokens[j].extensions.ogImage = null
list.tokens[j].extensions.ogImage = null;
}
progressBar.update(j+1)
progressBar.update(j + 1);
}
progressBar.stop()
progressBar.stop();

// Validate list against schema
const ajv = new Ajv()
const validateList = ajv.compile(f.includes('erc20') ? token_schema : yearn_schema)

const ajv = new Ajv();
const validateList = ajv.compile(
f.includes('erc20') ? token_schema : yearn_schema,
);

if (!validateList(list)) {
console.log("New list has invalid schema: ")
console.log(validateList.errors)
console.log('New list has invalid schema: ');
console.log(validateList.errors);
//throw Error("^^^")
}

fs.writeFile(
list_path,
JSON.stringify(list),
{ flag: "w+" },
{ flag: 'w+' },
function (err) {
if (err) throw err
}
)
if (err) throw err;
},
);
}

}
};

main()
.then(() => {
console.log("Finished")
console.log('Finished');
})
.catch((error) => {
console.error(error)
})

console.error(error);
});
15 changes: 8 additions & 7 deletions api/src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import * as dotenv from 'dotenv'
import * as path from 'path'
// @file utils
import * as dotenv from 'dotenv';
import * as path from 'path';

export const getEnvConfig = () => {
const envFile = path.resolve(__dirname, '../config/creds.env')
const envLoad = dotenv.config({ path: envFile })
const envFile = path.resolve(__dirname, '../config/creds.env');
const envLoad = dotenv.config({ path: envFile });

if (envLoad.error) {
throw new Error(envLoad.error.message)
throw new Error(envLoad.error.message);
}

return envLoad.parsed || {}
}
return envLoad.parsed || {};
};
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"name": "yearn-tokenlist",
"version": "1.1.2",
"version": "1.1.3",
"description": "Yearn Finance tokenlist with schema validation",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sambacha/yearn-finance-tokenlist.git",
"directory": "/"
},
"main": "index.mjs",
"devDependencies": {
"@ethersproject/address": "5.0.11",
Expand Down