2020-11-07 11:08:07 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright (c) 2020 tecnovert
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
from .interface_btc import BTCInterface
|
2020-11-15 17:02:46 +00:00
|
|
|
from .chainparams import Coins
|
2020-11-07 11:08:07 +00:00
|
|
|
|
2020-11-30 14:29:40 +00:00
|
|
|
|
2020-11-07 11:08:07 +00:00
|
|
|
class NMCInterface(BTCInterface):
|
2020-11-15 17:02:46 +00:00
|
|
|
@staticmethod
|
|
|
|
def coin_type():
|
|
|
|
return Coins.NMC
|