base_proto.bitcoin -> proto.btc, ... [docstrings]

This commit is contained in:
The MMGen Project 2022-10-03 10:00:00 +00:00
commit 7a3ea17cc4
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
45 changed files with 45 additions and 45 deletions

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # 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 from ...addrdata import TwAddrData

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.daemon: Bitcoin base protocol daemon classes proto.btc.daemon: Bitcoin base protocol daemon classes
""" """
import os import os

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.misc: miscellaneous functions for Bitcoin base protocol proto.btc.misc: miscellaneous functions for Bitcoin base protocol
""" """
from ...globalvars import g from ...globalvars import g

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.msg: Bitcoin base protocol message signing classes proto.btc.msg: Bitcoin base protocol message signing classes
""" """
from ...msg import coin_msg from ...msg import coin_msg

View file

@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # 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 import os,time,shutil,json,re

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.rpc: Bitcoin base protocol RPC client class proto.btc.rpc: Bitcoin base protocol RPC client class
""" """
import os import os

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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 from ....util import msg,die

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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 from ....tw.bal import TwGetBalance

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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 from ....addr import CoinAddr

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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 from ....globalvars import g

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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 from collections import namedtuple

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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
""" """
from collections import namedtuple from collections import namedtuple

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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 from ....tw.unspent import TwUnspentOutputs

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.tx.base: Bitcoin base transaction class proto.btc.tx.base: Bitcoin base transaction class
""" """
from collections import namedtuple from collections import namedtuple

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.tx.bump: Bitcoin transaction bump class proto.btc.tx.bump: Bitcoin transaction bump class
""" """
import mmgen.tx.bump as TxBase import mmgen.tx.bump as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.tx.completed: Bitcoin completed transaction class proto.btc.tx.completed: Bitcoin completed transaction class
""" """
import mmgen.tx.completed as TxBase import mmgen.tx.completed as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.tx.info: Bitcoin transaction info class proto.btc.tx.info: Bitcoin transaction info class
""" """
from ....tx.info import TxInfo from ....tx.info import TxInfo

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.tx.new: Bitcoin new transaction class proto.btc.tx.new: Bitcoin new transaction class
""" """
import mmgen.tx.new as TxBase import mmgen.tx.new as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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 import mmgen.tx.online as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.tx.signed: Bitcoin signed transaction class proto.btc.tx.signed: Bitcoin signed transaction class
""" """
import mmgen.tx.signed as TxBase import mmgen.tx.signed as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.tx.status: Bitcoin transaction status class proto.btc.tx.status: Bitcoin transaction status class
""" """
import time import time

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.bitcoin.tx.unsigned: Bitcoin unsigned transaction class proto.btc.tx.unsigned: Bitcoin unsigned transaction class
""" """
import mmgen.tx.unsigned as TxBase import mmgen.tx.unsigned as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
Functions and constants used by multiple protocols proto.common: Functions and constants used by multiple protocols
""" """
import hashlib import hashlib

View file

@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
""" """
base_proto.ethereum.addrdata: Ethereum TwAddrData classes proto.eth.addrdata: Ethereum TwAddrData classes
""" """
from ...addrdata import TwAddrData from ...addrdata import TwAddrData

View file

@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
""" """
altcoins.base_proto.ethereum.contract: Ethereum ERC20 token classes proto.eth.contract: Ethereum ERC20 token classes
""" """
from decimal import Decimal from decimal import Decimal

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.daemon: Ethereum base protocol daemon classes proto.eth.daemon: Ethereum base protocol daemon classes
""" """
import os import os

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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 from ...util import die,get_keccak

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.msg: Ethereum base protocol message signing classes proto.eth.msg: Ethereum base protocol message signing classes
""" """
from ...msg import coin_msg from ...msg import coin_msg

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.rpc: Ethereum base protocol RPC client class proto.eth.rpc: Ethereum base protocol RPC client class
""" """
import re import re

View file

@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
""" """
base_proto.ethereum.twaddrs: Ethereum tracking wallet address list class proto.eth.twaddrs: Ethereum tracking wallet address list class
""" """
from ....tw.addrs import TwAddrList from ....tw.addrs import TwAddrList

View file

@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
""" """
base_proto.ethereum.twbal: Ethereum tracking wallet getbalance class proto.eth.twbal: Ethereum tracking wallet getbalance class
""" """
from ....tw.ctl import TrackingWallet from ....tw.ctl import TrackingWallet

View file

@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
""" """
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 from ....util import msg,ymsg,write_mode,die

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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
""" """
from collections import namedtuple from collections import namedtuple

View file

@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
""" """
base_proto.ethereum.twuo: Ethereum tracking wallet unspent outputs class proto.eth.twuo: Ethereum tracking wallet unspent outputs class
""" """
from ....tw.common import TwLabel from ....tw.common import TwLabel

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.tx.base: Ethereum base transaction class proto.eth.tx.base: Ethereum base transaction class
""" """
from collections import namedtuple from collections import namedtuple

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.tx.bump: Ethereum transaction bump class proto.eth.tx.bump: Ethereum transaction bump class
""" """
import mmgen.tx.bump as TxBase import mmgen.tx.bump as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.tx.completed: Ethereum completed transaction class proto.eth.tx.completed: Ethereum completed transaction class
""" """
import mmgen.tx.completed as TxBase import mmgen.tx.completed as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.tx.info: Ethereum transaction info class proto.eth.tx.info: Ethereum transaction info class
""" """
from ....tx.info import TxInfo from ....tx.info import TxInfo

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.tx.new: Ethereum new transaction class proto.eth.tx.new: Ethereum new transaction class
""" """
import json import json

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.tx.online: Ethereum online signed transaction class proto.eth.tx.online: Ethereum online signed transaction class
""" """
from ....globalvars import * from ....globalvars import *

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.tx.signed: Ethereum signed transaction class proto.eth.tx.signed: Ethereum signed transaction class
""" """
import mmgen.tx.signed as TxBase import mmgen.tx.signed as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.tx.status: Ethereum transaction status class proto.eth.tx.status: Ethereum transaction status class
""" """
import mmgen.tx.status as TxBase import mmgen.tx.status as TxBase

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.ethereum.tx.unsigned: Ethereum unsigned transaction class proto.eth.tx.unsigned: Ethereum unsigned transaction class
""" """
import json import json

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
base_proto.monero.daemon: Monero base protocol daemon classes proto.xmr.daemon: Monero base protocol daemon classes
""" """
import os import os

View file

@ -9,7 +9,7 @@
# https://gitlab.com/mmgen/mmgen # https://gitlab.com/mmgen/mmgen
""" """
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 from ...rpc import RPCClient,IPPort,auth_data