- 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>
12 lines
No EOL
396 B
C#
12 lines
No EOL
396 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Lethean.RPC.Models
|
|
{
|
|
public class OpenWalletResponse
|
|
{
|
|
[JsonProperty("id")] public string Id { get; set; }
|
|
[JsonProperty("jsonrpc")] public string Jsonrpc { get; set; }
|
|
[JsonProperty("result")] public object Result { get; set; }
|
|
[JsonProperty("error")] public ErrorResponse Error { get; set; }
|
|
}
|
|
} |