-
Notifications
You must be signed in to change notification settings - Fork 242
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
feat: add a staking endpoint to return a stake summary per account #2535
base: main
Are you sure you want to change the base?
feat: add a staking endpoint to return a stake summary per account #2535
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
22de8e2
to
64177c2
Compare
// Safe because `min(1)` guarantees that `data` is nonempty | ||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion | ||
Buffer.from(data[0]!, "base64"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: can we use an if
to avoid having !
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this case we actually want !
because the min(1)
line from Zod already guarantees the length, but can't encode that in the type. I generally prefer letting Zod verify this kind of thing since it will generate nice consistent error messages, but it requires the !
to avoid having a second null check at runtime. In this case since it's so many accounts, it's not huge but it is actually a relevant optimization.
I usually wrap this kind of thing into a nonEmptyArray
Zod helper which returns [T, ...T[]]
instead of T[]
which typescript can then guarantee is nonempty...
64177c2
to
cfd9a57
Compare
cfd9a57
to
2724816
Compare
2724816
to
9bbc2ed
Compare
Summary
Adds an endpoint to the staking app to return a stake summary per account.
Rationale
This is required to calculate Fogo flames
How has this been tested?