Skip to content

Commit

Permalink
fix: checkpointer and event joiner can work together (#11)
Browse files Browse the repository at this point in the history
* feat: eth denver demo

Completes support for eth denver demo by adding persistence functionality. Changes
models to attendance and points model, with points model stored for event
attendees.

Fixes any outstanding bugs.
  • Loading branch information
dbcfd authored Feb 20, 2024
1 parent fdf9823 commit 3cb953e
Show file tree
Hide file tree
Showing 30 changed files with 1,025 additions and 369 deletions.
4 changes: 2 additions & 2 deletions .fluence/aqua/deals.aqua
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ data Deal:
timestamp: string

data Deals:
dealName: ?Deal
ceramicFluence: ?Deal

func get() -> Deals:
<- Deals(
dealName=nil
ceramicFluence=nil
)
4 changes: 2 additions & 2 deletions .fluence/aqua/services.aqua
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ data ExecutionConfig:
private_key: string
ceramic_endpoint: string
checkpointer_endpoint: string
depin_stream_id: string
proof_of_data_stream_id: string
attendance_model_id: string
points_model_id: string

data SseResponse:
error: string
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
env:
DID_DOCUMENT: ${{ vars.DID_DOCUMENT }}
DID_PRIVATE_KEY: ${{ secrets.DID_PRIVATE_KEY }}
RUST_LOG: info
build:
runs-on: ubuntu-latest
steps:
Expand Down
Loading

0 comments on commit 3cb953e

Please sign in to comment.