Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions src/Clients/AlgoNode.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?php

namespace Rootsoft\Algorand\Clients;

/**
* AlgoNode REST client, see https://algonode.io/ for more details
*/
class AlgoNode
{
/**
* The Algod API url for AlgoExplorer's MainNet.
*/
public const MAINNET_ALGOD_API_URL = 'https://mainnet-api.algonode.cloud';

/**
* The Algod API url for AlgoExplorer's TestNet.
*/
public const TESTNET_ALGOD_API_URL = 'https://testnet-api.algonode.cloud';

/**
* The Algod API url for AlgoExplorer's BetaNet.
*/
public const BETANET_ALGOD_API_URL = 'https://betanet-api.algonode.cloud';

/**
* The Indexer API url for AlgoExplorer's MainNet.
*/
public const MAINNET_INDEXER_API_URL = 'https://mainnet-idx.algonode.cloud';

/**
* The Indexer API url for AlgoExplorer's TestNet.
*/
public const TESTNET_INDEXER_API_URL = 'https://testnet-idx.algonode.cloud';

/**
* The Indexer API url for AlgoExplorer's BetaNet.
*/
public const BETANET_INDEXER_API_URL = 'https://betanet-idx.algonode.cloud';
}