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

Wrld 3 feature/process events #28

Open
wants to merge 32 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
519a7e3
WRLD-5 initial commit
sylvaincormier Apr 24, 2024
aa8ac04
WRLD-5 integration of chain-listener pallet into runtime
sylvaincormier Apr 25, 2024
d24c026
WRLD-5 - offchain worker hook
sylvaincormier Apr 26, 2024
1926c88
WRLD-3 node mods (WIP)
sylvaincormier May 7, 2024
3f237e3
WRLD-3 CardanoFollowerRPC WIP
sylvaincormier May 7, 2024
3eabd52
WRLD-3 WIP RPC
sylvaincormier May 7, 2024
3e10517
WRLD-3 Include sp-std
sylvaincormier May 8, 2024
2e1e2ef
WRLD-3 add serde+ pallet code WIP
sylvaincormier May 8, 2024
25f047a
WRLD-3 Add missing event and error variants, fix type mismatch in HTT…
sylvaincormier May 8, 2024
e5f1090
Implement CardanoFollowerRpc to process and store Cardano events
sylvaincormier May 8, 2024
8085dfe
WRLD-3 Implement Cardano event submission via RPC endpoint
sylvaincormier May 9, 2024
e352e5b
WRLD-3
sylvaincormier May 9, 2024
449036b
WRLD-3 fix implementation
sylvaincormier May 9, 2024
73c069b
Priority queue RPC inside substrate node
sylvaincormier May 16, 2024
200306c
WRLD-3 cleanup
sylvaincormier May 16, 2024
d52fdfc
feat: Add offchain worker with JSON-RPC request handling and response…
sylvaincormier May 17, 2024
145eedb
WRLD-3 pop and count
sylvaincormier May 17, 2024
e364c8b
WRLD-3 get events by timestamp
sylvaincormier May 17, 2024
57cf60b
WRLD-3 docs
sylvaincormier May 17, 2024
9d051f8
WRLD-3 docs correct
sylvaincormier May 17, 2024
682fc96
remove todo
sylvaincormier May 17, 2024
ecffc8f
WRLD-3 docs
sylvaincormier May 17, 2024
8e61f6f
WRLD-3 feat: Implement event sequence validation and leader election …
sylvaincormier May 18, 2024
ebcba33
WRLD-3 create inclusion transaction WIP
sylvaincormier May 19, 2024
97de055
WRLD-3 resolved dependency issue
sylvaincormier May 20, 2024
6aaa5be
WRLD-3
sylvaincormier May 20, 2024
10b2003
WRLD-3 feat: Enhance fetch_all_events to deserialize and process RPC …
sylvaincormier May 20, 2024
c879123
Implement Off-Chain Worker for Event Fetching and Processing
sylvaincormier May 20, 2024
589e56a
Merge branch 'WRLD-3-feature/process-events' of https://github.com/wo…
sylvaincormier May 20, 2024
cb61bfa
Implement Off-Chain Worker for Event Fetching and Processing
sylvaincormier May 20, 2024
ff10e34
Implement Off-Chain Worker for Event Fetching and Processing
sylvaincormier May 20, 2024
2e0cb70
cleanup
sylvaincormier May 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
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Substrate .gitignore

# Rust build artifacts
/target/
**/*.rs.bk

# Generated files
Cargo.lock

# Build artifacts
*.wasm
wasm_code

# Logs
*.log

# Directory for compiled executables and dependency caches
bin/
node_modules/

# Mac specific
.DS_Store

# Temporary files
*.tmp
*.swp
*.swo

# Editor-specific settings and folders
.vscode/
.idea/
*.iml

# Node specific
/node_runtime/
/node_template/

Loading