Skip to content

Commit 272db97

Browse files
authored
Merge pull request #13688 from ethereum/update-eth-staked-endpoint
Update ethstaked data endpoint
2 parents 5d32204 + 0671850 commit 272db97

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/lib/api/fetchTotalEthStaked.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ export const fetchTotalEthStaked = async (): Promise<MetricReturnData> => {
1010
return { error: "Dune API key not found" }
1111
}
1212

13-
const url = new URL(
14-
"api/v1/endpoints/pablop/eth-staked/results",
15-
DUNE_API_URL
16-
)
13+
const url = new URL("api/v1/query/3915587/results", DUNE_API_URL)
1714

1815
try {
1916
const ethStakedResponse = await fetch(url, {

0 commit comments

Comments
 (0)