Skip to content

Commit

Permalink
Merge pull request #270 from zkLinkProtocol/feat/add_zkJump_link
Browse files Browse the repository at this point in the history
update token list api param
  • Loading branch information
leochw authored Jul 21, 2024
2 parents 56c3e70 + 37e2df2 commit c94ce15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/zksync/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const useZkSyncTokensStore = defineStore("zkSyncTokens", () => {
if (eraNetwork.value.blockExplorerApi) {
// const networkVal = route.path === "/assets" || route.path === "/balances" ? "" : eraNetwork.value.key;
const response: Api.Response.Collection<Api.Response.Token> = await $fetch(
`${eraNetwork.value.blockExplorerApi}/tokens?limit=200&key=`
`${eraNetwork.value.blockExplorerApi}/tokens?limit=300&key=`
);
const explorerTokens = response.items.map(mapApiToken);
const etherExplorerToken = explorerTokens.find((token) => token.address === ETH_TOKEN.address);
Expand Down

0 comments on commit c94ce15

Please sign in to comment.