20 lines
589 B
Python
20 lines
589 B
Python
# 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)
|
|
|
|
|
|
|