cic-cli/cic/ext/eth/__init__.py

19 lines
385 B
Python
Raw Normal View History

# standard imports
import logging
# external imports
from chainlib.eth.connection import RPCConnection
logg = logging.getLogger(__name__)
class CICEth:
def __init__(self, reference, proofs, signer_hint=None):
self.reference = reference
self.proofs = proofs
def new(reference, proofs, signer_hint=None):
return CICEth(reference, proofs, signer_hint=None)