Skip to content

Commit 94f1492

Browse files
mds1fvictorio
andauthoredMay 22, 2024
refactor: move to automated checks (#62)
* organize script folder * init bun scripts * style: init biome * save metadata to json * feat: check opcodes * chore: sort keys * feat: slice by feature * build: generate data with 'bun main {chainId}' * chore: slim down opcode output * refactor: change to arrays * feat: add deployed contracts checks * improve ux * feat: precompile support * refactor: move to checks folder * chore: remove log * chore: split up lint and fmt jobs * feat: add addresses that uniquely identify an evm stack * build: fix lint error * start UI work * feat: add opcodes back to UI * add deployed contracts to UI * add precompiles to UI * add stack addrs to UI * style: reduce row spacing * build: fix lint errors * build: move from pnpm to bun * style: switch from prettier to biome * chore: unify dirs * chore: some fixes * build: watch mode * chore: remove old comments * feat: add Base * feat: load in new chains * style: some info/UX cleanup * feat: json diffs * style: add logos * style: change toggle * feat: query params * update contributing * style: loading spinner * style: move things from footer to header * style: diff scroll improvements * ci: update for bun * ci: fix? * ci: add node * ci: remove jq from build pipeline since vercel has no jq * ci: revert ci as test * ci: back to bun * ci/style: fmt after merge, add node * ci: fix build command * chore: clarify copy * feat: opcode support for features view * feat: metadata and opcodes feature comparison * feat: back button * feat: more diff tables * feat: add chains * cleanup * refactor home page * tweaks * remove old code * fixes * add features to the comparison table * style: fmt * Add precompile test for secp256r1 (#65) * Add precompile test for secp256r1 * update chain data --------- Co-authored-by: Matt Solomon <matt@mattsolomon.dev> * doc: add API key note * chore: dynamic branch name * refactor: dedupe feature declarations * refactor: more cleanup * cleanup * style: fmt * ci: add hourly job to check data * ci: add workflow dispatch * ci: limit diff to script/data * ci: tweak label * funding.yml --------- Co-authored-by: Franco Victorio <victorio.franco@gmail.com>
1 parent 45de5e0 commit 94f1492

File tree

234 files changed

+12268
-15311
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

234 files changed

+12268
-15311
lines changed
 

‎.eslintrc.js

+35-35
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
module.exports = {
2-
env: {
3-
browser: true,
4-
es2021: true,
5-
},
6-
extends: [
7-
'next/core-web-vitals',
8-
'eslint:recommended',
9-
'plugin:@typescript-eslint/recommended',
10-
'plugin:react/recommended',
11-
],
12-
overrides: [
13-
{
14-
env: {
15-
node: true,
16-
},
17-
files: ['.eslintrc.{js,cjs}'],
18-
parserOptions: {
19-
sourceType: 'script',
20-
},
21-
},
22-
],
23-
parser: '@typescript-eslint/parser',
24-
parserOptions: {
25-
ecmaVersion: 'latest',
26-
sourceType: 'module',
27-
},
28-
plugins: ['@typescript-eslint', 'react'],
29-
rules: {
30-
'react/react-in-jsx-scope': 'off',
31-
// Allow unused variables that start with an underscore.
32-
'@typescript-eslint/no-unused-vars': [
33-
'error',
34-
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
35-
],
36-
},
2+
env: {
3+
browser: true,
4+
es2021: true,
5+
},
6+
extends: [
7+
'next/core-web-vitals',
8+
'eslint:recommended',
9+
'plugin:@typescript-eslint/recommended',
10+
'plugin:react/recommended',
11+
],
12+
overrides: [
13+
{
14+
env: {
15+
node: true,
16+
},
17+
files: ['.eslintrc.{js,cjs}'],
18+
parserOptions: {
19+
sourceType: 'script',
20+
},
21+
},
22+
],
23+
parser: '@typescript-eslint/parser',
24+
parserOptions: {
25+
ecmaVersion: 'latest',
26+
sourceType: 'module',
27+
},
28+
plugins: ['@typescript-eslint', 'react'],
29+
rules: {
30+
'react/react-in-jsx-scope': 'off',
31+
// Allow unused variables that start with an underscore.
32+
'@typescript-eslint/no-unused-vars': [
33+
'error',
34+
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
35+
],
36+
},
3737
};

‎.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [mds1]

0 commit comments

Comments
 (0)