Add export, temporary eth plugin inline

This commit is contained in:
nolash
2021-10-09 21:04:11 +02:00
parent 546a4d912a
commit 388c676d11
10 changed files with 76 additions and 3 deletions

16
cic/ext/eth/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
# standard imports
import logging
logg = logging.getLogger(__name__)
class CICEth:
def __init__(self, reference, proofs):
self.reference = reference
self.proofs = proofs
logg.debug('eth strup with reference {} proofs {}'.format(reference, proofs))
def new(reference, proofs):
return CICEth(reference, proofs)