-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathAlgoNode.php
More file actions
39 lines (32 loc) · 1.02 KB
/
Copy pathAlgoNode.php
File metadata and controls
39 lines (32 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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';
}