From 5341a63737a5c9d5bafeceaa2c6b2b961fc126e8 Mon Sep 17 00:00:00 2001 From: nullun Date: Fri, 5 Jan 2024 13:55:59 +0000 Subject: [PATCH 1/2] Replace outdated explorer info --- docs/get-details/algokit/utils/ts/code/modules/index.md | 4 ++-- docs/get-details/ethereum_to_algorand.md | 2 +- docs/get-details/technical_faq.md | 8 ++++---- docs/sdks/go/index.md | 2 +- docs/sdks/java/index.md | 2 +- docs/sdks/javascript/index.md | 2 +- docs/sdks/python/index.md | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/get-details/algokit/utils/ts/code/modules/index.md b/docs/get-details/algokit/utils/ts/code/modules/index.md index aada8dab2..756cdf27a 100644 --- a/docs/get-details/algokit/utils/ts/code/modules/index.md +++ b/docs/get-details/algokit/utils/ts/code/modules/index.md @@ -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() ``` @@ -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() ``` diff --git a/docs/get-details/ethereum_to_algorand.md b/docs/get-details/ethereum_to_algorand.md index 860d63651..3d19b8b08 100644 --- a/docs/get-details/ethereum_to_algorand.md +++ b/docs/get-details/ethereum_to_algorand.md @@ -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 | diff --git a/docs/get-details/technical_faq.md b/docs/get-details/technical_faq.md index eefa4fcf1..ce5a6a444 100644 --- a/docs/get-details/technical_faq.md +++ b/docs/get-details/technical_faq.md @@ -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) diff --git a/docs/sdks/go/index.md b/docs/sdks/go/index.md index dd81c2dc2..78bcd4804 100644 --- a/docs/sdks/go/index.md +++ b/docs/sdks/go/index.md @@ -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. \ No newline at end of file +To view a transaction submitted to public network like testnet, open the [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. diff --git a/docs/sdks/java/index.md b/docs/sdks/java/index.md index 3f26fa652..619e1efa2 100644 --- a/docs/sdks/java/index.md +++ b/docs/sdks/java/index.md @@ -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. \ No newline at end of file +To view a transaction submitted to public network like testnet, open the [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. diff --git a/docs/sdks/javascript/index.md b/docs/sdks/javascript/index.md index 4bfeb6366..17f59fab5 100644 --- a/docs/sdks/javascript/index.md +++ b/docs/sdks/javascript/index.md @@ -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. \ No newline at end of file +To view a transaction submitted to public network like testnet, open the [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. diff --git a/docs/sdks/python/index.md b/docs/sdks/python/index.md index bf960c82c..e913fdf36 100644 --- a/docs/sdks/python/index.md +++ b/docs/sdks/python/index.md @@ -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. \ No newline at end of file +To view a transaction submitted to public network like testnet, open the [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. From b05c3074215e28c0f6a5b9af2e54c1833b21ec76 Mon Sep 17 00:00:00 2001 From: nullun Date: Fri, 5 Jan 2024 16:32:57 +0000 Subject: [PATCH 2/2] Include Pera Explorer testnet links --- docs/sdks/go/index.md | 2 +- docs/sdks/java/index.md | 2 +- docs/sdks/javascript/index.md | 2 +- docs/sdks/python/index.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sdks/go/index.md b/docs/sdks/go/index.md index 78bcd4804..822652fa9 100644 --- a/docs/sdks/go/index.md +++ b/docs/sdks/go/index.md @@ -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 [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. +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. diff --git a/docs/sdks/java/index.md b/docs/sdks/java/index.md index 619e1efa2..be213957f 100644 --- a/docs/sdks/java/index.md +++ b/docs/sdks/java/index.md @@ -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 [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. +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. diff --git a/docs/sdks/javascript/index.md b/docs/sdks/javascript/index.md index 17f59fab5..c5befca8d 100644 --- a/docs/sdks/javascript/index.md +++ b/docs/sdks/javascript/index.md @@ -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 [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. +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. diff --git a/docs/sdks/python/index.md b/docs/sdks/python/index.md index e913fdf36..13983fa88 100644 --- a/docs/sdks/python/index.md +++ b/docs/sdks/python/index.md @@ -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 [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. +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.