Skip to content

Commit

Permalink
feat: bumping algokit utils, pyteal; removing algoexplorer as api pro…
Browse files Browse the repository at this point in the history
…vider
  • Loading branch information
aorumbayev authored and achidlow committed Oct 9, 2023
1 parent fb76617 commit c1295b4
Show file tree
Hide file tree
Showing 5 changed files with 1,133 additions and 1,007 deletions.
3 changes: 1 addition & 2 deletions beaker/client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from algokit_utils import LogicError

from .api_providers import AlgoExplorer, AlgoNode, Network, PureStake, Sandbox
from .api_providers import AlgoNode, Network, PureStake, Sandbox
from .application_client import ApplicationClient

LogicException = LogicError
__all__ = [
"AlgoExplorer",
"AlgoNode",
"ApplicationClient",
"LogicException",
Expand Down
14 changes: 0 additions & 14 deletions beaker/client/api_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,6 @@ class AlgoNode(APIProvider):
}


class AlgoExplorer(APIProvider):
algod_hosts = {
Network.MainNet: "https://node.algoexplorerapi.io",
Network.TestNet: "https://node.testnet.algoexplorerapi.io",
Network.BetaNet: "https://node.betanet.algoexplorerapi.io",
}

indexer_hosts = {
Network.MainNet: "https://algoindexer.algoexplorerapi.io",
Network.TestNet: "https://algoindexer.testnet.algoexplorerapi.io",
Network.BetaNet: "https://algoindexer.betanet.algoexplorerapi.io",
}


class PureStake(APIProvider):
algod_hosts = {
Network.MainNet: "https://mainnet-algorand.api.purestake.io/ps1",
Expand Down
Loading

0 comments on commit c1295b4

Please sign in to comment.