8 lines
173 B
Python
8 lines
173 B
Python
# third-party imports
|
|
from eth_keys import KeyAPI
|
|
from eth_keys.backends import NativeECCBackend
|
|
|
|
keyapi = KeyAPI(NativeECCBackend)
|
|
|
|
from .postgres import ReferenceKeystore
|