You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which implies those properties should be indexed in the plays table.
The endpoint should return a paginated list of Play entities with the following properties:
deploy_hash
round_id
play_id
player_account_hash
player_public_key
prize_amount
is_jackpot
timestamp
The jackpot data should be calculated over the plays table using a query like the following one which should be provided as findPlays(filters, offset, limit) function in the Play repository.
The player_public_key should be deanonimized from the player_account_hash in the API handler using CSPR.cloud Account API
The text was updated successfully, but these errors were encountered:
The following endpoint should be added:
The endpoint should accept the following filters:
player_account_hash
round_id
E.g.
GET /plays?player_account_hash=dead...beef
Which implies those properties should be indexed in the
plays
table.The endpoint should return a paginated list of
Play
entities with the following properties:deploy_hash
round_id
play_id
player_account_hash
player_public_key
prize_amount
is_jackpot
timestamp
The jackpot data should be calculated over the
plays
table using a query like the following one which should be provided asfindPlays(filters, offset, limit)
function in thePlay
repository.The
player_public_key
should be deanonimized from theplayer_account_hash
in the API handler using CSPR.cloud Account APIThe text was updated successfully, but these errors were encountered: