Skip to content

Commit

Permalink
BitAcross direct calls (#2474)
Browse files Browse the repository at this point in the history
* signing direct calls

* handling signing requests

* revert account changes

* break cyclic dep

* direct call result aes encryption

* import cleanup

* uncomment precomit check

* one more cleanup

* review suggestions
  • Loading branch information
kziemianek committed Feb 10, 2024
1 parent 5b9b21e commit 67799c7
Show file tree
Hide file tree
Showing 24 changed files with 743 additions and 99 deletions.
90 changes: 54 additions & 36 deletions bitacross-worker/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions bitacross-worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ members = [
"sidechain/state",
"sidechain/validateer-fetch",
"litentry/primitives",
"litentry/core/direct-call",
"bitacross/core/bc-task-receiver",
"bitacross/core/bc-task-sender",
]
Expand Down
7 changes: 7 additions & 0 deletions bitacross-worker/bitacross/core/bc-task-receiver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ itp-types = { path = "../../../core-primitives/types", default-features = false
itp-utils = { path = "../../../core-primitives/utils", default-features = false }

# litentry primities
lc-direct-call = { path = "../../../litentry/core/direct-call", default-features = false }
litentry-macros = { path = "../../../../primitives/core/macros", default-features = false }
litentry-primitives = { path = "../../../litentry/primitives", default-features = false }

bc-task-sender = { path = "../bc-task-sender", default-features = false }
Expand All @@ -54,6 +56,7 @@ sgx = [
"hex-sgx",
"sgx_tstd",
"bc-task-sender/sgx",
"lc-direct-call/sgx",
"litentry-primitives/sgx",
"ita-stf/sgx",
"itp-enclave-metrics/sgx",
Expand All @@ -72,6 +75,7 @@ std = [
"threadpool",
"log/std",
"bc-task-sender/std",
"lc-direct-call/std",
"litentry-primitives/std",
"ita-sgx-runtime/std",
"ita-stf/std",
Expand All @@ -90,3 +94,6 @@ std = [
"futures",
"thiserror",
]
production = [
"litentry-macros/production",
]

0 comments on commit 67799c7

Please sign in to comment.