Skip to content

Commit

Permalink
Feat: Aptos Settelement Layer (#7)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Steve Nguyen <[email protected]>

feat: pull request template

Bump ionia from `3a15977` to `fe4cd5a` (#10)

Bumps [ionia](https://github.com/sota-zk-labs/ionia) from `3a15977` to `fe4cd5a`.
- [Commits](sota-zk-labs/ionia@3a15977...fe4cd5a)

---
updated-dependencies:
- dependency-name: ionia
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
Tranduy1dol and dependabot[bot] committed Oct 23, 2024
1 parent c001ae8 commit 3a6fefc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 13 deletions.
3 changes: 1 addition & 2 deletions crates/orchestrator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ aws-sdk-sqs = { workspace = true }
axum = { workspace = true, features = ["macros"] }
axum-macros = { workspace = true }
bincode = { workspace = true }
bytes.workspace = true
bytes = { workspace = true }
c-kzg = { workspace = true }
cairo-vm = { workspace = true }
chrono = { workspace = true }
Expand Down Expand Up @@ -101,4 +101,3 @@ assert_matches = "1.5.0"
httpmock = { workspace = true, features = ["remote"] }
hyper = { version = "0.14", features = ["full"] }
rstest = { workspace = true }
httpmock = { workspace = true, features = ["remote"] }
5 changes: 5 additions & 0 deletions crates/orchestrator/src/workers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ use thiserror::Error;
use crate::config::Config;
use crate::jobs::types::JobStatus;

use async_trait::async_trait;

use crate::config::config;
use crate::jobs::types::JobStatus;

pub mod data_submission_worker;
pub mod proof_registration;
pub mod proving;
Expand Down
2 changes: 0 additions & 2 deletions crates/settlement-clients/aptos/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,6 @@ mod test {
use crate::helper::build_transaction;
use crate::{AptosSettlementClient, STARKNET_VALIDITY};

use super::*;

const REGISTER_FACT: &str = "register_fact";
const FACT_REGISTRY: &str = "fact_registry";
const INIT_CONTRACT_STATE: &str = "initialize_contract_state";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@ use alloy::transports::{RpcError, TransportErrorKind};
use alloy_primitives::Bytes;
use async_trait::async_trait;

use alloy::{
network::Ethereum,
primitives::{I256, U256},
providers::Provider,
rpc::types::eth::TransactionReceipt,
sol,
transports::{http::Http, RpcError, TransportErrorKind},
};

use crate::types::LocalWalletSignerMiddleware;

// TODO: should be moved to Zaun:
Expand Down

0 comments on commit 3a6fefc

Please sign in to comment.