Skip to content

Commit 0a648c9

Browse files
committed
chore: Ge tokenlist generating
1 parent dee9214 commit 0a648c9

19 files changed

+5886
-4525
lines changed

.env.template

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
INFURA_KEY=xxx
2+
POKT_KEY=xxx # For Gnosis Chain provider

.eslintrc.js

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
module.exports = {
2-
ignorePatterns: ["**/dist/**/*"],
2+
ignorePatterns: ['**/dist/**/*'],
33

44
env: {
5-
node: true
5+
node: true,
66
},
77

88
extends: [
9-
"eslint:recommended",
9+
'eslint:recommended',
1010
'plugin:@typescript-eslint/recommended',
1111
'plugin:prettier/recommended',
1212
],
1313

14-
plugins: [
15-
'@typescript-eslint',
16-
'prettier'
17-
],
14+
plugins: ['@typescript-eslint', 'prettier'],
1815

1916
parserOptions: {
2017
ecmaVersion: 2020,
@@ -23,9 +20,9 @@ module.exports = {
2320

2421
rules: {
2522
'prettier/prettier': 'warn',
26-
"curly": ["error", "multi-line"],
27-
"no-console": ["off"],
28-
"max-len": ["warn", { ignoreComments: true }],
29-
"@typescript-eslint/no-explicit-any": ["off"]
23+
curly: ['error', 'multi-line'],
24+
'no-console': ['off'],
25+
'max-len': ['warn', { ignoreComments: true }],
26+
'@typescript-eslint/no-explicit-any': ['off'],
3027
},
31-
};
28+
}

generated/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
### Generated tokenlists (do not modify)
2+
3+
These files are automatically generated via the src/generator.ts script. You are
4+
advised not to modify these files. If you wish to add, remove or modify tokens
5+
in these files, make changes to the relevant tokenlist files in
6+
src/tokenlists/<your-tokenlist>. Read the tokenlists readme to learn more.

0 commit comments

Comments
 (0)