-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathConfiguration.cs
95 lines (80 loc) · 3.03 KB
/
Configuration.cs
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
namespace Blockfrost {
[Serializable]
public class Server {
public string Network;
public string Url;
public string User;
public string FullUrl() {
return $"https://{Url}";
}
public string FullUrl(string projectId) {
return $"https://{User}:{projectId}@{Url}";
}
}
[CreateAssetMenu(menuName = "Blockfrost.io API/Configuration", fileName = "BlockfrostAPIConfiguration")]
public class Configuration : ScriptableObject {
[Tooltip("Authentication token (project_id)")]
[SerializeField]
public string ProjectId;
public const string CardanoApi = "Cardano";
public const string MilkomedaApi = "Milkomeda";
[Tooltip("Client request timeout (0 = no timeout)")]
[SerializeField]
public int RequestTimeout;
[Tooltip("Enable detailed debug logging")]
[SerializeField]
public bool DebugLogging;
[SerializeField]
[HideInInspector]
private string _currentApi = CardanoApi;
public string CurrentApi { get => _currentApi; protected set => _currentApi = value; }
private int _currentNetworkIndex;
public int CurrentNetworkIndex { get => _currentNetworkIndex; protected set => _currentNetworkIndex = value; }
public Server CurrentServer { get => servers[CurrentApi][CurrentNetworkIndex]; }
[SerializeField]
[HideInInspector]
public Dictionary<string, List<Server>> servers = new Dictionary<string, List<Server>> {{
CardanoApi, new List<Server>{
new Server{
Network = "Mainnet",
Url = "cardano-mainnet.blockfrost.io/api/v0",
},
new Server{
Network = "Preview",
Url = "cardano-preview.blockfrost.io/api/v0",
},
// new Server{
// Network = "Testnet",
// Url = "cardano-testnet.blockfrost.io/api/v0",
// },
}}, {
MilkomedaApi, new List<Server>{
new Server{
Network = "Mainnet",
Url = "milkomeda-mainnet.blockfrost.io/api/v0/",
User = "milkmainnet",
},
new Server{
Network = "Testnet",
Url = "milkomeda-testnet.blockfrost.io/api/v0/",
User = "milktestnet",
},
}},
};
public void ChangeApi(string api) {
if (!servers.ContainsKey(api)) throw new KeyNotFoundException($"invalid API {api}");
CurrentApi = api;
}
public void ChangeNetwork(int index) {
if (index >= servers.Count) {
Debug.LogError($"Invalid network index {index}");
return;
}
CurrentNetworkIndex = index;
}
}
}