Skip to content

Commit

Permalink
Merge pull request #1223 from nullun/fix-explorer-links
Browse files Browse the repository at this point in the history
Replace outdated explorer info
  • Loading branch information
nullun authored Jan 12, 2024
2 parents dded637 + b05c307 commit fed93ae
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/get-details/algokit/utils/ts/code/modules/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ Returns an algod SDK client that automatically retries on idempotent calls

```typescript
// Uses process.env.ALGOD_SERVER, process.env.ALGOD_PORT and process.env.ALGOD_TOKEN
// Automatically detects if you are using PureStake to switch in the right header name for ALGOD_TOKEN
// Automatically detects if you are using a provider to switch in the right header name for ALGOD_TOKEN
const algod = getAlgoClient()
await algod.healthCheck().do()
```
Expand Down Expand Up @@ -883,7 +883,7 @@ Returns an indexer SDK client that automatically retries on idempotent calls

```typescript
// Uses process.env.INDEXER_SERVER, process.env.INDEXER_PORT and process.env.INDEXER_TOKEN
// Automatically detects if you are using PureStake to switch in the right header name for INDEXER_TOKEN
// Automatically detects if you are using a provider to switch in the right header name for INDEXER_TOKEN
const indexer = getAlgoIndexerClient()
await indexer.makeHealthCheck().do()
```
Expand Down
2 changes: 1 addition & 1 deletion docs/get-details/ethereum_to_algorand.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ This is a non-exhaustive list of tools and services used by Ethereum developers,
| | Ethereum | Algorand | Notes |
| ---------------------------- | ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
| block explorer | Etherscan | [list of block explorers](https://developer.algorand.org/ecosystem-projects/?tags=block-explorers) |
| API service | Infura | [algonode.io](https://algonode.io), [PureStake API service](https://www.purestake.com/blog/algorand-rest-api-purestake/), [Randlabs API service](https://algoexplorer.io/api-dev/v2) | Algorand also provides an official [indexer](../indexer/) software, that these services provide access too |
| API service | Infura | [algonode.io](https://algonode.io), [BlockDaemon](https://www.blockdaemon.com/protocols/algorand), [GetBlock.io](https://getblock.io/nodes/algo/) | Algorand also provides an official [indexer](../indexer/) software, that these services provide access too |
| wallet | Metamask | mobile wallets with PeraConnect/WalletConnect ([Pera](https://perawallet.app/), [DeFly](https://defly.app/)), [MyAlgoWallet](https://wallet.myalgo.com/) with [MyAlgoConnect](https://connect.myalgo.com/) | |
| development environment | Truffle Suite, Hardhat | [AlgoKit](https://github.com/algorandfoundation/algokit-cli) |
| one-click private blockchain | Ganache | [sandbox](https://github.com/algorand/sandbox) | [AlgoKit](https://github.com/algorandfoundation/algokit-cli) uses sandbox and is recommended |
8 changes: 4 additions & 4 deletions docs/get-details/technical_faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ Instructions for [Sandbox](https://github.com/algorand/sandbox/README.md)

Which API should I use?

Any of these API providers can be used to query Algod or Indexer data.
Below is a list of API providers that can be used to query Algod or Indexer data.

- [AlgoNode](https://algonode.io/api/)
- [AlgoExplorer](https://algoexplorer.io/api-dev/v2)
- [PureStake](https://developer.purestake.io/)
- [AlgoNode](https://algonode.io/api/) (algod and indexer available, free tier available)
- [Blockdaemon](https://www.blockdaemon.com/protocols/algorand) (algod only)
- [GetBlock.io](https://getblock.io/nodes/algo/) (algod only, free tier available)

Or find others [here](https://developer.algorand.org/ecosystem-projects/?tags=api-services)

Expand Down
2 changes: 1 addition & 1 deletion docs/sdks/go/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,4 @@ fmt.Printf("Confirmed Transaction: %s in Round %d\n", pendingTxID, confirmedTxn.
# Viewing the Transaction
To view the transaction we submitted to the sandbox Algod, open [DappFlow](https://app.dappflow.org/explorer/home){target=_blank} and choose `Sandbox` configuration option, then search for the transaction ID.

To view a transaction submitted to public network like testnet, open the [Algorand Blockchain Explorer](https://testnet.algoexplorer.io/){:target="_blank"} or [Goal Seeker](https://goalseeker.purestake.io/algorand/testnet){:target="_blank"} and paste the transaction ID into the search bar or simply click on the funded transaction link on the dispenser page.
To view a transaction submitted to public network like testnet, open [Pera Explorer](https://testnet.explorer.perawallet.app/){:target="_blank"} or [Bitquery](https://explorer.bitquery.io/algorand_testnet){:target="_blank"} and paste the transaction ID into the search bar or simply click on the funded transaction link on the dispenser page.
2 changes: 1 addition & 1 deletion docs/sdks/java/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ System.out.printf("Transaction %s confirmed in round %d\n", txid, result.confirm

To view the transaction we submitted to the sandbox Algod, open [DappFlow](https://app.dappflow.org/explorer/home){target=_blank} and choose `Sandbox` configuration option, then search for the transaction ID.

To view a transaction submitted to public network like testnet, open the [Algorand Blockchain Explorer](https://testnet.algoexplorer.io/){:target="_blank"} or [Goal Seeker](https://goalseeker.purestake.io/algorand/testnet){:target="_blank"} and paste the transaction ID into the search bar or simply click on the funded transaction link on the dispenser page.
To view a transaction submitted to public network like testnet, open [Pera Explorer](https://testnet.explorer.perawallet.app/){:target="_blank"} or [Bitquery](https://explorer.bitquery.io/algorand_testnet){:target="_blank"} and paste the transaction ID into the search bar or simply click on the funded transaction link on the dispenser page.
2 changes: 1 addition & 1 deletion docs/sdks/javascript/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,4 @@ console.log(`Decoded Note: ${Buffer.from(result.txn.txn.note).toString()}`);

To view the transaction we submitted to the sandbox Algod, open [DappFlow](https://app.dappflow.org/explorer/home){target=_blank} and choose `Sandbox` configuration option, then search for the transaction ID.

To view a transaction submitted to public network like testnet, open the [Algorand Blockchain Explorer](https://testnet.algoexplorer.io/){:target="_blank"} or [Goal Seeker](https://goalseeker.purestake.io/algorand/testnet){:target="_blank"} and paste the transaction ID into the search bar or simply click on the funded transaction link on the dispenser page.
To view a transaction submitted to public network like testnet, open [Pera Explorer](https://testnet.explorer.perawallet.app/){:target="_blank"} or [Bitquery](https://explorer.bitquery.io/algorand_testnet){:target="_blank"} and paste the transaction ID into the search bar or simply click on the funded transaction link on the dispenser page.
2 changes: 1 addition & 1 deletion docs/sdks/python/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,4 @@ print(f"Decoded note: {b64decode(txn_result['txn']['txn']['note'])}")

To view the transaction we submitted to the sandbox Algod, open [DappFlow](https://app.dappflow.org/explorer/home){target=_blank} and choose `Sandbox` configuration option, then search for the transaction ID.

To view a transaction submitted to public network like testnet, open the [Algorand Blockchain Explorer](https://testnet.algoexplorer.io/){:target="_blank"} or [Goal Seeker](https://goalseeker.purestake.io/algorand/testnet){:target="_blank"} and paste the transaction ID into the search bar or simply click on the funded transaction link on the dispenser page.
To view a transaction submitted to public network like testnet, open [Pera Explorer](https://testnet.explorer.perawallet.app/){:target="_blank"} or [Bitquery](https://explorer.bitquery.io/algorand_testnet){:target="_blank"} and paste the transaction ID into the search bar or simply click on the funded transaction link on the dispenser page.

0 comments on commit fed93ae

Please sign in to comment.