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:
@@ -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