2024-03-31 22:47:14 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2024-05-25 19:50:39 +00:00
|
|
|
from basicswap.chainparams import WOW_COIN, Coins
|
|
|
|
from .xmr import XMRInterface
|
2024-03-31 22:47:14 +00:00
|
|
|
|
|
|
|
|
2024-05-25 19:50:39 +00:00
|
|
|
class WOWInterface(XMRInterface):
|
2024-03-31 22:47:14 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def coin_type():
|
|
|
|
return Coins.WOW
|
|
|
|
|
2024-05-25 19:50:39 +00:00
|
|
|
@staticmethod
|
|
|
|
def ticker_str() -> int:
|
|
|
|
return Coins.WOW.name
|
|
|
|
|
2024-03-31 22:47:14 +00:00
|
|
|
@staticmethod
|
|
|
|
def COIN():
|
|
|
|
return WOW_COIN
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def exp() -> int:
|
|
|
|
return 11
|