funga/crypto_dev_signer/keystore/__init__.py

9 lines
204 B
Python
Raw Normal View History

2020-09-21 19:10:20 +02:00
# third-party imports
from eth_keys import KeyAPI
from eth_keys.backends import NativeECCBackend
keyapi = KeyAPI(NativeECCBackend)
2020-08-08 11:33:15 +02:00
from .postgres import ReferenceKeystore
from .dict import DictKeystore