- Coin: Zano → Lethean, ticker: ZAN/ZANO → LTHN - Ports: 11211 → 36941 (mainnet RPC), 46941 (testnet RPC) - Wallet: 11212 → 36944/46944 - Address prefix: iTHN - URLs: zano.org → lethean.io - Explorer links: explorer.lthn.io Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
686 B
C#
18 lines
686 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Lethean.RPC.Models
|
|
{
|
|
public class GetInfoResponse
|
|
{
|
|
[JsonProperty("height")] public long Height { get; set; }
|
|
[JsonProperty("daemon_network_state")] public int DaemonNetworkState { get; set; }
|
|
[JsonProperty("synchronization_start_height")] public long SynchronizationStartHeight { get; set; }
|
|
[JsonProperty("max_net_seen_height")] public long MaxNetSeenHeight { get; set; }
|
|
[JsonProperty("status")] public string Status { get; set; }
|
|
}
|
|
|
|
public class GetInfoRequest
|
|
{
|
|
[JsonProperty("flags")] public int Flags { get; set; } = 0x1 | 0x2 | 0x4 | 0x10 | 0x40;
|
|
}
|
|
}
|