Skip to content

Commit

Permalink
try debug
Browse files Browse the repository at this point in the history
  • Loading branch information
puneet2019 committed Feb 2, 2024
1 parent adcbecf commit 3200a91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -397,8 +397,9 @@ export async function BlockNDaysAgo(queryClient, N) {

export async function QuerySmartStakeAPI(appName, days) {
let URL = `https://7nkwv3z5t1.execute-api.us-east-1.amazonaws.com/prod/valperf?app=${appName}&accessKey=${SMARTSTAKE_ACCESS_KEY}&days=${days}`
let resp = await fetch(URL)
return await resp.json()
const resp = await fetch(URL)
const jsonresp = await resp.json()
return jsonresp
}

export async function SmartStakeFilterOnGov(appName, validators, govConfig, hostChainPrefix, reason = {
Expand Down

0 comments on commit 3200a91

Please sign in to comment.