2023-07-05 13:50:11 +00:00
|
|
|
# nimbus-eth1
|
|
|
|
# Copyright (c) 2021 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
|
|
|
## Aristo DB -- Standard interface
|
|
|
|
## ===============================
|
|
|
|
##
|
|
|
|
{.push raises: [].}
|
|
|
|
|
2023-08-07 17:45:23 +00:00
|
|
|
import aristo/[
|
2023-08-11 17:23:57 +00:00
|
|
|
aristo_constants, aristo_delete, aristo_fetch, aristo_init,
|
2023-08-07 17:45:23 +00:00
|
|
|
aristo_merge, aristo_nearby, aristo_tx, aristo_utils]
|
|
|
|
export
|
2023-08-11 17:23:57 +00:00
|
|
|
aristo_constants, aristo_delete, aristo_fetch, aristo_init,
|
2023-08-07 17:45:23 +00:00
|
|
|
aristo_merge, aristo_nearby, aristo_tx, aristo_utils
|
|
|
|
|
|
|
|
import
|
|
|
|
aristo/aristo_transcode
|
|
|
|
export
|
|
|
|
append, read
|
|
|
|
|
2023-08-10 20:01:28 +00:00
|
|
|
import aristo/aristo_desc/[
|
|
|
|
aristo_types_identifiers, aristo_types_structural]
|
2023-08-07 17:45:23 +00:00
|
|
|
export
|
2023-08-10 20:01:28 +00:00
|
|
|
AristoAccount,
|
|
|
|
PayloadRef,
|
|
|
|
PayloadType,
|
|
|
|
`==`
|
2023-07-05 13:50:11 +00:00
|
|
|
|
2023-08-07 17:45:23 +00:00
|
|
|
import
|
|
|
|
aristo/aristo_desc
|
2023-07-05 13:50:11 +00:00
|
|
|
export
|
|
|
|
AristoDbRef,
|
|
|
|
AristoError,
|
2023-08-07 17:45:23 +00:00
|
|
|
isValid
|
2023-07-05 13:50:11 +00:00
|
|
|
|
|
|
|
# End
|