Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
feat: 🐛 Algorand: Correct default Indexer & API URLS
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTheRobot committed Jun 26, 2023
1 parent 322c210 commit 4e47874
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/node/currencies/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,14 @@ export default function getCurrency(
});
}
case "algorand": {
return new AlgorandConfig({ bundlr, name: "algorand", ticker: "ALGO", providerUrl: providerUrl ?? "https://algoexplorerapi.io", wallet, opts });
return new AlgorandConfig({
bundlr,
name: "algorand",
ticker: "ALGO",
providerUrl: providerUrl ?? "https://mainnet-api.algonode.cloud",
wallet,
opts: { indexerUrl: "https://mainnet-idx.algonode.cloud", ...opts },
});
}
case "aptos": {
return new AptosConfig({
Expand Down

0 comments on commit 4e47874

Please sign in to comment.