Merge branch 'master' into 0.0.10-dev
This commit is contained in:
4
chainlib/eth/cli/__init__.py
Normal file
4
chainlib/eth/cli/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from .arg import *
|
||||
from .config import Config
|
||||
from .rpc import Rpc
|
||||
from .wallet import Wallet
|
||||
9
chainlib/eth/cli/arg.py
Normal file
9
chainlib/eth/cli/arg.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# external imports
|
||||
from chainlib.cli import (
|
||||
ArgumentParser,
|
||||
argflag_std_read,
|
||||
argflag_std_write,
|
||||
argflag_std_base,
|
||||
reset as argflag_reset,
|
||||
Flag,
|
||||
)
|
||||
33
chainlib/eth/cli/config.py
Normal file
33
chainlib/eth/cli/config.py
Normal file
@@ -0,0 +1,33 @@
|
||||
# standard imports
|
||||
import os
|
||||
|
||||
# external imports
|
||||
from chainlib.cli import Config as BaseConfig
|
||||
|
||||
script_dir = os.path.dirname(os.path.realpath(__file__))
|
||||
data_dir = os.path.join(script_dir, '..')
|
||||
|
||||
|
||||
class Config(BaseConfig):
|
||||
"""Convenience constructor to set Ethereum defaults for the chainlib cli config object
|
||||
"""
|
||||
default_base_config_dir = os.path.join(data_dir, 'data', 'config')
|
||||
default_fee_limit = 21000
|
||||
|
||||
@classmethod
|
||||
def from_args(cls, args, arg_flags=0x0f, env=os.environ, extra_args={}, base_config_dir=None, default_config_dir=None, user_config_dir=None, default_fee_limit=None, logger=None, load_callback=None):
|
||||
super(Config, cls).override_defaults(base_dir=cls.default_base_config_dir)
|
||||
if default_fee_limit == None:
|
||||
default_fee_limit = cls.default_fee_limit
|
||||
config = BaseConfig.from_args(args, arg_flags=arg_flags, env=env, extra_args=extra_args, base_config_dir=base_config_dir, default_config_dir=default_config_dir, user_config_dir=user_config_dir, default_fee_limit=default_fee_limit, logger=logger, load_callback=load_callback)
|
||||
|
||||
if not config.get('RPC_DIALECT'):
|
||||
config.add('default', 'RPC_DIALECT', exists_ok=True)
|
||||
elif config.get('RPC_DIALECT') not in [
|
||||
'openethereum',
|
||||
'default',
|
||||
]:
|
||||
raise ValueError('unknown rpc dialect {}'.format(config.get('RPC_DIALECT')))
|
||||
|
||||
return config
|
||||
|
||||
89
chainlib/eth/cli/encode.py
Normal file
89
chainlib/eth/cli/encode.py
Normal file
@@ -0,0 +1,89 @@
|
||||
# standard imports
|
||||
import re
|
||||
import logging
|
||||
|
||||
# external imports
|
||||
from chainlib.eth.contract import (
|
||||
ABIContractType,
|
||||
ABIContractEncoder,
|
||||
)
|
||||
|
||||
logg = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class CLIEncoder(ABIContractEncoder):
|
||||
|
||||
__re_uint = r'^([uU])[int]*([0-9]+)?$'
|
||||
__re_bytes = r'^([bB])[ytes]*([0-9]+)?$'
|
||||
__re_string = r'^([sS])[tring]*$'
|
||||
__translations = [
|
||||
'to_uint',
|
||||
'to_bytes',
|
||||
'to_string',
|
||||
]
|
||||
|
||||
def __init__(self, signature=None):
|
||||
super(CLIEncoder, self).__init__()
|
||||
self.signature = signature
|
||||
if signature != None:
|
||||
self.method(signature)
|
||||
|
||||
def to_uint(self, typ):
|
||||
s = None
|
||||
a = None
|
||||
m = re.match(self.__re_uint, typ)
|
||||
if m == None:
|
||||
return None
|
||||
|
||||
n = m.group(2)
|
||||
if m.group(2) == None:
|
||||
n = 256
|
||||
s = 'UINT256'.format(m.group(2))
|
||||
a = getattr(ABIContractType, s)
|
||||
return (s, a)
|
||||
|
||||
|
||||
def to_bytes(self, typ):
|
||||
s = None
|
||||
a = None
|
||||
m = re.match(self.__re_bytes, typ)
|
||||
if m == None:
|
||||
return None
|
||||
|
||||
n = m.group(2)
|
||||
if n == None:
|
||||
n = 32
|
||||
s = 'BYTES{}'.format(n)
|
||||
a = getattr(ABIContractType, s)
|
||||
return (s, a)
|
||||
|
||||
|
||||
def to_string(self, typ):
|
||||
m = re.match(self.__re_string, typ)
|
||||
if m == None:
|
||||
return None
|
||||
s = 'STRING'
|
||||
a = getattr(ABIContractType, s)
|
||||
return (s, a)
|
||||
|
||||
|
||||
def translate_type(self, typ):
|
||||
r = None
|
||||
for tr in self.__translations:
|
||||
r = getattr(self, tr)(typ)
|
||||
if r != None:
|
||||
break
|
||||
if r == None:
|
||||
raise ValueError('no translation for type {}'.format(typ))
|
||||
logg.debug('type {} translated to {}'.format(typ, r[0]))
|
||||
return r[1]
|
||||
|
||||
|
||||
def add_from(self, arg):
|
||||
logg.debug('arg {}'.format(arg))
|
||||
(typ, val) = arg.split(':', maxsplit=1)
|
||||
real_typ = self.translate_type(typ)
|
||||
if self.signature != None:
|
||||
self.typ(real_typ)
|
||||
fn = getattr(self, real_typ.value)
|
||||
fn(val)
|
||||
71
chainlib/eth/cli/rpc.py
Normal file
71
chainlib/eth/cli/rpc.py
Normal file
@@ -0,0 +1,71 @@
|
||||
# external imports
|
||||
from chainlib.cli import Rpc as BaseRpc
|
||||
from chainlib.eth.connection import EthHTTPConnection
|
||||
|
||||
# local imports
|
||||
from chainlib.eth.gas import (
|
||||
OverrideGasOracle,
|
||||
RPCGasOracle,
|
||||
)
|
||||
from chainlib.eth.nonce import (
|
||||
OverrideNonceOracle,
|
||||
RPCNonceOracle,
|
||||
)
|
||||
|
||||
|
||||
# TODO: how is the keystore implemented in rpc here?
|
||||
class Rpc(BaseRpc):
|
||||
"""Convenience constructor to set Ethereum defaults for chainlib cli Rpc object
|
||||
|
||||
|
||||
"""
|
||||
def __init__(self, wallet=None):
|
||||
super(Rpc, self).__init__(EthHTTPConnection, wallet=wallet)
|
||||
|
||||
|
||||
def connect_by_config(self, config):
|
||||
"""
|
||||
|
||||
If the standard arguments for nonce and fee price/price have been defined (which generate the configuration keys "_NONCE", "_FEE_PRICE" and "_FEE_LIMIT" respectively) , the corresponding overrides for fee and nonce generators will be defined.
|
||||
|
||||
"""
|
||||
super(Rpc, self).connect_by_config(config)
|
||||
|
||||
if self.can_sign():
|
||||
nonce = None
|
||||
try:
|
||||
nonce = config.get('_NONCE')
|
||||
except KeyError:
|
||||
pass
|
||||
if nonce != None:
|
||||
self.nonce_oracle = OverrideNonceOracle(self.get_sender_address(), nonce, id_generator=self.id_generator)
|
||||
else:
|
||||
self.nonce_oracle = RPCNonceOracle(self.get_sender_address(), self.conn, id_generator=self.id_generator)
|
||||
|
||||
fee_price = None
|
||||
fee_limit = None
|
||||
try:
|
||||
fee_price = config.get('_FEE_PRICE')
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
try:
|
||||
fee_limit = config.get('_FEE_LIMIT')
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
if fee_price != None or fee_limit != None:
|
||||
self.fee_oracle = OverrideGasOracle(price=fee_price, limit=fee_limit, conn=self.conn, id_generator=self.id_generator)
|
||||
else:
|
||||
self.fee_oracle = RPCGasOracle(self.conn, id_generator=self.id_generator)
|
||||
|
||||
error_parser = None
|
||||
if config.get('RPC_DIALECT') == 'openethereum':
|
||||
from chainlib.eth.dialect.openethereum import DialectErrorParser
|
||||
self.error_parser = DialectErrorParser()
|
||||
|
||||
return self.conn
|
||||
|
||||
|
||||
def get_gas_oracle(self):
|
||||
return self.get_fee_oracle()
|
||||
19
chainlib/eth/cli/wallet.py
Normal file
19
chainlib/eth/cli/wallet.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# external imports
|
||||
from crypto_dev_signer.eth.signer import ReferenceSigner as EIP155Signer
|
||||
from chainlib.cli import Wallet as BaseWallet
|
||||
|
||||
# local imports
|
||||
from chainlib.eth.address import AddressChecksum
|
||||
|
||||
|
||||
class Wallet(BaseWallet):
|
||||
"""Convenience constructor to set Ethereum defaults for chainlib cli Wallet object
|
||||
|
||||
:param checksummer: Address checksummer object
|
||||
:type checksummer: Implementation of chainlib.eth.address.AddressChecksum
|
||||
"""
|
||||
def __init__(self, checksummer=AddressChecksum):
|
||||
super(Wallet, self).__init__(EIP155Signer, checksummer=checksummer)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user