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

Dictionary V2 Ethereum #225

Merged
merged 59 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
e348509
move node-core
jiqiang90 Nov 8, 2023
bda0b32
working but need tidy up
jiqiang90 Nov 19, 2023
846ba4f
use EnqueueBlock
jiqiang90 Nov 28, 2023
88d92c2
draft
jiqiang90 Nov 29, 2023
038e1c9
Update packages/node-core/src/indexer/blockDispatcher/block-dispatche…
jiqiang90 Nov 29, 2023
17c1630
draft
jiqiang90 Dec 6, 2023
728ed61
generalization draft
jiqiang90 Dec 21, 2023
0b4cc19
tidy up
jiqiang90 Dec 22, 2023
e4f1c8f
Fix runtime issue
stwiname Dec 22, 2023
47e64e5
working
jiqiang90 Dec 22, 2023
72168b9
rename
jiqiang90 Jan 11, 2024
55ee39a
update interface
jiqiang90 Jan 25, 2024
2a51107
fix v1 tests
jiqiang90 Jan 29, 2024
9e62536
update tests
jiqiang90 Jan 30, 2024
f45529b
update interface and tests
jiqiang90 Feb 2, 2024
37f04cf
fix test and change enqueue type
jiqiang90 Feb 5, 2024
2c8e564
fix modulo and bypass blocks
jiqiang90 Feb 6, 2024
8d1efcb
tidy up
jiqiang90 Feb 6, 2024
370c537
tidy up and more fixes
jiqiang90 Feb 7, 2024
b67e2a6
Update packages/node-core/src/indexer/blockDispatcher/worker-block-di…
jiqiang90 Feb 7, 2024
5d0e44c
Update packages/node-core/src/indexer/blockDispatcher/worker-block-di…
jiqiang90 Feb 7, 2024
1d5b631
Fix part 1
jiqiang90 Feb 8, 2024
a8b7a4b
Fix part 2
jiqiang90 Feb 8, 2024
f858c10
Update packages/node/src/indexer/dictionary/v2/ethDictionaryV2.ts
jiqiang90 Feb 8, 2024
a65f951
Update packages/node/src/indexer/dictionary/v2/types.ts
jiqiang90 Feb 8, 2024
eddc760
Update packages/node/src/indexer/dictionary/v2/ethDictionaryV2.ts
jiqiang90 Feb 8, 2024
8e90675
Fix part 3
jiqiang90 Feb 12, 2024
7757340
Fix part 4
jiqiang90 Feb 12, 2024
b04df53
Fix part 5
jiqiang90 Feb 13, 2024
df186af
Fix worker fetching
jiqiang90 Feb 13, 2024
c7ee51e
Add feature disable dictionary, timeout inspection query
jiqiang90 Feb 13, 2024
4151e83
private getDictionary
jiqiang90 Feb 15, 2024
5fa4c83
Fix part 6
jiqiang90 Feb 15, 2024
4703a9c
Fix update v2 metadata when getData
jiqiang90 Feb 15, 2024
2d5dd39
other fixes
jiqiang90 Feb 19, 2024
9400555
other fixes
jiqiang90 Feb 29, 2024
c6067ca
remove node-core, update dependencies
jiqiang90 Mar 12, 2024
3299f75
Merge remote-tracking branch 'origin/main' into dictionary-v2-poc-gen…
jiqiang90 Mar 12, 2024
09aefcb
update
jiqiang90 Mar 12, 2024
4254f60
remove FAT
jiqiang90 Mar 12, 2024
48184c1
fix formatter
jiqiang90 Mar 13, 2024
d4fe14e
Update packages/node/src/ethereum/utils.ethereum.ts
jiqiang90 Mar 14, 2024
f72e39f
tidy up
jiqiang90 Mar 14, 2024
b3cb703
Merge remote-tracking branch 'origin/dictionary-v2-poc-generalization…
jiqiang90 Mar 14, 2024
01cfd7d
fix isFullBlock
jiqiang90 Mar 17, 2024
e031b3f
Merge remote-tracking branch 'origin/main' into dictionary-v2-poc-gen…
jiqiang90 Mar 17, 2024
c0442b7
fix node-core version
jiqiang90 Mar 17, 2024
acf53f5
Update packages/node/src/indexer/dictionary/v2/ethDictionaryV2.ts
jiqiang90 Mar 18, 2024
0e73132
Update packages/node/src/indexer/dictionary/v1/ethDictionaryV1.ts
jiqiang90 Mar 18, 2024
5fba295
Fix1
jiqiang90 Mar 19, 2024
8d1e95f
Merge remote-tracking branch 'origin/dictionary-v2-poc-generalization…
jiqiang90 Mar 19, 2024
73b2bb9
tests
jiqiang90 Mar 19, 2024
b1c32ca
Fix2
jiqiang90 Mar 20, 2024
ae8ad1d
tidy up
jiqiang90 Mar 20, 2024
0939862
sync up
jiqiang90 Mar 20, 2024
2ff323d
fix dependencies
jiqiang90 Mar 20, 2024
d934910
fix dependencies
jiqiang90 Mar 21, 2024
1943764
fix tests
jiqiang90 Mar 21, 2024
09973bd
Fix converting dict block to eth block, add tests (#265)
stwiname Mar 21, 2024
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
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@
*.tgz
*.cmd
*.sh
generate-project*.yaml
*.proto
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ module.exports = {
moduleNameMapper: {
'@subql/common-ethereum': '<rootDir>/packages/common-ethereum/src',
'@subql/types-ethereum': '<rootDir>/packages/types/src',
'@subql/node-core': '<rootDir>/packages/node-core/src/',
},

// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
Expand Down
Loading
Loading