@@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen
"""
-base_proto.bitcoin.addrdata: Bitcoin base protocol addrdata classes
+proto.btc.addrdata: Bitcoin base protocol addrdata classes
from ...addrdata import TwAddrData
-base_proto.bitcoin.daemon: Bitcoin base protocol daemon classes
+proto.btc.daemon: Bitcoin base protocol daemon classes
import os
-base_proto.bitcoin.misc: miscellaneous functions for Bitcoin base protocol
+proto.btc.misc: miscellaneous functions for Bitcoin base protocol
from ...globalvars import g
-base_proto.bitcoin.msg: Bitcoin base protocol message signing classes
+proto.btc.msg: Bitcoin base protocol message signing classes
from ...msg import coin_msg
@@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-base_proto.bitcoin.regtest: Coin daemon regression test mode setup and operations
+proto.btc.regtest: Coin daemon regression test mode setup and operations
import os,time,shutil,json,re
-base_proto.bitcoin.rpc: Bitcoin base protocol RPC client class
+proto.btc.rpc: Bitcoin base protocol RPC client class
-base_proto.bitcoin.twaddrs: Bitcoin base protocol tracking wallet address list class
+proto.btc.twaddrs: Bitcoin base protocol tracking wallet address list class
from ....util import msg,die
-base_proto.bitcoin.twbal: Bitcoin base protocol tracking wallet balance class
+proto.btc.twbal: Bitcoin base protocol tracking wallet balance class
from ....tw.bal import TwGetBalance
-base_proto.bitcoin.tw: Bitcoin base protocol tracking wallet dependency classes
+proto.btc.tw: Bitcoin base protocol tracking wallet dependency classes
from ....addr import CoinAddr
-base_proto.bitcoin.twctl: Bitcoin base protocol tracking wallet control class
+proto.btc.twctl: Bitcoin base protocol tracking wallet control class
from ....globalvars import g
-base_proto.bitcoin.tw.json: export and import tracking wallet to JSON format
+proto.btc.tw.json: export and import tracking wallet to JSON format
from collections import namedtuple
-base_proto.bitcoin.tw.txhistory: Bitcoin base protocol tracking wallet transaction history class
+proto.btc.tw.txhistory: Bitcoin base protocol tracking wallet transaction history class
-base_proto.bitcoin.twuo: Bitcoin base protocol tracking wallet unspent outputs class
+proto.btc.twuo: Bitcoin base protocol tracking wallet unspent outputs class
from ....tw.unspent import TwUnspentOutputs
-base_proto.bitcoin.tx.base: Bitcoin base transaction class
+proto.btc.tx.base: Bitcoin base transaction class
-base_proto.bitcoin.tx.bump: Bitcoin transaction bump class
+proto.btc.tx.bump: Bitcoin transaction bump class
import mmgen.tx.bump as TxBase
-base_proto.bitcoin.tx.completed: Bitcoin completed transaction class
+proto.btc.tx.completed: Bitcoin completed transaction class
import mmgen.tx.completed as TxBase
-base_proto.bitcoin.tx.info: Bitcoin transaction info class
+proto.btc.tx.info: Bitcoin transaction info class
from ....tx.info import TxInfo
-base_proto.bitcoin.tx.new: Bitcoin new transaction class
+proto.btc.tx.new: Bitcoin new transaction class
import mmgen.tx.new as TxBase
-base_proto.bitcoin.tx.online: Bitcoin online signed transaction class
+proto.btc.tx.online: Bitcoin online signed transaction class
import mmgen.tx.online as TxBase
-base_proto.bitcoin.tx.signed: Bitcoin signed transaction class
+proto.btc.tx.signed: Bitcoin signed transaction class
import mmgen.tx.signed as TxBase
-base_proto.bitcoin.tx.status: Bitcoin transaction status class
+proto.btc.tx.status: Bitcoin transaction status class
import time
-base_proto.bitcoin.tx.unsigned: Bitcoin unsigned transaction class
+proto.btc.tx.unsigned: Bitcoin unsigned transaction class
import mmgen.tx.unsigned as TxBase
-Functions and constants used by multiple protocols
+proto.common: Functions and constants used by multiple protocols
import hashlib
-base_proto.ethereum.addrdata: Ethereum TwAddrData classes
+proto.eth.addrdata: Ethereum TwAddrData classes
-altcoins.base_proto.ethereum.contract: Ethereum ERC20 token classes
+proto.eth.contract: Ethereum ERC20 token classes
from decimal import Decimal
-base_proto.ethereum.daemon: Ethereum base protocol daemon classes
+proto.eth.daemon: Ethereum base protocol daemon classes
-base_proto.ethereum.misc: miscellaneous utilities for Ethereum base protocol
+proto.eth.misc: miscellaneous utilities for Ethereum base protocol
from ...util import die,get_keccak
-base_proto.ethereum.msg: Ethereum base protocol message signing classes
+proto.eth.msg: Ethereum base protocol message signing classes
-base_proto.ethereum.rpc: Ethereum base protocol RPC client class
+proto.eth.rpc: Ethereum base protocol RPC client class
import re
-base_proto.ethereum.twaddrs: Ethereum tracking wallet address list class
+proto.eth.twaddrs: Ethereum tracking wallet address list class
from ....tw.addrs import TwAddrList
-base_proto.ethereum.twbal: Ethereum tracking wallet getbalance class
+proto.eth.twbal: Ethereum tracking wallet getbalance class
from ....tw.ctl import TrackingWallet
-base_proto.ethereum.twctl: Ethereum tracking wallet control class
+proto.eth.twctl: Ethereum tracking wallet control class
from ....util import msg,ymsg,write_mode,die
-base_proto.ethereum.tw.json: export and import tracking wallet to JSON format
+proto.eth.tw.json: export and import tracking wallet to JSON format
-base_proto.ethereum.twuo: Ethereum tracking wallet unspent outputs class
+proto.eth.twuo: Ethereum tracking wallet unspent outputs class
from ....tw.common import TwLabel
-base_proto.ethereum.tx.base: Ethereum base transaction class
+proto.eth.tx.base: Ethereum base transaction class
-base_proto.ethereum.tx.bump: Ethereum transaction bump class
+proto.eth.tx.bump: Ethereum transaction bump class
-base_proto.ethereum.tx.completed: Ethereum completed transaction class
+proto.eth.tx.completed: Ethereum completed transaction class
-base_proto.ethereum.tx.info: Ethereum transaction info class
+proto.eth.tx.info: Ethereum transaction info class
-base_proto.ethereum.tx.new: Ethereum new transaction class
+proto.eth.tx.new: Ethereum new transaction class
import json
-base_proto.ethereum.tx.online: Ethereum online signed transaction class
+proto.eth.tx.online: Ethereum online signed transaction class
from ....globalvars import *
-base_proto.ethereum.tx.signed: Ethereum signed transaction class
+proto.eth.tx.signed: Ethereum signed transaction class
-base_proto.ethereum.tx.status: Ethereum transaction status class
+proto.eth.tx.status: Ethereum transaction status class
import mmgen.tx.status as TxBase
-base_proto.ethereum.tx.unsigned: Ethereum unsigned transaction class
+proto.eth.tx.unsigned: Ethereum unsigned transaction class
-base_proto.monero.daemon: Monero base protocol daemon classes
+proto.xmr.daemon: Monero base protocol daemon classes
-base_proto.monero.rpc: Monero base protocol RPC client class
+proto.xmr.rpc: Monero base protocol RPC client class
from ...rpc import RPCClient,IPPort,auth_data