Skip to content

Commit

Permalink
fix: etherscan api desc issue #481
Browse files Browse the repository at this point in the history
  • Loading branch information
kvhnuke committed Aug 15, 2024
1 parent 1acbb9d commit 27a2f61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const getAddressActivity = async (
): Promise<EthereumRawInfo[]> => {
return cacheFetch(
{
url: `${endpoint}api?module=account&action=txlist&address=${address}`,
url: `${endpoint}api?module=account&action=txlist&address=${address}&page=1&offset=50&sort=desc`,
},
TTL
).then((res) => {
Expand Down

1 comment on commit 27a2f61

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.