contants: add support for mutinynet signet
Adds the mutinynet signet (https://github.com/MutinyWallet/mutiny-net/) to the supported networks so it's possible to use it with Electrum. Mutinynet is similar to signet, except for a shorter block interval (30 sec), a nice faucet (faucet.mutinynet.com) and some extra features in its core fork. It also has some lightning network nodes, see the mempool instance on mutinynet.com.
This commit is contained in:
18
electrum/chains/mutinynet/fallback_lnnodes.json
Normal file
18
electrum/chains/mutinynet/fallback_lnnodes.json
Normal 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
|
||||
}
|
||||
}
|
||||
7
electrum/chains/mutinynet/servers.json
Normal file
7
electrum/chains/mutinynet/servers.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"5.9.83.108": {
|
||||
"pruning": "-",
|
||||
"s": "51234",
|
||||
"version": "1.4"
|
||||
}
|
||||
}
|
||||
@@ -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))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user