Merge pull request #10134 from f321x/mutinynet

contants: add support for mutinynet signet
This commit is contained in:
ghost43
2025-08-14 15:13:57 +00:00
committed by GitHub
3 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
"02465ed5be53d04fde66c9418ff14a5f2267723810176c9212b722e542dc1afb1b": {
"host": "45.79.52.207",
"port": 9735
},
"032ae843e4d7d177f151d021ac8044b0636ec72b1ce3ffcde5c04748db2517ab03": {
"host": "45.79.201.241",
"port": 9735
},
"0220566172d9e324b41ec6f74ca44d377d3faf72ddb310fd263e6d5bcde4882492": {
"host": "185.90.61.24",
"port": 9735
},
"035a4e767bb1be29ed20219b40f07d9be03656a5f83485821878963c05290a877c": {
"host": "54.158.203.78",
"port": 9746
}
}

View File

@@ -0,0 +1,7 @@
{
"5.9.83.108": {
"pruning": "-",
"s": "51234",
"version": "1.4"
}
}

View File

@@ -250,6 +250,14 @@ class BitcoinSignet(BitcoinTestnet):
LN_DNS_SEEDS = []
class BitcoinMutinynet(BitcoinTestnet):
NET_NAME = "mutinynet"
BOLT11_HRP = "tbs"
GENESIS = "00000008819873e925422c1ff0f99f7cc9bbb232af63a077a480a3633bee1ef6"
LN_DNS_SEEDS = []
NETS_LIST = tuple(all_subclasses(AbstractNet)) # type: Sequence[Type[AbstractNet]]
NETS_LIST = tuple(sorted(NETS_LIST, key=lambda x: x.NET_NAME))