From e873b39e6200537c0714ac58c7e11d1f4042bbed Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 01:55:15 +0000 Subject: [PATCH 01/18] update: CLI --- Cargo.lock | 4 + .../src/bin/e2e/ggp_gas_fee.rs | 2 +- .../movement/movement-full-node/Cargo.toml | 8 +- .../movement-full-node/src/admin/ops/burn.rs | 142 +++++++++++++++++ .../movement-full-node/src/admin/ops/mint.rs | 147 ++++++++++++++++++ .../src/admin/ops/mint_lock.rs | 15 -- .../movement-full-node/src/admin/ops/mod.rs | 9 +- .../move-modules/scripts/burn_from.move | 9 ++ .../bridge/move-modules/scripts/mint_to.move | 9 ++ .../settlement/mcr/contracts/lib/v2-periphery | 1 + 10 files changed, 325 insertions(+), 21 deletions(-) create mode 100644 networks/movement/movement-full-node/src/admin/ops/burn.rs create mode 100644 networks/movement/movement-full-node/src/admin/ops/mint.rs delete mode 100644 networks/movement/movement-full-node/src/admin/ops/mint_lock.rs create mode 100644 protocol-units/bridge/move-modules/scripts/burn_from.move create mode 100644 protocol-units/bridge/move-modules/scripts/mint_to.move create mode 160000 protocol-units/settlement/mcr/contracts/lib/v2-periphery diff --git a/Cargo.lock b/Cargo.lock index 6ea564d26..5180730b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12026,6 +12026,8 @@ version = "0.0.2" dependencies = [ "anyhow", "aptos-framework-elsa-to-biarritz-rc1-migration", + "aptos-sdk", + "aptos-types", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "clap 4.5.21", "console-subscriber", @@ -12045,6 +12047,7 @@ dependencies = [ "movement-rest", "movement-tracing", "movement-types", + "once_cell", "prost 0.13.3", "rocksdb", "serde_json", @@ -12054,6 +12057,7 @@ dependencies = [ "tonic 0.12.3", "tracing", "tracing-subscriber 0.3.18", + "url", "zstd 0.13.2", ] diff --git a/networks/movement/movement-client/src/bin/e2e/ggp_gas_fee.rs b/networks/movement/movement-client/src/bin/e2e/ggp_gas_fee.rs index d722d620e..1f690a878 100644 --- a/networks/movement/movement-client/src/bin/e2e/ggp_gas_fee.rs +++ b/networks/movement/movement-client/src/bin/e2e/ggp_gas_fee.rs @@ -152,7 +152,7 @@ async fn main() -> Result<(), anyhow::Error> { // Wait to verify no additional deposits tokio::time::sleep(tokio::time::Duration::from_secs(5)).await; - + // // Check final balance let final_framework_balance = coin_client .get_account_balance(&ggp_account_address) diff --git a/networks/movement/movement-full-node/Cargo.toml b/networks/movement/movement-full-node/Cargo.toml index be0155e9a..786402d8a 100644 --- a/networks/movement/movement-full-node/Cargo.toml +++ b/networks/movement/movement-full-node/Cargo.toml @@ -12,6 +12,8 @@ rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +aptos-types = { workspace = true } +aptos-sdk = { workspace = true } maptos-dof-execution = { workspace = true } prost = { workspace = true } movement-da-light-node-proto = { workspace = true, features = ["client"] } @@ -40,9 +42,11 @@ zstd = { workspace = true } hyper = { workspace = true } hex = { workspace = true } mcr-settlement-config = { workspace = true } -clap = { workspace = true } -movement-da-light-node-client = { workspace = true} +clap = { workspace = true } +movement-da-light-node-client = { workspace = true } aptos-framework-elsa-to-biarritz-rc1-migration = { workspace = true } +once_cell = { workspace = true } +url = { workspace = true } [features] default = [] diff --git a/networks/movement/movement-full-node/src/admin/ops/burn.rs b/networks/movement/movement-full-node/src/admin/ops/burn.rs new file mode 100644 index 000000000..0e7924d75 --- /dev/null +++ b/networks/movement/movement-full-node/src/admin/ops/burn.rs @@ -0,0 +1,142 @@ +#[allow(unused_imports)] +use crate::common_args::MovementArgs; +use anyhow::Context; +use aptos_sdk::{ + move_types::language_storage::StructTag, + move_types::identifier::Identifier, + rest_client::{Client}, + transaction_builder::TransactionBuilder, + types::{ + chain_id::ChainId, + transaction::{ Script, TransactionArgument}, + LocalAccount, + }, +}; +use aptos_sdk::{ + types::{account_address::AccountAddress, transaction::TransactionPayload}, +}; +use clap::Parser; +use once_cell::sync::Lazy; +use std::{ + fs, + str::FromStr, + time::{SystemTime, UNIX_EPOCH}, +}; +use tokio::process::Command; +use url::Url; + +static SUZUKA_CONFIG: Lazy = Lazy::new(|| { + let dot_movement = dot_movement::DotMovement::try_from_env().unwrap(); + let config = dot_movement.try_get_config_from_json::().unwrap(); + config +}); + +// :!:>section_1c +static NODE_URL: Lazy = Lazy::new(|| { + let node_connection_address = SUZUKA_CONFIG + .execution_config + .maptos_config + .client + .maptos_rest_connection_hostname + .clone(); + let node_connection_port = SUZUKA_CONFIG + .execution_config + .maptos_config + .client + .maptos_rest_connection_port + .clone(); + + let node_connection_url = + format!("http://{}:{}", node_connection_address, node_connection_port); + + Url::from_str(node_connection_url.as_str()).unwrap() +}); + +const DEAD_ADDRESS: &str = "000000000000000000000000000000000000000000000000000000000000dead"; + +#[derive(Debug, Parser, Clone)] +#[clap(rename_all = "kebab-case", about = "Burns tokens 🔥.")] +pub struct Burn { + #[clap(flatten)] + pub movement_args: MovementArgs, +} + +impl Burn { + pub async fn execute(&self) -> Result<(), anyhow::Error> { + let rest_client = Client::new(NODE_URL.clone()); + let dead_address = AccountAddress::from_str(DEAD_ADDRESS)?; + let chain_id = rest_client + .get_index() + .await + .context("failed to get chain ID")? + .inner() + .chain_id; + + let private_key = SUZUKA_CONFIG + .execution_config + .maptos_config + .chain + .maptos_private_key + .to_string(); + + let core_resources_account: LocalAccount = + LocalAccount::from_private_key(&private_key.clone(), 0)?; + + tracing::info!("Created core resources account"); + tracing::debug!("core_resources_account address: {}", core_resources_account.address()); + + // We know that we shouldn't compile on cmd execution, but we can optimise this later. + let _compile_status = Command::new("movement") + .args([ + "move", + "compile", + "--package-dir", + "protocol-units/bridge/move-modules/build/bridge-modules/bytecode_scripts/burn_from.mv", + ]) + .status() + .await + .expect("Failed to execute `movement compile` command"); + + let code = + fs::read("networks/movement/movement-full-node/ops/move-modules/burn_from.move")?; + + let args = vec![ + TransactionArgument::Address(dead_address), + TransactionArgument::U64(1), + TransactionArgument::U8Vector( + StructTag { + address: AccountAddress::from_hex_literal("0x1")?, + module: Identifier::new("coin")?, + name: Identifier::new("BurnCapability")?, + type_args: vec![StructTag { + address: AccountAddress::from_hex_literal("0x1")?, + module: Identifier::new("aptos_coin")?, + name: Identifier::new("AptosCoin")?, + type_args: vec![], + } + .into()], + } + .access_vector(), + ), + ]; + + let script_payload = TransactionPayload::Script(Script::new(code, vec![], args)); + + let tx_response = rest_client + .submit_and_wait( + &core_resources_account.sign_with_transaction_builder( + TransactionBuilder::new( + script_payload, + SystemTime::now().duration_since(UNIX_EPOCH)?.as_secs() + 60, + ChainId::new(chain_id), + ) + .sequence_number(core_resources_account.sequence_number()), + ), + ) + .await?; + + tracing::info!("Transaction submitted: {:?}", tx_response); + + Ok(()) + } +} \ No newline at end of file diff --git a/networks/movement/movement-full-node/src/admin/ops/mint.rs b/networks/movement/movement-full-node/src/admin/ops/mint.rs new file mode 100644 index 000000000..bc0ccde27 --- /dev/null +++ b/networks/movement/movement-full-node/src/admin/ops/mint.rs @@ -0,0 +1,147 @@ +use crate::common_args::MovementArgs; +use anyhow::Context; +use aptos_sdk::{ + coin_client::CoinClient, + rest_client::{Client, FaucetClient}, + types::{ + transaction::{Script, TransactionArgument, TransactionPayload}, + LocalAccount, + }, +}; +use aptos_types::{chain_id::ChainId, test_helpers::transaction_test_helpers}; +use clap::Parser; +use once_cell::sync::Lazy; +use std::{fs, time::SystemTime}; +use std::{str::FromStr, time::UNIX_EPOCH}; +use tokio::process::Command; +use url::Url; + +static SUZUKA_CONFIG: Lazy = Lazy::new(|| { + let dot_movement = dot_movement::DotMovement::try_from_env().unwrap(); + let config = dot_movement.try_get_config_from_json::().unwrap(); + config +}); + +static FAUCET_URL: Lazy = Lazy::new(|| { + let faucet_listen_address = SUZUKA_CONFIG + .execution_config + .maptos_config + .client + .maptos_faucet_rest_connection_hostname + .clone(); + let faucet_listen_port = SUZUKA_CONFIG + .execution_config + .maptos_config + .client + .maptos_faucet_rest_connection_port + .clone(); + let faucet_listen_url = format!("http://{}:{}", faucet_listen_address, faucet_listen_port); + Url::from_str(faucet_listen_url.as_str()).unwrap() +}); + +static NODE_URL: Lazy = Lazy::new(|| { + let node_connection_address = SUZUKA_CONFIG + .execution_config + .maptos_config + .client + .maptos_rest_connection_hostname + .clone(); + let node_connection_port = SUZUKA_CONFIG + .execution_config + .maptos_config + .client + .maptos_rest_connection_port + .clone(); + + let node_connection_url = + format!("http://{}:{}", node_connection_address, node_connection_port); + + Url::from_str(node_connection_url.as_str()).unwrap() +}); + +#[derive(Debug, Parser, Clone)] +#[clap(rename_all = "kebab-case", about = "Mints and locks tokens.")] +pub struct Mint { + #[clap(flatten)] + pub movement_args: MovementArgs, +} + +impl Mint { + pub async fn execute(&self) -> Result<(), anyhow::Error> { + let rest_client = Client::new(NODE_URL.clone()); + let faucet_client = FaucetClient::new(FAUCET_URL.clone(), NODE_URL.clone()); + let coin_client = CoinClient::new(&rest_client); + let chain_id = rest_client + .get_index() + .await + .context("failed to get chain ID")? + .inner() + .chain_id; + + let private_key = SUZUKA_CONFIG + .execution_config + .maptos_config + .chain + .maptos_private_key + .to_string(); + + let yo = Yo::new(); + + let core_resources_account: LocalAccount = + LocalAccount::from_private_key(&private_key.clone(), 0)?; + + tracing::info!("Created core resources account"); + tracing::debug!("core_resources_account address: {}", core_resources_account.address()); + + // I know that we shouldn't compile on cmd execution, but we can optimise this later. + let _compile_status = Command::new("movement") + .args([ + "move", + "compile", + "--package-dir", + "protocol-units/bridge/move-modules/build/bridge-modules/bytecode_scripts/mint_to.mv" + ]) + .status() + .await + .expect("Failed to execute `movement compile` command"); + + let mint_core_code = fs::read( + "protocol-units/bridge/move-modules/build/bridge-modules/bytecode_scripts/mint_to.mv", + )?; + + let mint_core_args = vec![ + TransactionArgument::Address(core_resources_account.address()), + TransactionArgument::U64(amount_to_mint), + ]; + let mint_core_script_payload = + TransactionPayload::Script(Script::new(mint_core_code, vec![], mint_core_args)); + + let mint_core_script_transaction = + transaction_test_helpers::get_test_signed_transaction_with_chain_id( + core_resources_account.address(), + core_resources_account.sequence_number(), + &core_resources_account.private_key(), + core_resources_account.public_key().clone(), + Some(mint_core_script_payload), + SystemTime::now().duration_since(UNIX_EPOCH)?.as_secs() + 60, + 100, + None, + ChainId::new(chain_id), + ); + + rest_client + .submit_and_wait(&mint_core_script_transaction) + .await + .context("Failed to execute mint core balance script transaction")?; + + assert!( + coin_client + .get_account_balance(&core_resources_account.address()) + .await + .context("Failed to retrieve core resources account new balance")? + == desired_core_balance + amount_to_mint, + "Core resources account balance was not minted" + ); + Ok(()) + } +} diff --git a/networks/movement/movement-full-node/src/admin/ops/mint_lock.rs b/networks/movement/movement-full-node/src/admin/ops/mint_lock.rs deleted file mode 100644 index eee416b3d..000000000 --- a/networks/movement/movement-full-node/src/admin/ops/mint_lock.rs +++ /dev/null @@ -1,15 +0,0 @@ -use crate::common_args::MovementArgs; -use clap::Parser; - -#[derive(Debug, Parser, Clone)] -#[clap(rename_all = "kebab-case", about = "Mints and locks tokens.")] -pub struct MintLock { - #[clap(flatten)] - pub movement_args: MovementArgs, -} - -impl MintLock { - pub async fn execute(&self) -> Result<(), anyhow::Error> { - Ok(()) - } -} diff --git a/networks/movement/movement-full-node/src/admin/ops/mod.rs b/networks/movement/movement-full-node/src/admin/ops/mod.rs index a76b14334..3325f8368 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mod.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mod.rs @@ -1,17 +1,20 @@ -pub mod mint_lock; +pub mod mint; +pub mod burn; use clap::Subcommand; #[derive(Subcommand, Debug)] #[clap(rename_all = "kebab-case", about = "Commands for bespoke network operations")] pub enum Ops { - MintLock(mint_lock::MintLock), + Mint(mint::Mint), + Burn(burn::Burn), } impl Ops { pub async fn execute(&self) -> Result<(), anyhow::Error> { match self { - Ops::MintLock(mint_lock) => mint_lock.execute().await, + Ops::Mint(mint) => mint.execute().await, + Ops::Burn(burn) => burn.execute().await, } } } diff --git a/protocol-units/bridge/move-modules/scripts/burn_from.move b/protocol-units/bridge/move-modules/scripts/burn_from.move new file mode 100644 index 000000000..63390d24c --- /dev/null +++ b/protocol-units/bridge/move-modules/scripts/burn_from.move @@ -0,0 +1,9 @@ +script { + use aptos_framework::aptos_governance; + use aptos_framework::native_bridge; + + fun burn_from(core_resources: &signer, account: address, amount: u64) { + let framework_signer = aptos_governance::get_signer_testnet_only(core_resources, @0x1); + native_bridge::burn_from(&framework_signer, account, amount); + } +} \ No newline at end of file diff --git a/protocol-units/bridge/move-modules/scripts/mint_to.move b/protocol-units/bridge/move-modules/scripts/mint_to.move new file mode 100644 index 000000000..8e002f4e9 --- /dev/null +++ b/protocol-units/bridge/move-modules/scripts/mint_to.move @@ -0,0 +1,9 @@ +script { + use aptos_framework::aptos_governance; + use aptos_framework::native_bridge; + + fun mint_to(core_resources: &signer, account: address, amount: u64) { + let framework_signer = aptos_governance::get_signer_testnet_only(core_resources, @0x1); + native_bridge::mint_to(&framework_signer, account, amount); + } +} \ No newline at end of file diff --git a/protocol-units/settlement/mcr/contracts/lib/v2-periphery b/protocol-units/settlement/mcr/contracts/lib/v2-periphery new file mode 160000 index 000000000..0335e8f7e --- /dev/null +++ b/protocol-units/settlement/mcr/contracts/lib/v2-periphery @@ -0,0 +1 @@ +Subproject commit 0335e8f7e1bd1e8d8329fd300aea2ef2f36dd19f From 1a1d921e076e7fd4ec7fb08b86bf5a8413ca7a9a Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 14:29:05 +0000 Subject: [PATCH 02/18] update aptos deps --- Cargo.lock | 366 +++++++++--------- Cargo.toml | 72 ++-- .../movement-full-node/src/admin/ops/burn.rs | 13 +- 3 files changed, 225 insertions(+), 226 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5180730b6..195b924f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,7 +11,7 @@ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" [[package]] name = "abstract-domain-derive" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "proc-macro2", "quote", @@ -812,7 +812,7 @@ checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" [[package]] name = "aptos-abstract-gas-usage" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-gas-algebra", @@ -836,7 +836,7 @@ dependencies = [ [[package]] name = "aptos-accumulator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-crypto", @@ -846,7 +846,7 @@ dependencies = [ [[package]] name = "aptos-admin-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-config", @@ -856,7 +856,7 @@ dependencies = [ "aptos-logger", "aptos-runtimes", "aptos-storage-interface", - "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "aptos-types", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "http 0.2.12", @@ -869,7 +869,7 @@ dependencies = [ [[package]] name = "aptos-aggregator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-logger", "aptos-types", @@ -883,7 +883,7 @@ dependencies = [ [[package]] name = "aptos-api" version = "0.2.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-api-types", @@ -925,7 +925,7 @@ dependencies = [ [[package]] name = "aptos-api-types" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-config", @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "aptos-backup-cli" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-backup-service", @@ -1003,7 +1003,7 @@ dependencies = [ [[package]] name = "aptos-backup-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-crypto", "aptos-db", @@ -1025,7 +1025,7 @@ dependencies = [ [[package]] name = "aptos-bcs-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "hex", @@ -1034,7 +1034,7 @@ dependencies = [ [[package]] name = "aptos-bitvec" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "serde", "serde_bytes", @@ -1043,7 +1043,7 @@ dependencies = [ [[package]] name = "aptos-block-executor" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-aggregator", @@ -1078,7 +1078,7 @@ dependencies = [ [[package]] name = "aptos-block-partitioner" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-crypto", "aptos-logger", @@ -1099,7 +1099,7 @@ dependencies = [ [[package]] name = "aptos-bounded-executor" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "futures", "rustversion", @@ -1109,7 +1109,7 @@ dependencies = [ [[package]] name = "aptos-build-info" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "shadow-rs", ] @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "aptos-cached-packages" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-framework", @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "aptos-channels" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-infallible", @@ -1142,7 +1142,7 @@ dependencies = [ [[package]] name = "aptos-cli-common" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anstyle", "clap 4.5.21", @@ -1152,12 +1152,12 @@ dependencies = [ [[package]] name = "aptos-collections" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" [[package]] name = "aptos-compression" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-logger", "aptos-metrics-core", @@ -1169,7 +1169,7 @@ dependencies = [ [[package]] name = "aptos-config" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-crypto", @@ -1200,7 +1200,7 @@ dependencies = [ [[package]] name = "aptos-consensus" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-bitvec", @@ -1278,7 +1278,7 @@ dependencies = [ [[package]] name = "aptos-consensus-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-crypto", "aptos-runtimes", @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "aptos-consensus-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-bitvec", @@ -1320,7 +1320,7 @@ dependencies = [ [[package]] name = "aptos-crash-handler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-logger", "backtrace", @@ -1332,7 +1332,7 @@ dependencies = [ [[package]] name = "aptos-crypto" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aes-gcm", "anyhow", @@ -1385,7 +1385,7 @@ dependencies = [ [[package]] name = "aptos-crypto-derive" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "proc-macro2", "quote", @@ -1395,7 +1395,7 @@ dependencies = [ [[package]] name = "aptos-data-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-config", "aptos-crypto", @@ -1426,7 +1426,7 @@ dependencies = [ [[package]] name = "aptos-data-streaming-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-channels", "aptos-config", @@ -1452,7 +1452,7 @@ dependencies = [ [[package]] name = "aptos-db" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-accumulator", @@ -1500,7 +1500,7 @@ dependencies = [ [[package]] name = "aptos-db-indexer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-config", @@ -1520,7 +1520,7 @@ dependencies = [ [[package]] name = "aptos-db-indexer-schemas" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-schemadb", @@ -1534,7 +1534,7 @@ dependencies = [ [[package]] name = "aptos-dkg" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-crypto", @@ -1565,7 +1565,7 @@ dependencies = [ [[package]] name = "aptos-dkg-runtime" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-bounded-executor", @@ -1603,7 +1603,7 @@ dependencies = [ [[package]] name = "aptos-drop-helper" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-infallible", "aptos-metrics-core", @@ -1614,7 +1614,7 @@ dependencies = [ [[package]] name = "aptos-enum-conversion-derive" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "quote", "syn 1.0.109", @@ -1623,7 +1623,7 @@ dependencies = [ [[package]] name = "aptos-event-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-channels", @@ -1639,7 +1639,7 @@ dependencies = [ [[package]] name = "aptos-executor" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-consensus-types", @@ -1671,7 +1671,7 @@ dependencies = [ [[package]] name = "aptos-executor-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-block-partitioner", "aptos-config", @@ -1701,7 +1701,7 @@ dependencies = [ [[package]] name = "aptos-executor-test-helpers" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-cached-packages", @@ -1723,7 +1723,7 @@ dependencies = [ [[package]] name = "aptos-executor-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-crypto", @@ -1743,7 +1743,7 @@ dependencies = [ [[package]] name = "aptos-experimental-runtimes" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-runtimes", "core_affinity", @@ -1756,7 +1756,7 @@ dependencies = [ [[package]] name = "aptos-fallible" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "thiserror 1.0.69", ] @@ -1764,7 +1764,7 @@ dependencies = [ [[package]] name = "aptos-faucet-core" version = "2.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-config", @@ -1798,7 +1798,7 @@ dependencies = [ [[package]] name = "aptos-faucet-metrics-server" version = "2.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-logger", @@ -1812,7 +1812,7 @@ dependencies = [ [[package]] name = "aptos-framework" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-aggregator", @@ -1987,7 +1987,7 @@ dependencies = [ [[package]] name = "aptos-gas-algebra" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "either", "move-core-types", @@ -1996,7 +1996,7 @@ dependencies = [ [[package]] name = "aptos-gas-meter" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-gas-algebra", "aptos-gas-schedule", @@ -2011,7 +2011,7 @@ dependencies = [ [[package]] name = "aptos-gas-profiling" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-gas-algebra", @@ -2031,7 +2031,7 @@ dependencies = [ [[package]] name = "aptos-gas-schedule" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-gas-algebra", "aptos-global-constants", @@ -2044,7 +2044,7 @@ dependencies = [ [[package]] name = "aptos-gas-schedule-updator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-gas-schedule", @@ -2059,7 +2059,7 @@ dependencies = [ [[package]] name = "aptos-genesis" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-cached-packages", @@ -2084,7 +2084,7 @@ dependencies = [ [[package]] name = "aptos-github-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-proxy", "serde", @@ -2096,17 +2096,17 @@ dependencies = [ [[package]] name = "aptos-global-constants" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" [[package]] name = "aptos-id-generator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" [[package]] name = "aptos-indexer" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-api", @@ -2138,7 +2138,7 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-fullnode" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-api", @@ -2150,7 +2150,7 @@ dependencies = [ "aptos-mempool", "aptos-metrics-core", "aptos-moving-average 0.1.0 (git+https://github.com/movementlabsxyz/aptos-indexer-processors?rev=77a36245400250e7d8a854360194288d078681bc)", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "aptos-runtimes", "aptos-storage-interface", "aptos-types", @@ -2176,11 +2176,11 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-server-framework" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-metrics-core", - "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "async-trait", "backtrace", "clap 4.5.21", @@ -2198,7 +2198,7 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-table-info" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-api", @@ -2229,11 +2229,11 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-utils" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-metrics-core", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "async-trait", "backoff", "base64 0.13.1", @@ -2261,12 +2261,12 @@ dependencies = [ [[package]] name = "aptos-infallible" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" [[package]] name = "aptos-inspection-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-build-info", @@ -2292,7 +2292,7 @@ dependencies = [ [[package]] name = "aptos-jellyfish-merkle" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-crypto", @@ -2320,7 +2320,7 @@ dependencies = [ [[package]] name = "aptos-jwk-consensus" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-bitvec", @@ -2356,7 +2356,7 @@ dependencies = [ [[package]] name = "aptos-jwk-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-types", @@ -2371,7 +2371,7 @@ dependencies = [ [[package]] name = "aptos-keygen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-crypto", "aptos-types", @@ -2381,7 +2381,7 @@ dependencies = [ [[package]] name = "aptos-language-e2e-tests" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-abstract-gas-usage", @@ -2425,7 +2425,7 @@ dependencies = [ [[package]] name = "aptos-ledger" version = "0.2.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-crypto", "aptos-types", @@ -2438,7 +2438,7 @@ dependencies = [ [[package]] name = "aptos-log-derive" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "proc-macro2", "quote", @@ -2448,7 +2448,7 @@ dependencies = [ [[package]] name = "aptos-logger" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-infallible", "aptos-log-derive", @@ -2472,7 +2472,7 @@ dependencies = [ [[package]] name = "aptos-memory-usage-tracker" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-gas-algebra", "aptos-gas-meter", @@ -2485,7 +2485,7 @@ dependencies = [ [[package]] name = "aptos-mempool" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-bounded-executor", @@ -2525,7 +2525,7 @@ dependencies = [ [[package]] name = "aptos-mempool-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-types", "async-trait", @@ -2538,7 +2538,7 @@ dependencies = [ [[package]] name = "aptos-memsocket" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-infallible", "bytes 1.8.0", @@ -2549,7 +2549,7 @@ dependencies = [ [[package]] name = "aptos-metrics-core" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "prometheus", @@ -2558,7 +2558,7 @@ dependencies = [ [[package]] name = "aptos-move-debugger" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-block-executor", @@ -2584,7 +2584,7 @@ dependencies = [ [[package]] name = "aptos-move-stdlib" version = "0.1.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-gas-schedule", "aptos-native-interface", @@ -2615,7 +2615,7 @@ dependencies = [ [[package]] name = "aptos-mvhashmap" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-aggregator", @@ -2636,7 +2636,7 @@ dependencies = [ [[package]] name = "aptos-native-interface" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-gas-algebra", "aptos-gas-schedule", @@ -2653,7 +2653,7 @@ dependencies = [ [[package]] name = "aptos-netcore" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-memsocket", "aptos-proxy", @@ -2670,7 +2670,7 @@ dependencies = [ [[package]] name = "aptos-network" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-bitvec", @@ -2715,7 +2715,7 @@ dependencies = [ [[package]] name = "aptos-network-benchmark" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-config", "aptos-logger", @@ -2735,7 +2735,7 @@ dependencies = [ [[package]] name = "aptos-network-builder" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-channels", "aptos-config", @@ -2758,7 +2758,7 @@ dependencies = [ [[package]] name = "aptos-network-checker" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-config", @@ -2775,7 +2775,7 @@ dependencies = [ [[package]] name = "aptos-network-discovery" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-channels", @@ -2800,7 +2800,7 @@ dependencies = [ [[package]] name = "aptos-node" version = "0.0.0-main" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-admin-service", @@ -2874,7 +2874,7 @@ dependencies = [ [[package]] name = "aptos-node-identity" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-types", @@ -2885,7 +2885,7 @@ dependencies = [ [[package]] name = "aptos-node-resource-metrics" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-build-info", "aptos-infallible", @@ -2901,7 +2901,7 @@ dependencies = [ [[package]] name = "aptos-num-variants" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "proc-macro2", "quote", @@ -2911,7 +2911,7 @@ dependencies = [ [[package]] name = "aptos-openapi" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "async-trait", "percent-encoding", @@ -2924,7 +2924,7 @@ dependencies = [ [[package]] name = "aptos-package-builder" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-framework", @@ -2937,7 +2937,7 @@ dependencies = [ [[package]] name = "aptos-peer-monitoring-service-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-channels", "aptos-config", @@ -2962,7 +2962,7 @@ dependencies = [ [[package]] name = "aptos-peer-monitoring-service-server" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-bounded-executor", "aptos-build-info", @@ -2988,7 +2988,7 @@ dependencies = [ [[package]] name = "aptos-peer-monitoring-service-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-config", "aptos-types", @@ -3013,7 +3013,7 @@ dependencies = [ [[package]] name = "aptos-profiler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "backtrace", @@ -3026,7 +3026,7 @@ dependencies = [ [[package]] name = "aptos-proptest-helpers" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "crossbeam", "proptest", @@ -3048,7 +3048,7 @@ dependencies = [ [[package]] name = "aptos-protos" version = "1.3.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "futures-core", "pbjson", @@ -3060,7 +3060,7 @@ dependencies = [ [[package]] name = "aptos-proxy" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "ipnet", ] @@ -3068,7 +3068,7 @@ dependencies = [ [[package]] name = "aptos-push-metrics" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-logger", "aptos-metrics-core", @@ -3079,7 +3079,7 @@ dependencies = [ [[package]] name = "aptos-release-builder" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-api-types", @@ -3118,7 +3118,7 @@ dependencies = [ [[package]] name = "aptos-reliable-broadcast" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-bounded-executor", @@ -3140,7 +3140,7 @@ dependencies = [ [[package]] name = "aptos-resource-viewer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-types", @@ -3154,7 +3154,7 @@ dependencies = [ [[package]] name = "aptos-rest-client" version = "0.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-api-types", @@ -3177,7 +3177,7 @@ dependencies = [ [[package]] name = "aptos-rocksdb-options" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-config", "rocksdb", @@ -3186,7 +3186,7 @@ dependencies = [ [[package]] name = "aptos-runtimes" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "rayon", "tokio", @@ -3195,7 +3195,7 @@ dependencies = [ [[package]] name = "aptos-safety-rules" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-config", @@ -3219,7 +3219,7 @@ dependencies = [ [[package]] name = "aptos-schemadb" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-infallible", @@ -3236,7 +3236,7 @@ dependencies = [ [[package]] name = "aptos-scratchpad" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-crypto", "aptos-drop-helper", @@ -3255,7 +3255,7 @@ dependencies = [ [[package]] name = "aptos-sdk" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-cached-packages", @@ -3277,7 +3277,7 @@ dependencies = [ [[package]] name = "aptos-sdk-builder" version = "0.2.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-types", @@ -3295,11 +3295,11 @@ dependencies = [ [[package]] name = "aptos-secure-net" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-logger", "aptos-metrics-core", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "crossbeam-channel", "once_cell", @@ -3313,7 +3313,7 @@ dependencies = [ [[package]] name = "aptos-secure-storage" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-crypto", "aptos-infallible", @@ -3334,7 +3334,7 @@ dependencies = [ [[package]] name = "aptos-short-hex-str" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "mirai-annotations", "serde", @@ -3345,7 +3345,7 @@ dependencies = [ [[package]] name = "aptos-speculative-state-helper" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-infallible", @@ -3356,7 +3356,7 @@ dependencies = [ [[package]] name = "aptos-state-sync-driver" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-config", @@ -3390,7 +3390,7 @@ dependencies = [ [[package]] name = "aptos-storage-interface" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-crypto", @@ -3418,7 +3418,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-config", "aptos-network", @@ -3429,7 +3429,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-channels", "async-trait", @@ -3441,7 +3441,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-server" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-channels", @@ -3470,7 +3470,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-compression", "aptos-config", @@ -3506,10 +3506,10 @@ dependencies = [ [[package]] name = "aptos-system-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", - "aptos-profiler 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-profiler 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "async-mutex", "http 0.2.12", "hyper 0.14.31", @@ -3526,7 +3526,7 @@ dependencies = [ [[package]] name = "aptos-table-natives" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-gas-schedule", "aptos-native-interface", @@ -3544,7 +3544,7 @@ dependencies = [ [[package]] name = "aptos-telemetry" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-api", @@ -3583,7 +3583,7 @@ dependencies = [ [[package]] name = "aptos-telemetry-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-config", @@ -3623,7 +3623,7 @@ dependencies = [ [[package]] name = "aptos-temppath" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "hex", "rand 0.7.3", @@ -3632,7 +3632,7 @@ dependencies = [ [[package]] name = "aptos-time-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-infallible", "enum_dispatch", @@ -3645,7 +3645,7 @@ dependencies = [ [[package]] name = "aptos-types" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-bitvec", @@ -3702,12 +3702,12 @@ dependencies = [ [[package]] name = "aptos-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" [[package]] name = "aptos-validator-interface" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-api-types", @@ -3728,7 +3728,7 @@ dependencies = [ [[package]] name = "aptos-validator-transaction-pool" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-channels", "aptos-crypto", @@ -3741,7 +3741,7 @@ dependencies = [ [[package]] name = "aptos-vault-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-crypto", "base64 0.13.1", @@ -3757,7 +3757,7 @@ dependencies = [ [[package]] name = "aptos-vm" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-aggregator", @@ -3808,7 +3808,7 @@ dependencies = [ [[package]] name = "aptos-vm-genesis" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-cached-packages", "aptos-crypto", @@ -3829,7 +3829,7 @@ dependencies = [ [[package]] name = "aptos-vm-logging" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "aptos-crypto", "aptos-logger", @@ -3844,7 +3844,7 @@ dependencies = [ [[package]] name = "aptos-vm-types" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-aggregator", @@ -3866,7 +3866,7 @@ dependencies = [ [[package]] name = "aptos-vm-validator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-logger", @@ -9962,7 +9962,7 @@ dependencies = [ "aptos-language-e2e-tests", "aptos-logger", "aptos-mempool", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "aptos-sdk", "aptos-storage-interface", "aptos-temppath", @@ -10503,7 +10503,7 @@ dependencies = [ "aptos-language-e2e-tests", "aptos-logger", "aptos-mempool", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "aptos-sdk", "aptos-storage-interface", "aptos-temppath", @@ -10884,7 +10884,7 @@ checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" [[package]] name = "move-abigen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -10901,7 +10901,7 @@ dependencies = [ [[package]] name = "move-binary-format" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "backtrace", @@ -10916,12 +10916,12 @@ dependencies = [ [[package]] name = "move-borrow-graph" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" [[package]] name = "move-bytecode-source-map" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -10936,7 +10936,7 @@ dependencies = [ [[package]] name = "move-bytecode-spec" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "once_cell", "quote", @@ -10946,7 +10946,7 @@ dependencies = [ [[package]] name = "move-bytecode-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "move-binary-format", @@ -10958,7 +10958,7 @@ dependencies = [ [[package]] name = "move-bytecode-verifier" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "fail", "move-binary-format", @@ -10972,7 +10972,7 @@ dependencies = [ [[package]] name = "move-bytecode-viewer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "clap 4.5.21", @@ -10987,7 +10987,7 @@ dependencies = [ [[package]] name = "move-cli" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "clap 4.5.21", @@ -11017,7 +11017,7 @@ dependencies = [ [[package]] name = "move-command-line-common" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "difference", @@ -11034,7 +11034,7 @@ dependencies = [ [[package]] name = "move-compiler" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -11060,7 +11060,7 @@ dependencies = [ [[package]] name = "move-compiler-v2" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "abstract-domain-derive", "anyhow", @@ -11091,7 +11091,7 @@ dependencies = [ [[package]] name = "move-core-types" version = "0.0.4" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "arbitrary", @@ -11116,7 +11116,7 @@ dependencies = [ [[package]] name = "move-coverage" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -11135,7 +11135,7 @@ dependencies = [ [[package]] name = "move-disassembler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "clap 4.5.21", @@ -11152,7 +11152,7 @@ dependencies = [ [[package]] name = "move-docgen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "clap 4.5.21", @@ -11171,7 +11171,7 @@ dependencies = [ [[package]] name = "move-errmapgen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "move-command-line-common", @@ -11183,7 +11183,7 @@ dependencies = [ [[package]] name = "move-ir-compiler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -11199,7 +11199,7 @@ dependencies = [ [[package]] name = "move-ir-to-bytecode" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "codespan-reporting", @@ -11217,7 +11217,7 @@ dependencies = [ [[package]] name = "move-ir-to-bytecode-syntax" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "hex", @@ -11230,7 +11230,7 @@ dependencies = [ [[package]] name = "move-ir-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "hex", "move-command-line-common", @@ -11243,7 +11243,7 @@ dependencies = [ [[package]] name = "move-model" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "codespan", @@ -11269,7 +11269,7 @@ dependencies = [ [[package]] name = "move-package" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "clap 4.5.21", @@ -11303,7 +11303,7 @@ dependencies = [ [[package]] name = "move-prover" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "atty", @@ -11330,7 +11330,7 @@ dependencies = [ [[package]] name = "move-prover-boogie-backend" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "async-trait", @@ -11359,7 +11359,7 @@ dependencies = [ [[package]] name = "move-prover-bytecode-pipeline" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "abstract-domain-derive", "anyhow", @@ -11376,7 +11376,7 @@ dependencies = [ [[package]] name = "move-resource-viewer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "hex", @@ -11403,7 +11403,7 @@ dependencies = [ [[package]] name = "move-stackless-bytecode" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "abstract-domain-derive", "codespan-reporting", @@ -11422,7 +11422,7 @@ dependencies = [ [[package]] name = "move-stdlib" version = "0.1.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "hex", @@ -11445,7 +11445,7 @@ dependencies = [ [[package]] name = "move-symbol-pool" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "once_cell", "serde", @@ -11454,7 +11454,7 @@ dependencies = [ [[package]] name = "move-table-extension" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "better_any", "bytes 1.8.0", @@ -11469,7 +11469,7 @@ dependencies = [ [[package]] name = "move-unit-test" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "better_any", @@ -11497,7 +11497,7 @@ dependencies = [ [[package]] name = "move-vm-runtime" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "better_any", "bytes 1.8.0", @@ -11521,7 +11521,7 @@ dependencies = [ [[package]] name = "move-vm-test-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "bytes 1.8.0", @@ -11537,7 +11537,7 @@ dependencies = [ [[package]] name = "move-vm-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "derivative", @@ -11553,7 +11553,7 @@ dependencies = [ [[package]] name = "movement" version = "3.5.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee#95c1227148c97b53ba743412e697a1ab08f5c2ee" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" dependencies = [ "anyhow", "aptos-api-types", @@ -11579,7 +11579,7 @@ dependencies = [ "aptos-move-debugger", "aptos-network-checker", "aptos-node", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "aptos-rest-client", "aptos-sdk", "aptos-storage-interface", @@ -11721,7 +11721,7 @@ name = "movement-client" version = "0.0.2" dependencies = [ "anyhow", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "aptos-sdk", "aptos-types", "async-trait", @@ -12906,7 +12906,7 @@ dependencies = [ "aptos-language-e2e-tests", "aptos-logger", "aptos-mempool", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=95c1227148c97b53ba743412e697a1ab08f5c2ee)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", "aptos-sdk", "aptos-storage-interface", "aptos-temppath", diff --git a/Cargo.toml b/Cargo.toml index f12715ff0..8ae49274a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -162,44 +162,44 @@ borsh = { version = "0.10" } # todo: internalize jmt and bump ### We use a forked version so that we can override dependency versions. This is required ### to be avoid dependency conflicts with other Sovereign Labs crates. -aptos-api = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-api-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-bitvec = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-block-executor = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-cached-packages = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-config = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-consensus-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-crypto = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee", features = [ +aptos-api = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-api-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-bitvec = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-block-executor = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-cached-packages = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-config = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-consensus-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-crypto = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5", features = [ "cloneable-private-keys", ] } -aptos-db = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-executor = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-executor-test-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-executor-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-faucet-core = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-framework = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-language-e2e-tests = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-mempool = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-proptest-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-sdk = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-state-view = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-storage-interface = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-temppath = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-vm = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-vm-genesis = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-vm-logging = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-vm-validator = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-logger = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-vm-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-indexer = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-indexer-grpc-fullnode = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-indexer-grpc-table-info = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-protos = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-release-builder = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -aptos-gas-schedule = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -move-package = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } -movement = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "95c1227148c97b53ba743412e697a1ab08f5c2ee" } +aptos-db = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-executor = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-executor-test-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-executor-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-faucet-core = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-framework = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-language-e2e-tests = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-mempool = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-proptest-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-sdk = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-state-view = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-storage-interface = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-temppath = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-vm = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-vm-genesis = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-vm-logging = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-vm-validator = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-logger = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-vm-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-indexer = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-indexer-grpc-fullnode = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-indexer-grpc-table-info = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-protos = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-release-builder = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-gas-schedule = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +move-package = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +movement = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } # Indexer processor = { git = "https://github.com/movementlabsxyz/aptos-indexer-processors", rev = "77a36245400250e7d8a854360194288d078681bc" } diff --git a/networks/movement/movement-full-node/src/admin/ops/burn.rs b/networks/movement/movement-full-node/src/admin/ops/burn.rs index 0e7924d75..9b72eb382 100644 --- a/networks/movement/movement-full-node/src/admin/ops/burn.rs +++ b/networks/movement/movement-full-node/src/admin/ops/burn.rs @@ -1,20 +1,18 @@ #[allow(unused_imports)] use crate::common_args::MovementArgs; use anyhow::Context; +use aptos_sdk::types::{account_address::AccountAddress, transaction::TransactionPayload}; use aptos_sdk::{ - move_types::language_storage::StructTag, move_types::identifier::Identifier, - rest_client::{Client}, + move_types::language_storage::StructTag, + rest_client::Client, transaction_builder::TransactionBuilder, types::{ chain_id::ChainId, - transaction::{ Script, TransactionArgument}, + transaction::{Script, TransactionArgument}, LocalAccount, }, }; -use aptos_sdk::{ - types::{account_address::AccountAddress, transaction::TransactionPayload}, -}; use clap::Parser; use once_cell::sync::Lazy; use std::{ @@ -139,4 +137,5 @@ impl Burn { Ok(()) } -} \ No newline at end of file +} + From 19a46352709b1dc603d89cdc3c32fce175e6adf7 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 15:39:36 +0000 Subject: [PATCH 03/18] upgrade: aptos deps, fix aptos crate build --- Cargo.lock | 366 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 72 +++++------ 2 files changed, 219 insertions(+), 219 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b2293ca33..61c8f94fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,7 +11,7 @@ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" [[package]] name = "abstract-domain-derive" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "proc-macro2", "quote", @@ -812,7 +812,7 @@ checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" [[package]] name = "aptos-abstract-gas-usage" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-gas-algebra", @@ -836,7 +836,7 @@ dependencies = [ [[package]] name = "aptos-accumulator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-crypto", @@ -846,7 +846,7 @@ dependencies = [ [[package]] name = "aptos-admin-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-config", @@ -856,7 +856,7 @@ dependencies = [ "aptos-logger", "aptos-runtimes", "aptos-storage-interface", - "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "aptos-types", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "http 0.2.12", @@ -869,7 +869,7 @@ dependencies = [ [[package]] name = "aptos-aggregator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-logger", "aptos-types", @@ -883,7 +883,7 @@ dependencies = [ [[package]] name = "aptos-api" version = "0.2.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-api-types", @@ -925,7 +925,7 @@ dependencies = [ [[package]] name = "aptos-api-types" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-config", @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "aptos-backup-cli" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-backup-service", @@ -1003,7 +1003,7 @@ dependencies = [ [[package]] name = "aptos-backup-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-crypto", "aptos-db", @@ -1025,7 +1025,7 @@ dependencies = [ [[package]] name = "aptos-bcs-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "hex", @@ -1034,7 +1034,7 @@ dependencies = [ [[package]] name = "aptos-bitvec" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "serde", "serde_bytes", @@ -1043,7 +1043,7 @@ dependencies = [ [[package]] name = "aptos-block-executor" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-aggregator", @@ -1078,7 +1078,7 @@ dependencies = [ [[package]] name = "aptos-block-partitioner" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-crypto", "aptos-logger", @@ -1099,7 +1099,7 @@ dependencies = [ [[package]] name = "aptos-bounded-executor" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "futures", "rustversion", @@ -1109,7 +1109,7 @@ dependencies = [ [[package]] name = "aptos-build-info" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "shadow-rs", ] @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "aptos-cached-packages" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-framework", @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "aptos-channels" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-infallible", @@ -1142,7 +1142,7 @@ dependencies = [ [[package]] name = "aptos-cli-common" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anstyle", "clap 4.5.21", @@ -1152,12 +1152,12 @@ dependencies = [ [[package]] name = "aptos-collections" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" [[package]] name = "aptos-compression" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-logger", "aptos-metrics-core", @@ -1169,7 +1169,7 @@ dependencies = [ [[package]] name = "aptos-config" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-crypto", @@ -1200,7 +1200,7 @@ dependencies = [ [[package]] name = "aptos-consensus" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-bitvec", @@ -1278,7 +1278,7 @@ dependencies = [ [[package]] name = "aptos-consensus-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-crypto", "aptos-runtimes", @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "aptos-consensus-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-bitvec", @@ -1320,7 +1320,7 @@ dependencies = [ [[package]] name = "aptos-crash-handler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-logger", "backtrace", @@ -1332,7 +1332,7 @@ dependencies = [ [[package]] name = "aptos-crypto" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aes-gcm", "anyhow", @@ -1385,7 +1385,7 @@ dependencies = [ [[package]] name = "aptos-crypto-derive" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "proc-macro2", "quote", @@ -1395,7 +1395,7 @@ dependencies = [ [[package]] name = "aptos-data-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-config", "aptos-crypto", @@ -1426,7 +1426,7 @@ dependencies = [ [[package]] name = "aptos-data-streaming-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-channels", "aptos-config", @@ -1452,7 +1452,7 @@ dependencies = [ [[package]] name = "aptos-db" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-accumulator", @@ -1500,7 +1500,7 @@ dependencies = [ [[package]] name = "aptos-db-indexer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-config", @@ -1520,7 +1520,7 @@ dependencies = [ [[package]] name = "aptos-db-indexer-schemas" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-schemadb", @@ -1534,7 +1534,7 @@ dependencies = [ [[package]] name = "aptos-dkg" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-crypto", @@ -1565,7 +1565,7 @@ dependencies = [ [[package]] name = "aptos-dkg-runtime" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-bounded-executor", @@ -1603,7 +1603,7 @@ dependencies = [ [[package]] name = "aptos-drop-helper" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-infallible", "aptos-metrics-core", @@ -1614,7 +1614,7 @@ dependencies = [ [[package]] name = "aptos-enum-conversion-derive" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "quote", "syn 1.0.109", @@ -1623,7 +1623,7 @@ dependencies = [ [[package]] name = "aptos-event-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-channels", @@ -1639,7 +1639,7 @@ dependencies = [ [[package]] name = "aptos-executor" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-consensus-types", @@ -1671,7 +1671,7 @@ dependencies = [ [[package]] name = "aptos-executor-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-block-partitioner", "aptos-config", @@ -1701,7 +1701,7 @@ dependencies = [ [[package]] name = "aptos-executor-test-helpers" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-cached-packages", @@ -1723,7 +1723,7 @@ dependencies = [ [[package]] name = "aptos-executor-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-crypto", @@ -1743,7 +1743,7 @@ dependencies = [ [[package]] name = "aptos-experimental-runtimes" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-runtimes", "core_affinity", @@ -1756,7 +1756,7 @@ dependencies = [ [[package]] name = "aptos-fallible" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "thiserror 1.0.69", ] @@ -1764,7 +1764,7 @@ dependencies = [ [[package]] name = "aptos-faucet-core" version = "2.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-config", @@ -1798,7 +1798,7 @@ dependencies = [ [[package]] name = "aptos-faucet-metrics-server" version = "2.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-logger", @@ -1812,7 +1812,7 @@ dependencies = [ [[package]] name = "aptos-framework" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-aggregator", @@ -2014,7 +2014,7 @@ dependencies = [ [[package]] name = "aptos-gas-algebra" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "either", "move-core-types", @@ -2023,7 +2023,7 @@ dependencies = [ [[package]] name = "aptos-gas-meter" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-gas-algebra", "aptos-gas-schedule", @@ -2038,7 +2038,7 @@ dependencies = [ [[package]] name = "aptos-gas-profiling" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-gas-algebra", @@ -2058,7 +2058,7 @@ dependencies = [ [[package]] name = "aptos-gas-schedule" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-gas-algebra", "aptos-global-constants", @@ -2071,7 +2071,7 @@ dependencies = [ [[package]] name = "aptos-gas-schedule-updator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-gas-schedule", @@ -2086,7 +2086,7 @@ dependencies = [ [[package]] name = "aptos-genesis" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-cached-packages", @@ -2111,7 +2111,7 @@ dependencies = [ [[package]] name = "aptos-github-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-proxy", "serde", @@ -2123,17 +2123,17 @@ dependencies = [ [[package]] name = "aptos-global-constants" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" [[package]] name = "aptos-id-generator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" [[package]] name = "aptos-indexer" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-api", @@ -2165,7 +2165,7 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-fullnode" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-api", @@ -2177,7 +2177,7 @@ dependencies = [ "aptos-mempool", "aptos-metrics-core", "aptos-moving-average 0.1.0 (git+https://github.com/movementlabsxyz/aptos-indexer-processors?rev=77a36245400250e7d8a854360194288d078681bc)", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "aptos-runtimes", "aptos-storage-interface", "aptos-types", @@ -2203,11 +2203,11 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-server-framework" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-metrics-core", - "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "async-trait", "backtrace", "clap 4.5.21", @@ -2225,7 +2225,7 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-table-info" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-api", @@ -2256,11 +2256,11 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-utils" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-metrics-core", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "async-trait", "backoff", "base64 0.13.1", @@ -2288,12 +2288,12 @@ dependencies = [ [[package]] name = "aptos-infallible" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" [[package]] name = "aptos-inspection-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-build-info", @@ -2319,7 +2319,7 @@ dependencies = [ [[package]] name = "aptos-jellyfish-merkle" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-crypto", @@ -2347,7 +2347,7 @@ dependencies = [ [[package]] name = "aptos-jwk-consensus" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-bitvec", @@ -2383,7 +2383,7 @@ dependencies = [ [[package]] name = "aptos-jwk-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-types", @@ -2398,7 +2398,7 @@ dependencies = [ [[package]] name = "aptos-keygen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-crypto", "aptos-types", @@ -2408,7 +2408,7 @@ dependencies = [ [[package]] name = "aptos-language-e2e-tests" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-abstract-gas-usage", @@ -2452,7 +2452,7 @@ dependencies = [ [[package]] name = "aptos-ledger" version = "0.2.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-crypto", "aptos-types", @@ -2465,7 +2465,7 @@ dependencies = [ [[package]] name = "aptos-log-derive" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "proc-macro2", "quote", @@ -2475,7 +2475,7 @@ dependencies = [ [[package]] name = "aptos-logger" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-infallible", "aptos-log-derive", @@ -2499,7 +2499,7 @@ dependencies = [ [[package]] name = "aptos-memory-usage-tracker" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-gas-algebra", "aptos-gas-meter", @@ -2512,7 +2512,7 @@ dependencies = [ [[package]] name = "aptos-mempool" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-bounded-executor", @@ -2552,7 +2552,7 @@ dependencies = [ [[package]] name = "aptos-mempool-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-types", "async-trait", @@ -2565,7 +2565,7 @@ dependencies = [ [[package]] name = "aptos-memsocket" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-infallible", "bytes 1.8.0", @@ -2576,7 +2576,7 @@ dependencies = [ [[package]] name = "aptos-metrics-core" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "prometheus", @@ -2585,7 +2585,7 @@ dependencies = [ [[package]] name = "aptos-move-debugger" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-block-executor", @@ -2611,7 +2611,7 @@ dependencies = [ [[package]] name = "aptos-move-stdlib" version = "0.1.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-gas-schedule", "aptos-native-interface", @@ -2642,7 +2642,7 @@ dependencies = [ [[package]] name = "aptos-mvhashmap" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-aggregator", @@ -2663,7 +2663,7 @@ dependencies = [ [[package]] name = "aptos-native-interface" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-gas-algebra", "aptos-gas-schedule", @@ -2680,7 +2680,7 @@ dependencies = [ [[package]] name = "aptos-netcore" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-memsocket", "aptos-proxy", @@ -2697,7 +2697,7 @@ dependencies = [ [[package]] name = "aptos-network" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-bitvec", @@ -2742,7 +2742,7 @@ dependencies = [ [[package]] name = "aptos-network-benchmark" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-config", "aptos-logger", @@ -2762,7 +2762,7 @@ dependencies = [ [[package]] name = "aptos-network-builder" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-channels", "aptos-config", @@ -2785,7 +2785,7 @@ dependencies = [ [[package]] name = "aptos-network-checker" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-config", @@ -2802,7 +2802,7 @@ dependencies = [ [[package]] name = "aptos-network-discovery" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-channels", @@ -2827,7 +2827,7 @@ dependencies = [ [[package]] name = "aptos-node" version = "0.0.0-main" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-admin-service", @@ -2901,7 +2901,7 @@ dependencies = [ [[package]] name = "aptos-node-identity" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-types", @@ -2912,7 +2912,7 @@ dependencies = [ [[package]] name = "aptos-node-resource-metrics" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-build-info", "aptos-infallible", @@ -2928,7 +2928,7 @@ dependencies = [ [[package]] name = "aptos-num-variants" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "proc-macro2", "quote", @@ -2938,7 +2938,7 @@ dependencies = [ [[package]] name = "aptos-openapi" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "async-trait", "percent-encoding", @@ -2951,7 +2951,7 @@ dependencies = [ [[package]] name = "aptos-package-builder" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-framework", @@ -2964,7 +2964,7 @@ dependencies = [ [[package]] name = "aptos-peer-monitoring-service-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-channels", "aptos-config", @@ -2989,7 +2989,7 @@ dependencies = [ [[package]] name = "aptos-peer-monitoring-service-server" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-bounded-executor", "aptos-build-info", @@ -3015,7 +3015,7 @@ dependencies = [ [[package]] name = "aptos-peer-monitoring-service-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-config", "aptos-types", @@ -3040,7 +3040,7 @@ dependencies = [ [[package]] name = "aptos-profiler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "backtrace", @@ -3053,7 +3053,7 @@ dependencies = [ [[package]] name = "aptos-proptest-helpers" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "crossbeam", "proptest", @@ -3075,7 +3075,7 @@ dependencies = [ [[package]] name = "aptos-protos" version = "1.3.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "futures-core", "pbjson", @@ -3087,7 +3087,7 @@ dependencies = [ [[package]] name = "aptos-proxy" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "ipnet", ] @@ -3095,7 +3095,7 @@ dependencies = [ [[package]] name = "aptos-push-metrics" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-logger", "aptos-metrics-core", @@ -3106,7 +3106,7 @@ dependencies = [ [[package]] name = "aptos-release-builder" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-api-types", @@ -3145,7 +3145,7 @@ dependencies = [ [[package]] name = "aptos-reliable-broadcast" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-bounded-executor", @@ -3167,7 +3167,7 @@ dependencies = [ [[package]] name = "aptos-resource-viewer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-types", @@ -3181,7 +3181,7 @@ dependencies = [ [[package]] name = "aptos-rest-client" version = "0.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-api-types", @@ -3204,7 +3204,7 @@ dependencies = [ [[package]] name = "aptos-rocksdb-options" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-config", "rocksdb", @@ -3213,7 +3213,7 @@ dependencies = [ [[package]] name = "aptos-runtimes" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "rayon", "tokio", @@ -3222,7 +3222,7 @@ dependencies = [ [[package]] name = "aptos-safety-rules" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-config", @@ -3246,7 +3246,7 @@ dependencies = [ [[package]] name = "aptos-schemadb" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-infallible", @@ -3263,7 +3263,7 @@ dependencies = [ [[package]] name = "aptos-scratchpad" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-crypto", "aptos-drop-helper", @@ -3282,7 +3282,7 @@ dependencies = [ [[package]] name = "aptos-sdk" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-cached-packages", @@ -3304,7 +3304,7 @@ dependencies = [ [[package]] name = "aptos-sdk-builder" version = "0.2.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-types", @@ -3322,11 +3322,11 @@ dependencies = [ [[package]] name = "aptos-secure-net" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-logger", "aptos-metrics-core", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "crossbeam-channel", "once_cell", @@ -3340,7 +3340,7 @@ dependencies = [ [[package]] name = "aptos-secure-storage" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-crypto", "aptos-infallible", @@ -3361,7 +3361,7 @@ dependencies = [ [[package]] name = "aptos-short-hex-str" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "mirai-annotations", "serde", @@ -3372,7 +3372,7 @@ dependencies = [ [[package]] name = "aptos-speculative-state-helper" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-infallible", @@ -3383,7 +3383,7 @@ dependencies = [ [[package]] name = "aptos-state-sync-driver" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-config", @@ -3417,7 +3417,7 @@ dependencies = [ [[package]] name = "aptos-storage-interface" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-crypto", @@ -3445,7 +3445,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-config", "aptos-network", @@ -3456,7 +3456,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-channels", "async-trait", @@ -3468,7 +3468,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-server" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-channels", @@ -3497,7 +3497,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-compression", "aptos-config", @@ -3533,10 +3533,10 @@ dependencies = [ [[package]] name = "aptos-system-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", - "aptos-profiler 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-profiler 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "async-mutex", "http 0.2.12", "hyper 0.14.31", @@ -3553,7 +3553,7 @@ dependencies = [ [[package]] name = "aptos-table-natives" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-gas-schedule", "aptos-native-interface", @@ -3571,7 +3571,7 @@ dependencies = [ [[package]] name = "aptos-telemetry" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-api", @@ -3610,7 +3610,7 @@ dependencies = [ [[package]] name = "aptos-telemetry-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-config", @@ -3650,7 +3650,7 @@ dependencies = [ [[package]] name = "aptos-temppath" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "hex", "rand 0.7.3", @@ -3659,7 +3659,7 @@ dependencies = [ [[package]] name = "aptos-time-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-infallible", "enum_dispatch", @@ -3672,7 +3672,7 @@ dependencies = [ [[package]] name = "aptos-types" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-bitvec", @@ -3729,12 +3729,12 @@ dependencies = [ [[package]] name = "aptos-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" [[package]] name = "aptos-validator-interface" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-api-types", @@ -3755,7 +3755,7 @@ dependencies = [ [[package]] name = "aptos-validator-transaction-pool" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-channels", "aptos-crypto", @@ -3768,7 +3768,7 @@ dependencies = [ [[package]] name = "aptos-vault-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-crypto", "base64 0.13.1", @@ -3784,7 +3784,7 @@ dependencies = [ [[package]] name = "aptos-vm" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-aggregator", @@ -3835,7 +3835,7 @@ dependencies = [ [[package]] name = "aptos-vm-genesis" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-cached-packages", "aptos-crypto", @@ -3856,7 +3856,7 @@ dependencies = [ [[package]] name = "aptos-vm-logging" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "aptos-crypto", "aptos-logger", @@ -3871,7 +3871,7 @@ dependencies = [ [[package]] name = "aptos-vm-types" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-aggregator", @@ -3893,7 +3893,7 @@ dependencies = [ [[package]] name = "aptos-vm-validator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-logger", @@ -9989,7 +9989,7 @@ dependencies = [ "aptos-language-e2e-tests", "aptos-logger", "aptos-mempool", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "aptos-sdk", "aptos-storage-interface", "aptos-temppath", @@ -10532,7 +10532,7 @@ dependencies = [ "aptos-language-e2e-tests", "aptos-logger", "aptos-mempool", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "aptos-sdk", "aptos-storage-interface", "aptos-temppath", @@ -10913,7 +10913,7 @@ checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" [[package]] name = "move-abigen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -10930,7 +10930,7 @@ dependencies = [ [[package]] name = "move-binary-format" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "backtrace", @@ -10945,12 +10945,12 @@ dependencies = [ [[package]] name = "move-borrow-graph" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" [[package]] name = "move-bytecode-source-map" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -10965,7 +10965,7 @@ dependencies = [ [[package]] name = "move-bytecode-spec" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "once_cell", "quote", @@ -10975,7 +10975,7 @@ dependencies = [ [[package]] name = "move-bytecode-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "move-binary-format", @@ -10987,7 +10987,7 @@ dependencies = [ [[package]] name = "move-bytecode-verifier" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "fail", "move-binary-format", @@ -11001,7 +11001,7 @@ dependencies = [ [[package]] name = "move-bytecode-viewer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "clap 4.5.21", @@ -11016,7 +11016,7 @@ dependencies = [ [[package]] name = "move-cli" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "clap 4.5.21", @@ -11046,7 +11046,7 @@ dependencies = [ [[package]] name = "move-command-line-common" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "difference", @@ -11063,7 +11063,7 @@ dependencies = [ [[package]] name = "move-compiler" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -11089,7 +11089,7 @@ dependencies = [ [[package]] name = "move-compiler-v2" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "abstract-domain-derive", "anyhow", @@ -11120,7 +11120,7 @@ dependencies = [ [[package]] name = "move-core-types" version = "0.0.4" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "arbitrary", @@ -11145,7 +11145,7 @@ dependencies = [ [[package]] name = "move-coverage" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -11164,7 +11164,7 @@ dependencies = [ [[package]] name = "move-disassembler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "clap 4.5.21", @@ -11181,7 +11181,7 @@ dependencies = [ [[package]] name = "move-docgen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "clap 4.5.21", @@ -11200,7 +11200,7 @@ dependencies = [ [[package]] name = "move-errmapgen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "move-command-line-common", @@ -11212,7 +11212,7 @@ dependencies = [ [[package]] name = "move-ir-compiler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -11228,7 +11228,7 @@ dependencies = [ [[package]] name = "move-ir-to-bytecode" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "codespan-reporting", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "move-ir-to-bytecode-syntax" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "hex", @@ -11259,7 +11259,7 @@ dependencies = [ [[package]] name = "move-ir-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "hex", "move-command-line-common", @@ -11272,7 +11272,7 @@ dependencies = [ [[package]] name = "move-model" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "codespan", @@ -11298,7 +11298,7 @@ dependencies = [ [[package]] name = "move-package" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "clap 4.5.21", @@ -11332,7 +11332,7 @@ dependencies = [ [[package]] name = "move-prover" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "atty", @@ -11359,7 +11359,7 @@ dependencies = [ [[package]] name = "move-prover-boogie-backend" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "async-trait", @@ -11388,7 +11388,7 @@ dependencies = [ [[package]] name = "move-prover-bytecode-pipeline" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "abstract-domain-derive", "anyhow", @@ -11405,7 +11405,7 @@ dependencies = [ [[package]] name = "move-resource-viewer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "hex", @@ -11432,7 +11432,7 @@ dependencies = [ [[package]] name = "move-stackless-bytecode" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "abstract-domain-derive", "codespan-reporting", @@ -11451,7 +11451,7 @@ dependencies = [ [[package]] name = "move-stdlib" version = "0.1.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "hex", @@ -11474,7 +11474,7 @@ dependencies = [ [[package]] name = "move-symbol-pool" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "once_cell", "serde", @@ -11483,7 +11483,7 @@ dependencies = [ [[package]] name = "move-table-extension" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "better_any", "bytes 1.8.0", @@ -11498,7 +11498,7 @@ dependencies = [ [[package]] name = "move-unit-test" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "better_any", @@ -11526,7 +11526,7 @@ dependencies = [ [[package]] name = "move-vm-runtime" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "better_any", "bytes 1.8.0", @@ -11550,7 +11550,7 @@ dependencies = [ [[package]] name = "move-vm-test-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "bytes 1.8.0", @@ -11566,7 +11566,7 @@ dependencies = [ [[package]] name = "move-vm-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "derivative", @@ -11582,7 +11582,7 @@ dependencies = [ [[package]] name = "movement" version = "3.5.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5#991668fa0dac6fa5bb31b2865194c0d6292ca1b5" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" dependencies = [ "anyhow", "aptos-api-types", @@ -11608,7 +11608,7 @@ dependencies = [ "aptos-move-debugger", "aptos-network-checker", "aptos-node", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "aptos-rest-client", "aptos-sdk", "aptos-storage-interface", @@ -11750,7 +11750,7 @@ name = "movement-client" version = "0.0.2" dependencies = [ "anyhow", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "aptos-sdk", "aptos-types", "async-trait", @@ -12935,7 +12935,7 @@ dependencies = [ "aptos-language-e2e-tests", "aptos-logger", "aptos-mempool", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=991668fa0dac6fa5bb31b2865194c0d6292ca1b5)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", "aptos-sdk", "aptos-storage-interface", "aptos-temppath", diff --git a/Cargo.toml b/Cargo.toml index e59b133e7..cd3454c9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -163,44 +163,44 @@ borsh = { version = "0.10" } # todo: internalize jmt and bump ### We use a forked version so that we can override dependency versions. This is required ### to be avoid dependency conflicts with other Sovereign Labs crates. -aptos-api = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-api-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-bitvec = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-block-executor = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-cached-packages = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-config = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-consensus-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-crypto = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5", features = [ +aptos-api = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-api-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-bitvec = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-block-executor = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-cached-packages = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-config = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-consensus-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-crypto = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b", features = [ "cloneable-private-keys", ] } -aptos-db = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-executor = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-executor-test-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-executor-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-faucet-core = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-framework = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-language-e2e-tests = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-mempool = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-proptest-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-sdk = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-state-view = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-storage-interface = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-temppath = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-vm = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-vm-genesis = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-vm-logging = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-vm-validator = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-logger = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-vm-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-indexer = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-indexer-grpc-fullnode = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-indexer-grpc-table-info = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-protos = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-release-builder = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -aptos-gas-schedule = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -move-package = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } -movement = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "991668fa0dac6fa5bb31b2865194c0d6292ca1b5" } +aptos-db = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-executor = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-executor-test-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-executor-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-faucet-core = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-framework = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-language-e2e-tests = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-mempool = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-proptest-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-sdk = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-state-view = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-storage-interface = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-temppath = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-vm = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-vm-genesis = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-vm-logging = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-vm-validator = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-logger = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-vm-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-indexer = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-indexer-grpc-fullnode = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-indexer-grpc-table-info = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-protos = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-release-builder = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-gas-schedule = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +move-package = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +movement = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } # Indexer processor = { git = "https://github.com/movementlabsxyz/aptos-indexer-processors", rev = "77a36245400250e7d8a854360194288d078681bc" } From df63cb69e2684e5d9cad523aa951fd0c7118e200 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 16:56:40 +0000 Subject: [PATCH 04/18] fix: raw private key --- Cargo.lock | 1 + Cargo.toml | 2 +- .../movement/movement-full-node/Cargo.toml | 1 + .../movement-full-node/src/admin/ops/mint.rs | 44 +++++++++---------- 4 files changed, 25 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 61c8f94fb..55522a0e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12054,6 +12054,7 @@ name = "movement-full-node" version = "0.0.2" dependencies = [ "anyhow", + "aptos-crypto", "aptos-framework-elsa-to-biarritz-rc1-migration", "aptos-sdk", "aptos-types", diff --git a/Cargo.toml b/Cargo.toml index cd3454c9e..6dee75b27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -157,7 +157,7 @@ serde = "1.0" serde_json = "1.0" serde_derive = "1.0" serde_yaml = "0.9.34" -borsh = { version = "0.10" } # todo: internalize jmt and bump +borsh = { version = "0.10" } # todo: internalize jmt and bum ## Aptos dependencies diff --git a/networks/movement/movement-full-node/Cargo.toml b/networks/movement/movement-full-node/Cargo.toml index 786402d8a..3a40e4217 100644 --- a/networks/movement/movement-full-node/Cargo.toml +++ b/networks/movement/movement-full-node/Cargo.toml @@ -12,6 +12,7 @@ rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +aptos-crypto = { workspace = true } aptos-types = { workspace = true } aptos-sdk = { workspace = true } maptos-dof-execution = { workspace = true } diff --git a/networks/movement/movement-full-node/src/admin/ops/mint.rs b/networks/movement/movement-full-node/src/admin/ops/mint.rs index bc0ccde27..ed6f4e2ef 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mint.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mint.rs @@ -1,8 +1,7 @@ -use crate::common_args::MovementArgs; +#[allow(unused_imports)] use anyhow::Context; use aptos_sdk::{ - coin_client::CoinClient, - rest_client::{Client, FaucetClient}, + rest_client::Client, types::{ transaction::{Script, TransactionArgument, TransactionPayload}, LocalAccount, @@ -59,18 +58,24 @@ static NODE_URL: Lazy = Lazy::new(|| { Url::from_str(node_connection_url.as_str()).unwrap() }); +#[derive(Debug, clap::Args, Clone)] +pub struct MintArgs { + amount: u64, + recipient: String, +} + #[derive(Debug, Parser, Clone)] -#[clap(rename_all = "kebab-case", about = "Mints and locks tokens.")] +#[clap(rename_all = "kebab-case", about = "Mints tokens with the core_resource account.")] pub struct Mint { #[clap(flatten)] - pub movement_args: MovementArgs, + pub args: MintArgs, } impl Mint { pub async fn execute(&self) -> Result<(), anyhow::Error> { let rest_client = Client::new(NODE_URL.clone()); - let faucet_client = FaucetClient::new(FAUCET_URL.clone(), NODE_URL.clone()); - let coin_client = CoinClient::new(&rest_client); + //let faucet_client = FaucetClient::new(FAUCET_URL.clone(), NODE_URL.clone()); + //let coin_client = CoinClient::new(&rest_client); let chain_id = rest_client .get_index() .await @@ -78,17 +83,20 @@ impl Mint { .inner() .chain_id; - let private_key = SUZUKA_CONFIG + let dot_movement = dot_movement::DotMovement::try_from_env()?; + let config = dot_movement.try_get_config_from_json::()?; + + let raw_private_key = config .execution_config .maptos_config .chain - .maptos_private_key - .to_string(); + .maptos_private_key_signer_identifier + .try_raw_private_key()?; - let yo = Yo::new(); + let hex_string = hex::encode(raw_private_key.as_slice()); + //let private_key = Ed25519PrivateKey::from_encoded_string(&hex_string)?; - let core_resources_account: LocalAccount = - LocalAccount::from_private_key(&private_key.clone(), 0)?; + let core_resources_account: LocalAccount = LocalAccount::from_private_key(&hex_string, 0)?; tracing::info!("Created core resources account"); tracing::debug!("core_resources_account address: {}", core_resources_account.address()); @@ -111,7 +119,7 @@ impl Mint { let mint_core_args = vec![ TransactionArgument::Address(core_resources_account.address()), - TransactionArgument::U64(amount_to_mint), + TransactionArgument::U64(self.args.amount), ]; let mint_core_script_payload = TransactionPayload::Script(Script::new(mint_core_code, vec![], mint_core_args)); @@ -134,14 +142,6 @@ impl Mint { .await .context("Failed to execute mint core balance script transaction")?; - assert!( - coin_client - .get_account_balance(&core_resources_account.address()) - .await - .context("Failed to retrieve core resources account new balance")? - == desired_core_balance + amount_to_mint, - "Core resources account balance was not minted" - ); Ok(()) } } From c7a88769c534745025635d7de7a267a32fcbf047 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 17:09:01 +0000 Subject: [PATCH 05/18] fix: burn use private key --- .../movement-full-node/src/admin/ops/burn.rs | 14 +++++++++----- .../movement-full-node/src/admin/ops/mint.rs | 17 ----------------- .../movement-full-node/src/admin/ops/mod.rs | 6 +++--- 3 files changed, 12 insertions(+), 25 deletions(-) diff --git a/networks/movement/movement-full-node/src/admin/ops/burn.rs b/networks/movement/movement-full-node/src/admin/ops/burn.rs index 9b72eb382..9974b272c 100644 --- a/networks/movement/movement-full-node/src/admin/ops/burn.rs +++ b/networks/movement/movement-full-node/src/admin/ops/burn.rs @@ -70,15 +70,20 @@ impl Burn { .inner() .chain_id; - let private_key = SUZUKA_CONFIG + let dot_movement = dot_movement::DotMovement::try_from_env()?; + let config = dot_movement.try_get_config_from_json::()?; + + let raw_private_key = config .execution_config .maptos_config .chain - .maptos_private_key - .to_string(); + .maptos_private_key_signer_identifier + .try_raw_private_key()?; + + let hex_string = hex::encode(raw_private_key.as_slice()); let core_resources_account: LocalAccount = - LocalAccount::from_private_key(&private_key.clone(), 0)?; + LocalAccount::from_private_key(&hex_string.clone(), 0)?; tracing::info!("Created core resources account"); tracing::debug!("core_resources_account address: {}", core_resources_account.address()); @@ -138,4 +143,3 @@ impl Burn { Ok(()) } } - diff --git a/networks/movement/movement-full-node/src/admin/ops/mint.rs b/networks/movement/movement-full-node/src/admin/ops/mint.rs index ed6f4e2ef..e2344f29a 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mint.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mint.rs @@ -21,23 +21,6 @@ static SUZUKA_CONFIG: Lazy = Lazy::new(|| { config }); -static FAUCET_URL: Lazy = Lazy::new(|| { - let faucet_listen_address = SUZUKA_CONFIG - .execution_config - .maptos_config - .client - .maptos_faucet_rest_connection_hostname - .clone(); - let faucet_listen_port = SUZUKA_CONFIG - .execution_config - .maptos_config - .client - .maptos_faucet_rest_connection_port - .clone(); - let faucet_listen_url = format!("http://{}:{}", faucet_listen_address, faucet_listen_port); - Url::from_str(faucet_listen_url.as_str()).unwrap() -}); - static NODE_URL: Lazy = Lazy::new(|| { let node_connection_address = SUZUKA_CONFIG .execution_config diff --git a/networks/movement/movement-full-node/src/admin/ops/mod.rs b/networks/movement/movement-full-node/src/admin/ops/mod.rs index 3325f8368..ace5e4ad1 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mod.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mod.rs @@ -1,5 +1,5 @@ -pub mod mint; pub mod burn; +pub mod mint; use clap::Subcommand; @@ -7,14 +7,14 @@ use clap::Subcommand; #[clap(rename_all = "kebab-case", about = "Commands for bespoke network operations")] pub enum Ops { Mint(mint::Mint), - Burn(burn::Burn), + //Burn(burn::Burn), } impl Ops { pub async fn execute(&self) -> Result<(), anyhow::Error> { match self { Ops::Mint(mint) => mint.execute().await, - Ops::Burn(burn) => burn.execute().await, + //Ops::Burn(burn) => burn.execute().await, } } } From 49c0f624fdb7805faef59e080b8c8f7f9fd4d14a Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 19:40:06 +0000 Subject: [PATCH 06/18] fix: cli parsing --- Cargo.lock | 366 +++++++++--------- Cargo.toml | 83 ++-- .../src/admin/ops/{mint.rs => mint_to.rs} | 29 +- .../movement-full-node/src/admin/ops/mod.rs | 6 +- 4 files changed, 247 insertions(+), 237 deletions(-) rename networks/movement/movement-full-node/src/admin/ops/{mint.rs => mint_to.rs} (90%) diff --git a/Cargo.lock b/Cargo.lock index 55522a0e0..485301b03 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,7 +11,7 @@ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" [[package]] name = "abstract-domain-derive" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "proc-macro2", "quote", @@ -812,7 +812,7 @@ checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" [[package]] name = "aptos-abstract-gas-usage" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-gas-algebra", @@ -836,7 +836,7 @@ dependencies = [ [[package]] name = "aptos-accumulator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-crypto", @@ -846,7 +846,7 @@ dependencies = [ [[package]] name = "aptos-admin-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-config", @@ -856,7 +856,7 @@ dependencies = [ "aptos-logger", "aptos-runtimes", "aptos-storage-interface", - "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "aptos-types", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "http 0.2.12", @@ -869,7 +869,7 @@ dependencies = [ [[package]] name = "aptos-aggregator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-logger", "aptos-types", @@ -883,7 +883,7 @@ dependencies = [ [[package]] name = "aptos-api" version = "0.2.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-api-types", @@ -925,7 +925,7 @@ dependencies = [ [[package]] name = "aptos-api-types" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-config", @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "aptos-backup-cli" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-backup-service", @@ -1003,7 +1003,7 @@ dependencies = [ [[package]] name = "aptos-backup-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-crypto", "aptos-db", @@ -1025,7 +1025,7 @@ dependencies = [ [[package]] name = "aptos-bcs-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "hex", @@ -1034,7 +1034,7 @@ dependencies = [ [[package]] name = "aptos-bitvec" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "serde", "serde_bytes", @@ -1043,7 +1043,7 @@ dependencies = [ [[package]] name = "aptos-block-executor" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-aggregator", @@ -1078,7 +1078,7 @@ dependencies = [ [[package]] name = "aptos-block-partitioner" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-crypto", "aptos-logger", @@ -1099,7 +1099,7 @@ dependencies = [ [[package]] name = "aptos-bounded-executor" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "futures", "rustversion", @@ -1109,7 +1109,7 @@ dependencies = [ [[package]] name = "aptos-build-info" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "shadow-rs", ] @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "aptos-cached-packages" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-framework", @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "aptos-channels" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-infallible", @@ -1142,7 +1142,7 @@ dependencies = [ [[package]] name = "aptos-cli-common" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anstyle", "clap 4.5.21", @@ -1152,12 +1152,12 @@ dependencies = [ [[package]] name = "aptos-collections" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" [[package]] name = "aptos-compression" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-logger", "aptos-metrics-core", @@ -1169,7 +1169,7 @@ dependencies = [ [[package]] name = "aptos-config" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-crypto", @@ -1200,7 +1200,7 @@ dependencies = [ [[package]] name = "aptos-consensus" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-bitvec", @@ -1278,7 +1278,7 @@ dependencies = [ [[package]] name = "aptos-consensus-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-crypto", "aptos-runtimes", @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "aptos-consensus-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-bitvec", @@ -1320,7 +1320,7 @@ dependencies = [ [[package]] name = "aptos-crash-handler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-logger", "backtrace", @@ -1332,7 +1332,7 @@ dependencies = [ [[package]] name = "aptos-crypto" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aes-gcm", "anyhow", @@ -1385,7 +1385,7 @@ dependencies = [ [[package]] name = "aptos-crypto-derive" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "proc-macro2", "quote", @@ -1395,7 +1395,7 @@ dependencies = [ [[package]] name = "aptos-data-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-config", "aptos-crypto", @@ -1426,7 +1426,7 @@ dependencies = [ [[package]] name = "aptos-data-streaming-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-channels", "aptos-config", @@ -1452,7 +1452,7 @@ dependencies = [ [[package]] name = "aptos-db" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-accumulator", @@ -1500,7 +1500,7 @@ dependencies = [ [[package]] name = "aptos-db-indexer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-config", @@ -1520,7 +1520,7 @@ dependencies = [ [[package]] name = "aptos-db-indexer-schemas" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-schemadb", @@ -1534,7 +1534,7 @@ dependencies = [ [[package]] name = "aptos-dkg" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-crypto", @@ -1565,7 +1565,7 @@ dependencies = [ [[package]] name = "aptos-dkg-runtime" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-bounded-executor", @@ -1603,7 +1603,7 @@ dependencies = [ [[package]] name = "aptos-drop-helper" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-infallible", "aptos-metrics-core", @@ -1614,7 +1614,7 @@ dependencies = [ [[package]] name = "aptos-enum-conversion-derive" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "quote", "syn 1.0.109", @@ -1623,7 +1623,7 @@ dependencies = [ [[package]] name = "aptos-event-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-channels", @@ -1639,7 +1639,7 @@ dependencies = [ [[package]] name = "aptos-executor" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-consensus-types", @@ -1671,7 +1671,7 @@ dependencies = [ [[package]] name = "aptos-executor-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-block-partitioner", "aptos-config", @@ -1701,7 +1701,7 @@ dependencies = [ [[package]] name = "aptos-executor-test-helpers" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-cached-packages", @@ -1723,7 +1723,7 @@ dependencies = [ [[package]] name = "aptos-executor-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-crypto", @@ -1743,7 +1743,7 @@ dependencies = [ [[package]] name = "aptos-experimental-runtimes" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-runtimes", "core_affinity", @@ -1756,7 +1756,7 @@ dependencies = [ [[package]] name = "aptos-fallible" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "thiserror 1.0.69", ] @@ -1764,7 +1764,7 @@ dependencies = [ [[package]] name = "aptos-faucet-core" version = "2.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-config", @@ -1798,7 +1798,7 @@ dependencies = [ [[package]] name = "aptos-faucet-metrics-server" version = "2.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-logger", @@ -1812,7 +1812,7 @@ dependencies = [ [[package]] name = "aptos-framework" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-aggregator", @@ -2014,7 +2014,7 @@ dependencies = [ [[package]] name = "aptos-gas-algebra" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "either", "move-core-types", @@ -2023,7 +2023,7 @@ dependencies = [ [[package]] name = "aptos-gas-meter" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-gas-algebra", "aptos-gas-schedule", @@ -2038,7 +2038,7 @@ dependencies = [ [[package]] name = "aptos-gas-profiling" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-gas-algebra", @@ -2058,7 +2058,7 @@ dependencies = [ [[package]] name = "aptos-gas-schedule" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-gas-algebra", "aptos-global-constants", @@ -2071,7 +2071,7 @@ dependencies = [ [[package]] name = "aptos-gas-schedule-updator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-gas-schedule", @@ -2086,7 +2086,7 @@ dependencies = [ [[package]] name = "aptos-genesis" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-cached-packages", @@ -2111,7 +2111,7 @@ dependencies = [ [[package]] name = "aptos-github-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-proxy", "serde", @@ -2123,17 +2123,17 @@ dependencies = [ [[package]] name = "aptos-global-constants" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" [[package]] name = "aptos-id-generator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" [[package]] name = "aptos-indexer" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-api", @@ -2165,7 +2165,7 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-fullnode" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-api", @@ -2177,7 +2177,7 @@ dependencies = [ "aptos-mempool", "aptos-metrics-core", "aptos-moving-average 0.1.0 (git+https://github.com/movementlabsxyz/aptos-indexer-processors?rev=77a36245400250e7d8a854360194288d078681bc)", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "aptos-runtimes", "aptos-storage-interface", "aptos-types", @@ -2203,11 +2203,11 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-server-framework" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-metrics-core", - "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-system-utils 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "async-trait", "backtrace", "clap 4.5.21", @@ -2225,7 +2225,7 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-table-info" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-api", @@ -2256,11 +2256,11 @@ dependencies = [ [[package]] name = "aptos-indexer-grpc-utils" version = "1.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-metrics-core", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "async-trait", "backoff", "base64 0.13.1", @@ -2288,12 +2288,12 @@ dependencies = [ [[package]] name = "aptos-infallible" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" [[package]] name = "aptos-inspection-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-build-info", @@ -2319,7 +2319,7 @@ dependencies = [ [[package]] name = "aptos-jellyfish-merkle" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-crypto", @@ -2347,7 +2347,7 @@ dependencies = [ [[package]] name = "aptos-jwk-consensus" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-bitvec", @@ -2383,7 +2383,7 @@ dependencies = [ [[package]] name = "aptos-jwk-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-types", @@ -2398,7 +2398,7 @@ dependencies = [ [[package]] name = "aptos-keygen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-crypto", "aptos-types", @@ -2408,7 +2408,7 @@ dependencies = [ [[package]] name = "aptos-language-e2e-tests" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-abstract-gas-usage", @@ -2452,7 +2452,7 @@ dependencies = [ [[package]] name = "aptos-ledger" version = "0.2.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-crypto", "aptos-types", @@ -2465,7 +2465,7 @@ dependencies = [ [[package]] name = "aptos-log-derive" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "proc-macro2", "quote", @@ -2475,7 +2475,7 @@ dependencies = [ [[package]] name = "aptos-logger" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-infallible", "aptos-log-derive", @@ -2499,7 +2499,7 @@ dependencies = [ [[package]] name = "aptos-memory-usage-tracker" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-gas-algebra", "aptos-gas-meter", @@ -2512,7 +2512,7 @@ dependencies = [ [[package]] name = "aptos-mempool" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-bounded-executor", @@ -2552,7 +2552,7 @@ dependencies = [ [[package]] name = "aptos-mempool-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-types", "async-trait", @@ -2565,7 +2565,7 @@ dependencies = [ [[package]] name = "aptos-memsocket" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-infallible", "bytes 1.8.0", @@ -2576,7 +2576,7 @@ dependencies = [ [[package]] name = "aptos-metrics-core" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "prometheus", @@ -2585,7 +2585,7 @@ dependencies = [ [[package]] name = "aptos-move-debugger" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-block-executor", @@ -2611,7 +2611,7 @@ dependencies = [ [[package]] name = "aptos-move-stdlib" version = "0.1.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-gas-schedule", "aptos-native-interface", @@ -2642,7 +2642,7 @@ dependencies = [ [[package]] name = "aptos-mvhashmap" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-aggregator", @@ -2663,7 +2663,7 @@ dependencies = [ [[package]] name = "aptos-native-interface" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-gas-algebra", "aptos-gas-schedule", @@ -2680,7 +2680,7 @@ dependencies = [ [[package]] name = "aptos-netcore" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-memsocket", "aptos-proxy", @@ -2697,7 +2697,7 @@ dependencies = [ [[package]] name = "aptos-network" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-bitvec", @@ -2742,7 +2742,7 @@ dependencies = [ [[package]] name = "aptos-network-benchmark" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-config", "aptos-logger", @@ -2762,7 +2762,7 @@ dependencies = [ [[package]] name = "aptos-network-builder" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-channels", "aptos-config", @@ -2785,7 +2785,7 @@ dependencies = [ [[package]] name = "aptos-network-checker" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-config", @@ -2802,7 +2802,7 @@ dependencies = [ [[package]] name = "aptos-network-discovery" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-channels", @@ -2827,7 +2827,7 @@ dependencies = [ [[package]] name = "aptos-node" version = "0.0.0-main" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-admin-service", @@ -2901,7 +2901,7 @@ dependencies = [ [[package]] name = "aptos-node-identity" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-types", @@ -2912,7 +2912,7 @@ dependencies = [ [[package]] name = "aptos-node-resource-metrics" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-build-info", "aptos-infallible", @@ -2928,7 +2928,7 @@ dependencies = [ [[package]] name = "aptos-num-variants" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "proc-macro2", "quote", @@ -2938,7 +2938,7 @@ dependencies = [ [[package]] name = "aptos-openapi" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "async-trait", "percent-encoding", @@ -2951,7 +2951,7 @@ dependencies = [ [[package]] name = "aptos-package-builder" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-framework", @@ -2964,7 +2964,7 @@ dependencies = [ [[package]] name = "aptos-peer-monitoring-service-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-channels", "aptos-config", @@ -2989,7 +2989,7 @@ dependencies = [ [[package]] name = "aptos-peer-monitoring-service-server" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-bounded-executor", "aptos-build-info", @@ -3015,7 +3015,7 @@ dependencies = [ [[package]] name = "aptos-peer-monitoring-service-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-config", "aptos-types", @@ -3040,7 +3040,7 @@ dependencies = [ [[package]] name = "aptos-profiler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "backtrace", @@ -3053,7 +3053,7 @@ dependencies = [ [[package]] name = "aptos-proptest-helpers" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "crossbeam", "proptest", @@ -3075,7 +3075,7 @@ dependencies = [ [[package]] name = "aptos-protos" version = "1.3.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "futures-core", "pbjson", @@ -3087,7 +3087,7 @@ dependencies = [ [[package]] name = "aptos-proxy" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "ipnet", ] @@ -3095,7 +3095,7 @@ dependencies = [ [[package]] name = "aptos-push-metrics" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-logger", "aptos-metrics-core", @@ -3106,7 +3106,7 @@ dependencies = [ [[package]] name = "aptos-release-builder" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-api-types", @@ -3145,7 +3145,7 @@ dependencies = [ [[package]] name = "aptos-reliable-broadcast" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-bounded-executor", @@ -3167,7 +3167,7 @@ dependencies = [ [[package]] name = "aptos-resource-viewer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-types", @@ -3181,7 +3181,7 @@ dependencies = [ [[package]] name = "aptos-rest-client" version = "0.0.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-api-types", @@ -3204,7 +3204,7 @@ dependencies = [ [[package]] name = "aptos-rocksdb-options" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-config", "rocksdb", @@ -3213,7 +3213,7 @@ dependencies = [ [[package]] name = "aptos-runtimes" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "rayon", "tokio", @@ -3222,7 +3222,7 @@ dependencies = [ [[package]] name = "aptos-safety-rules" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-config", @@ -3246,7 +3246,7 @@ dependencies = [ [[package]] name = "aptos-schemadb" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-infallible", @@ -3263,7 +3263,7 @@ dependencies = [ [[package]] name = "aptos-scratchpad" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-crypto", "aptos-drop-helper", @@ -3282,7 +3282,7 @@ dependencies = [ [[package]] name = "aptos-sdk" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-cached-packages", @@ -3304,7 +3304,7 @@ dependencies = [ [[package]] name = "aptos-sdk-builder" version = "0.2.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-types", @@ -3322,11 +3322,11 @@ dependencies = [ [[package]] name = "aptos-secure-net" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-logger", "aptos-metrics-core", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "crossbeam-channel", "once_cell", @@ -3340,7 +3340,7 @@ dependencies = [ [[package]] name = "aptos-secure-storage" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-crypto", "aptos-infallible", @@ -3361,7 +3361,7 @@ dependencies = [ [[package]] name = "aptos-short-hex-str" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "mirai-annotations", "serde", @@ -3372,7 +3372,7 @@ dependencies = [ [[package]] name = "aptos-speculative-state-helper" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-infallible", @@ -3383,7 +3383,7 @@ dependencies = [ [[package]] name = "aptos-state-sync-driver" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-config", @@ -3417,7 +3417,7 @@ dependencies = [ [[package]] name = "aptos-storage-interface" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-crypto", @@ -3445,7 +3445,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-config", "aptos-network", @@ -3456,7 +3456,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-notifications" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-channels", "async-trait", @@ -3468,7 +3468,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-server" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-channels", @@ -3497,7 +3497,7 @@ dependencies = [ [[package]] name = "aptos-storage-service-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-compression", "aptos-config", @@ -3533,10 +3533,10 @@ dependencies = [ [[package]] name = "aptos-system-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", - "aptos-profiler 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-profiler 0.1.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "async-mutex", "http 0.2.12", "hyper 0.14.31", @@ -3553,7 +3553,7 @@ dependencies = [ [[package]] name = "aptos-table-natives" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-gas-schedule", "aptos-native-interface", @@ -3571,7 +3571,7 @@ dependencies = [ [[package]] name = "aptos-telemetry" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-api", @@ -3610,7 +3610,7 @@ dependencies = [ [[package]] name = "aptos-telemetry-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-config", @@ -3650,7 +3650,7 @@ dependencies = [ [[package]] name = "aptos-temppath" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "hex", "rand 0.7.3", @@ -3659,7 +3659,7 @@ dependencies = [ [[package]] name = "aptos-time-service" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-infallible", "enum_dispatch", @@ -3672,7 +3672,7 @@ dependencies = [ [[package]] name = "aptos-types" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-bitvec", @@ -3729,12 +3729,12 @@ dependencies = [ [[package]] name = "aptos-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" [[package]] name = "aptos-validator-interface" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-api-types", @@ -3755,7 +3755,7 @@ dependencies = [ [[package]] name = "aptos-validator-transaction-pool" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-channels", "aptos-crypto", @@ -3768,7 +3768,7 @@ dependencies = [ [[package]] name = "aptos-vault-client" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-crypto", "base64 0.13.1", @@ -3784,7 +3784,7 @@ dependencies = [ [[package]] name = "aptos-vm" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-aggregator", @@ -3835,7 +3835,7 @@ dependencies = [ [[package]] name = "aptos-vm-genesis" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-cached-packages", "aptos-crypto", @@ -3856,7 +3856,7 @@ dependencies = [ [[package]] name = "aptos-vm-logging" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "aptos-crypto", "aptos-logger", @@ -3871,7 +3871,7 @@ dependencies = [ [[package]] name = "aptos-vm-types" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-aggregator", @@ -3893,7 +3893,7 @@ dependencies = [ [[package]] name = "aptos-vm-validator" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-logger", @@ -9989,7 +9989,7 @@ dependencies = [ "aptos-language-e2e-tests", "aptos-logger", "aptos-mempool", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "aptos-sdk", "aptos-storage-interface", "aptos-temppath", @@ -10532,7 +10532,7 @@ dependencies = [ "aptos-language-e2e-tests", "aptos-logger", "aptos-mempool", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "aptos-sdk", "aptos-storage-interface", "aptos-temppath", @@ -10913,7 +10913,7 @@ checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" [[package]] name = "move-abigen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -10930,7 +10930,7 @@ dependencies = [ [[package]] name = "move-binary-format" version = "0.0.3" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "backtrace", @@ -10945,12 +10945,12 @@ dependencies = [ [[package]] name = "move-borrow-graph" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" [[package]] name = "move-bytecode-source-map" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -10965,7 +10965,7 @@ dependencies = [ [[package]] name = "move-bytecode-spec" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "once_cell", "quote", @@ -10975,7 +10975,7 @@ dependencies = [ [[package]] name = "move-bytecode-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "move-binary-format", @@ -10987,7 +10987,7 @@ dependencies = [ [[package]] name = "move-bytecode-verifier" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "fail", "move-binary-format", @@ -11001,7 +11001,7 @@ dependencies = [ [[package]] name = "move-bytecode-viewer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "clap 4.5.21", @@ -11016,7 +11016,7 @@ dependencies = [ [[package]] name = "move-cli" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "clap 4.5.21", @@ -11046,7 +11046,7 @@ dependencies = [ [[package]] name = "move-command-line-common" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "difference", @@ -11063,7 +11063,7 @@ dependencies = [ [[package]] name = "move-compiler" version = "0.0.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -11089,7 +11089,7 @@ dependencies = [ [[package]] name = "move-compiler-v2" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "abstract-domain-derive", "anyhow", @@ -11120,7 +11120,7 @@ dependencies = [ [[package]] name = "move-core-types" version = "0.0.4" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "arbitrary", @@ -11145,7 +11145,7 @@ dependencies = [ [[package]] name = "move-coverage" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -11164,7 +11164,7 @@ dependencies = [ [[package]] name = "move-disassembler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "clap 4.5.21", @@ -11181,7 +11181,7 @@ dependencies = [ [[package]] name = "move-docgen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "clap 4.5.21", @@ -11200,7 +11200,7 @@ dependencies = [ [[package]] name = "move-errmapgen" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "move-command-line-common", @@ -11212,7 +11212,7 @@ dependencies = [ [[package]] name = "move-ir-compiler" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", @@ -11228,7 +11228,7 @@ dependencies = [ [[package]] name = "move-ir-to-bytecode" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "codespan-reporting", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "move-ir-to-bytecode-syntax" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "hex", @@ -11259,7 +11259,7 @@ dependencies = [ [[package]] name = "move-ir-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "hex", "move-command-line-common", @@ -11272,7 +11272,7 @@ dependencies = [ [[package]] name = "move-model" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "codespan", @@ -11298,7 +11298,7 @@ dependencies = [ [[package]] name = "move-package" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "clap 4.5.21", @@ -11332,7 +11332,7 @@ dependencies = [ [[package]] name = "move-prover" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "atty", @@ -11359,7 +11359,7 @@ dependencies = [ [[package]] name = "move-prover-boogie-backend" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "async-trait", @@ -11388,7 +11388,7 @@ dependencies = [ [[package]] name = "move-prover-bytecode-pipeline" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "abstract-domain-derive", "anyhow", @@ -11405,7 +11405,7 @@ dependencies = [ [[package]] name = "move-resource-viewer" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "hex", @@ -11432,7 +11432,7 @@ dependencies = [ [[package]] name = "move-stackless-bytecode" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "abstract-domain-derive", "codespan-reporting", @@ -11451,7 +11451,7 @@ dependencies = [ [[package]] name = "move-stdlib" version = "0.1.1" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "hex", @@ -11474,7 +11474,7 @@ dependencies = [ [[package]] name = "move-symbol-pool" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "once_cell", "serde", @@ -11483,7 +11483,7 @@ dependencies = [ [[package]] name = "move-table-extension" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "better_any", "bytes 1.8.0", @@ -11498,7 +11498,7 @@ dependencies = [ [[package]] name = "move-unit-test" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "better_any", @@ -11526,7 +11526,7 @@ dependencies = [ [[package]] name = "move-vm-runtime" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "better_any", "bytes 1.8.0", @@ -11550,7 +11550,7 @@ dependencies = [ [[package]] name = "move-vm-test-utils" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "bytes 1.8.0", @@ -11566,7 +11566,7 @@ dependencies = [ [[package]] name = "move-vm-types" version = "0.1.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "bcs 0.1.6 (git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c)", "derivative", @@ -11582,7 +11582,7 @@ dependencies = [ [[package]] name = "movement" version = "3.5.0" -source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b#f43e66b022d176f6f82308c5c6b082c71d467d5b" +source = "git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0#f018a5b6a015449a551e9765690cf5d98d967ae0" dependencies = [ "anyhow", "aptos-api-types", @@ -11608,7 +11608,7 @@ dependencies = [ "aptos-move-debugger", "aptos-network-checker", "aptos-node", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "aptos-rest-client", "aptos-sdk", "aptos-storage-interface", @@ -11750,7 +11750,7 @@ name = "movement-client" version = "0.0.2" dependencies = [ "anyhow", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "aptos-sdk", "aptos-types", "async-trait", @@ -12936,7 +12936,7 @@ dependencies = [ "aptos-language-e2e-tests", "aptos-logger", "aptos-mempool", - "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f43e66b022d176f6f82308c5c6b082c71d467d5b)", + "aptos-protos 1.3.0 (git+https://github.com/movementlabsxyz/aptos-core?rev=f018a5b6a015449a551e9765690cf5d98d967ae0)", "aptos-sdk", "aptos-storage-interface", "aptos-temppath", diff --git a/Cargo.toml b/Cargo.toml index 6dee75b27..2830d0bad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -163,44 +163,44 @@ borsh = { version = "0.10" } # todo: internalize jmt and bum ### We use a forked version so that we can override dependency versions. This is required ### to be avoid dependency conflicts with other Sovereign Labs crates. -aptos-api = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-api-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-bitvec = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-block-executor = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-cached-packages = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-config = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-consensus-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-crypto = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b", features = [ - "cloneable-private-keys", +aptos-api = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-api-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-bitvec = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-block-executor = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-cached-packages = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-config = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-consensus-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-crypto = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0", features = [ + "cloneable-private-keys", ] } -aptos-db = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-executor = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-executor-test-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-executor-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-faucet-core = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-framework = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-language-e2e-tests = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-mempool = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-proptest-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-sdk = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-state-view = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-storage-interface = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-temppath = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-vm = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-vm-genesis = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-vm-logging = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-vm-validator = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-logger = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-vm-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-indexer = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-indexer-grpc-fullnode = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-indexer-grpc-table-info = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-protos = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-release-builder = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -aptos-gas-schedule = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -move-package = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } -movement = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f43e66b022d176f6f82308c5c6b082c71d467d5b" } +aptos-db = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-executor = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-executor-test-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-executor-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-faucet-core = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-framework = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-language-e2e-tests = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-mempool = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-proptest-helpers = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-sdk = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-state-view = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-storage-interface = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-temppath = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-vm = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-vm-genesis = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-vm-logging = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-vm-validator = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-logger = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-vm-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-indexer = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-indexer-grpc-fullnode = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-indexer-grpc-table-info = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-protos = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-release-builder = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +aptos-gas-schedule = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +move-package = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } +movement = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "f018a5b6a015449a551e9765690cf5d98d967ae0" } # Indexer processor = { git = "https://github.com/movementlabsxyz/aptos-indexer-processors", rev = "77a36245400250e7d8a854360194288d078681bc" } @@ -257,7 +257,9 @@ alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy.git", rev = "83343b alloy-sol-types = { version = "0.7.2", features = ["json"] } alloy-signer = { git = "https://github.com/alloy-rs/alloy.git", rev = "83343b172585fe4e040fb104b4d1421f58cbf9a2" } alloy-transport = { git = "https://github.com/alloy-rs/alloy.git", rev = "83343b172585fe4e040fb104b4d1421f58cbf9a2" } -alloy-transport-http = { git = "https://github.com/alloy-rs/alloy.git", rev = "83343b172585fe4e040fb104b4d1421f58cbf9a2", features = ["reqwest-rustls-tls"] } +alloy-transport-http = { git = "https://github.com/alloy-rs/alloy.git", rev = "83343b172585fe4e040fb104b4d1421f58cbf9a2", features = [ + "reqwest-rustls-tls", +] } alloy-transport-ws = { git = "https://github.com/alloy-rs/alloy.git", rev = "83343b172585fe4e040fb104b4d1421f58cbf9a2" } anyhow = "1.0" @@ -372,7 +374,7 @@ aws-sdk-s3 = "1.42.0" # movement movement-client = { path = "networks/movement/movement-client" } -simple_asn1 = "0.6.3" +simple_asn1 = "0.6.3" dotenv = "0.15.0" rand_core = "0.9.0" @@ -400,4 +402,5 @@ opt-level = 3 [patch.crates-io] merlin = { git = "https://github.com/aptos-labs/merlin" } -x25519-dalek = { git = "https://github.com/aptos-labs/x25519-dalek", branch = "zeroize_v1" } \ No newline at end of file +x25519-dalek = { git = "https://github.com/aptos-labs/x25519-dalek", branch = "zeroize_v1" } + diff --git a/networks/movement/movement-full-node/src/admin/ops/mint.rs b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs similarity index 90% rename from networks/movement/movement-full-node/src/admin/ops/mint.rs rename to networks/movement/movement-full-node/src/admin/ops/mint_to.rs index e2344f29a..19efdbd9b 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mint.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs @@ -15,6 +15,8 @@ use std::{str::FromStr, time::UNIX_EPOCH}; use tokio::process::Command; use url::Url; +use crate::common_args::MovementArgs; + static SUZUKA_CONFIG: Lazy = Lazy::new(|| { let dot_movement = dot_movement::DotMovement::try_from_env().unwrap(); let config = dot_movement.try_get_config_from_json::().unwrap(); @@ -41,20 +43,25 @@ static NODE_URL: Lazy = Lazy::new(|| { Url::from_str(node_connection_url.as_str()).unwrap() }); -#[derive(Debug, clap::Args, Clone)] -pub struct MintArgs { - amount: u64, - recipient: String, -} - #[derive(Debug, Parser, Clone)] -#[clap(rename_all = "kebab-case", about = "Mints tokens with the core_resource account.")] -pub struct Mint { +#[clap( + rename_all = "kebab-case", + about = "Mint token to a recipient with the core_resource account." +)] +pub struct MintTo { #[clap(flatten)] - pub args: MintArgs, + pub movement_args: MovementArgs, + + /// The amount to send + #[clap(long, short)] + amount: u64, + + /// The address of the recipient + #[clap(long, short)] + recipient: String, } -impl Mint { +impl MintTo { pub async fn execute(&self) -> Result<(), anyhow::Error> { let rest_client = Client::new(NODE_URL.clone()); //let faucet_client = FaucetClient::new(FAUCET_URL.clone(), NODE_URL.clone()); @@ -102,7 +109,7 @@ impl Mint { let mint_core_args = vec![ TransactionArgument::Address(core_resources_account.address()), - TransactionArgument::U64(self.args.amount), + TransactionArgument::U64(self.amount), ]; let mint_core_script_payload = TransactionPayload::Script(Script::new(mint_core_code, vec![], mint_core_args)); diff --git a/networks/movement/movement-full-node/src/admin/ops/mod.rs b/networks/movement/movement-full-node/src/admin/ops/mod.rs index ace5e4ad1..a40b2173e 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mod.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mod.rs @@ -1,19 +1,19 @@ pub mod burn; -pub mod mint; +pub mod mint_to; use clap::Subcommand; #[derive(Subcommand, Debug)] #[clap(rename_all = "kebab-case", about = "Commands for bespoke network operations")] pub enum Ops { - Mint(mint::Mint), + MintTo(mint_to::MintTo), //Burn(burn::Burn), } impl Ops { pub async fn execute(&self) -> Result<(), anyhow::Error> { match self { - Ops::Mint(mint) => mint.execute().await, + Ops::MintTo(mint_to) => mint_to.execute().await, //Ops::Burn(burn) => burn.execute().await, } } From d3983b8d615acaa31cdaa3a349867cb1f884adf2 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 19:44:33 +0000 Subject: [PATCH 07/18] fix: get dot movement with MovementArgs method --- networks/movement/movement-full-node/src/admin/ops/mint_to.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networks/movement/movement-full-node/src/admin/ops/mint_to.rs b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs index 19efdbd9b..1cdba8c66 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mint_to.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs @@ -73,7 +73,7 @@ impl MintTo { .inner() .chain_id; - let dot_movement = dot_movement::DotMovement::try_from_env()?; + let dot_movement = self.movement_args.dot_movement()?; let config = dot_movement.try_get_config_from_json::()?; let raw_private_key = config From 7c5777d6d2ef4956168cd49a1ac2c0b8b574c890 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 19:48:53 +0000 Subject: [PATCH 08/18] fix: remove lazy init --- .../movement/movement-full-node/src/admin/ops/mint_to.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/networks/movement/movement-full-node/src/admin/ops/mint_to.rs b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs index 1cdba8c66..eb8a7f7b3 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mint_to.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs @@ -17,12 +17,6 @@ use url::Url; use crate::common_args::MovementArgs; -static SUZUKA_CONFIG: Lazy = Lazy::new(|| { - let dot_movement = dot_movement::DotMovement::try_from_env().unwrap(); - let config = dot_movement.try_get_config_from_json::().unwrap(); - config -}); - static NODE_URL: Lazy = Lazy::new(|| { let node_connection_address = SUZUKA_CONFIG .execution_config From 54f1a590c8f311d32f6eea8c92781239523abbf8 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 21:36:49 +0000 Subject: [PATCH 09/18] feat: add proc-compose for cli test --- .../src/admin/ops/mint_to.rs | 44 +++++-------------- .../process-compose.test-admin-cli.yml | 23 ++++++++++ 2 files changed, 34 insertions(+), 33 deletions(-) create mode 100644 process-compose/movement-full-node/process-compose.test-admin-cli.yml diff --git a/networks/movement/movement-full-node/src/admin/ops/mint_to.rs b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs index eb8a7f7b3..06d558790 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mint_to.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs @@ -1,42 +1,18 @@ #[allow(unused_imports)] use anyhow::Context; -use aptos_sdk::{ - rest_client::Client, - types::{ - transaction::{Script, TransactionArgument, TransactionPayload}, - LocalAccount, - }, +use aptos_sdk::types::{ + transaction::{Script, TransactionArgument, TransactionPayload}, + LocalAccount, }; use aptos_types::{chain_id::ChainId, test_helpers::transaction_test_helpers}; use clap::Parser; -use once_cell::sync::Lazy; +use movement_config::ops::aptos::rest_client::RestClientOperations; +use std::time::UNIX_EPOCH; use std::{fs, time::SystemTime}; -use std::{str::FromStr, time::UNIX_EPOCH}; use tokio::process::Command; -use url::Url; use crate::common_args::MovementArgs; -static NODE_URL: Lazy = Lazy::new(|| { - let node_connection_address = SUZUKA_CONFIG - .execution_config - .maptos_config - .client - .maptos_rest_connection_hostname - .clone(); - let node_connection_port = SUZUKA_CONFIG - .execution_config - .maptos_config - .client - .maptos_rest_connection_port - .clone(); - - let node_connection_url = - format!("http://{}:{}", node_connection_address, node_connection_port); - - Url::from_str(node_connection_url.as_str()).unwrap() -}); - #[derive(Debug, Parser, Clone)] #[clap( rename_all = "kebab-case", @@ -57,9 +33,14 @@ pub struct MintTo { impl MintTo { pub async fn execute(&self) -> Result<(), anyhow::Error> { - let rest_client = Client::new(NODE_URL.clone()); + let dot_movement = self.movement_args.dot_movement()?; + let config = dot_movement.try_get_config_from_json::()?; + + let rest_client = config.get_rest_client().await?; + //let faucet_client = FaucetClient::new(FAUCET_URL.clone(), NODE_URL.clone()); //let coin_client = CoinClient::new(&rest_client); + let chain_id = rest_client .get_index() .await @@ -67,9 +48,6 @@ impl MintTo { .inner() .chain_id; - let dot_movement = self.movement_args.dot_movement()?; - let config = dot_movement.try_get_config_from_json::()?; - let raw_private_key = config .execution_config .maptos_config diff --git a/process-compose/movement-full-node/process-compose.test-admin-cli.yml b/process-compose/movement-full-node/process-compose.test-admin-cli.yml new file mode 100644 index 000000000..8a708720c --- /dev/null +++ b/process-compose/movement-full-node/process-compose.test-admin-cli.yml @@ -0,0 +1,23 @@ +version: "3" + +environment: + +processes: + + setup: + environment: + - APTOS_ACCOUNT_WHITELIST=$DOT_MOVEMENT_PATH/default_signer_address_whitelist + - MAPTOS_PRIVATE_KEY=random + + movement-faucet: + command : | + movement-faucet-service run-simple --do-not-delegate + test-admin-cli: + command: | + ## The Cli command that an admin would run + cargo run cargo run -p movement-full-node admin ops mint-to --movement-path ".movement/" -a 42 -r "yo" + depends_on: + movement-full-node: + condition: process_healthy + movement-faucet: + condition: process_healthy From 3f47c43d9afd4ec0d0b48cf3f503125b8afe3de7 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 21:39:43 +0000 Subject: [PATCH 10/18] fix: proc-compose typo --- .../movement-full-node/process-compose.test-admin-cli.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process-compose/movement-full-node/process-compose.test-admin-cli.yml b/process-compose/movement-full-node/process-compose.test-admin-cli.yml index 8a708720c..2b98951af 100644 --- a/process-compose/movement-full-node/process-compose.test-admin-cli.yml +++ b/process-compose/movement-full-node/process-compose.test-admin-cli.yml @@ -15,7 +15,7 @@ processes: test-admin-cli: command: | ## The Cli command that an admin would run - cargo run cargo run -p movement-full-node admin ops mint-to --movement-path ".movement/" -a 42 -r "yo" + cargo run -p movement-full-node admin ops mint-to --movement-path ".movement/" -a 42 -r "yo" depends_on: movement-full-node: condition: process_healthy From 715c5b401bf2f69333c9410f2d2ef9659d657dca Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 21:55:34 +0000 Subject: [PATCH 11/18] update: remove faucet from proc-compose cli test --- .../movement-full-node/process-compose.test-admin-cli.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/process-compose/movement-full-node/process-compose.test-admin-cli.yml b/process-compose/movement-full-node/process-compose.test-admin-cli.yml index 2b98951af..84368e651 100644 --- a/process-compose/movement-full-node/process-compose.test-admin-cli.yml +++ b/process-compose/movement-full-node/process-compose.test-admin-cli.yml @@ -9,15 +9,11 @@ processes: - APTOS_ACCOUNT_WHITELIST=$DOT_MOVEMENT_PATH/default_signer_address_whitelist - MAPTOS_PRIVATE_KEY=random - movement-faucet: - command : | - movement-faucet-service run-simple --do-not-delegate - test-admin-cli: + test-admin-cli: command: | ## The Cli command that an admin would run cargo run -p movement-full-node admin ops mint-to --movement-path ".movement/" -a 42 -r "yo" depends_on: movement-full-node: condition: process_healthy - movement-faucet: - condition: process_healthy + From 57e2c907415f6fac5c2a9fb4354d31f01c6322fc Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 22:19:26 +0000 Subject: [PATCH 12/18] fix: recipient arg --- .../movement-full-node/src/admin/ops/mint_to.rs | 12 ++++++++---- .../process-compose.test-admin-cli.yml | 12 ++++++++---- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/networks/movement/movement-full-node/src/admin/ops/mint_to.rs b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs index 06d558790..8ae6e50ab 100644 --- a/networks/movement/movement-full-node/src/admin/ops/mint_to.rs +++ b/networks/movement/movement-full-node/src/admin/ops/mint_to.rs @@ -1,12 +1,14 @@ #[allow(unused_imports)] use anyhow::Context; use aptos_sdk::types::{ + account_address::AccountAddress, transaction::{Script, TransactionArgument, TransactionPayload}, LocalAccount, }; use aptos_types::{chain_id::ChainId, test_helpers::transaction_test_helpers}; use clap::Parser; use movement_config::ops::aptos::rest_client::RestClientOperations; +use std::str::FromStr; use std::time::UNIX_EPOCH; use std::{fs, time::SystemTime}; use tokio::process::Command; @@ -60,7 +62,6 @@ impl MintTo { let core_resources_account: LocalAccount = LocalAccount::from_private_key(&hex_string, 0)?; - tracing::info!("Created core resources account"); tracing::debug!("core_resources_account address: {}", core_resources_account.address()); // I know that we shouldn't compile on cmd execution, but we can optimise this later. @@ -69,7 +70,8 @@ impl MintTo { "move", "compile", "--package-dir", - "protocol-units/bridge/move-modules/build/bridge-modules/bytecode_scripts/mint_to.mv" + "protocol-units/bridge/move-modules/build/bridge-modules/bytecode_scripts/mint_to.mv", + "--skip-fetch-latest-git-deps", ]) .status() .await @@ -79,9 +81,11 @@ impl MintTo { "protocol-units/bridge/move-modules/build/bridge-modules/bytecode_scripts/mint_to.mv", )?; + let recipient = AccountAddress::from_str(&self.recipient)?; + let mint_core_args = vec![ - TransactionArgument::Address(core_resources_account.address()), - TransactionArgument::U64(self.amount), + TransactionArgument::Address(recipient), //recipient + TransactionArgument::U64(self.amount), // amount ]; let mint_core_script_payload = TransactionPayload::Script(Script::new(mint_core_code, vec![], mint_core_args)); diff --git a/process-compose/movement-full-node/process-compose.test-admin-cli.yml b/process-compose/movement-full-node/process-compose.test-admin-cli.yml index 84368e651..7c43cea85 100644 --- a/process-compose/movement-full-node/process-compose.test-admin-cli.yml +++ b/process-compose/movement-full-node/process-compose.test-admin-cli.yml @@ -9,11 +9,15 @@ processes: - APTOS_ACCOUNT_WHITELIST=$DOT_MOVEMENT_PATH/default_signer_address_whitelist - MAPTOS_PRIVATE_KEY=random - test-admin-cli: + movement-faucet: + command : | + movement-faucet-service run-simple --do-not-delegate + test-admin-cli: command: | - ## The Cli command that an admin would run - cargo run -p movement-full-node admin ops mint-to --movement-path ".movement/" -a 42 -r "yo" + ## The Cli command that an admin would run recipient is 0xdead address + cargo run -p movement-full-node admin ops mint-to --movement-path ".movement/" -a 42 -r "000000000000000000000000000000000000000000000000000000000000dead" depends_on: movement-full-node: condition: process_healthy - + movement-faucet: + condition: process_healthy From d287042cc7fa4bd3d6063062047e910f27292082 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 22:50:03 +0000 Subject: [PATCH 13/18] feat: create structure for cli e2e --- networks/movement/movement-client/Cargo.toml | 4 + .../movement-client/src/bin/e2e/admin_cli.rs | 124 ++++++++++++++++++ .../process-compose.test-admin-cli.yml | 2 +- 3 files changed, 129 insertions(+), 1 deletion(-) create mode 100644 networks/movement/movement-client/src/bin/e2e/admin_cli.rs diff --git a/networks/movement/movement-client/Cargo.toml b/networks/movement/movement-client/Cargo.toml index 5680c517d..ebf29f536 100644 --- a/networks/movement/movement-client/Cargo.toml +++ b/networks/movement/movement-client/Cargo.toml @@ -39,6 +39,10 @@ path = "src/bin/e2e/whitelist.rs" name = "movement-tests-e2e-ggp-gas-fee" path = "src/bin/e2e/ggp_gas_fee.rs" +[[bin]] +name = "movement-tests-e2e-admin-cli" +path = "src/bin/e2e/admin_cli.rs" + [dependencies] aptos-sdk = { workspace = true } diff --git a/networks/movement/movement-client/src/bin/e2e/admin_cli.rs b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs new file mode 100644 index 000000000..a95ef9164 --- /dev/null +++ b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs @@ -0,0 +1,124 @@ +use anyhow::Context; +use aptos_sdk::{ + coin_client::CoinClient, + crypto::{SigningKey, ValidCryptoMaterialStringExt}, + move_types::{ + identifier::Identifier, + language_storage::{ModuleId, TypeTag}, + }, + rest_client::{Client, FaucetClient, Transaction}, + transaction_builder::TransactionFactory, + types::{account_address::AccountAddress, transaction::TransactionPayload}, +}; +use aptos_types::{ + account_config::{RotationProofChallenge, CORE_CODE_ADDRESS}, + chain_id::ChainId, + transaction::EntryFunction, +}; +use movement_client::types::LocalAccount; +use once_cell::sync::Lazy; +use serde::{Deserialize, Serialize}; +use std::str::FromStr; +//use tokio::process::Command; +use tracing::info; +use tracing_subscriber::EnvFilter; +use url::Url; + +static SUZUKA_CONFIG: Lazy = Lazy::new(|| { + let dot_movement = dot_movement::DotMovement::try_from_env().unwrap(); + dot_movement.try_get_config_from_json::().unwrap() +}); + +static NODE_URL: Lazy = Lazy::new(|| { + let node_connection_address = SUZUKA_CONFIG + .execution_config + .maptos_config + .client + .maptos_rest_connection_hostname + .clone(); + let node_connection_port = + SUZUKA_CONFIG.execution_config.maptos_config.client.maptos_rest_connection_port; + let node_connection_url = + format!("http://{}:{}", node_connection_address, node_connection_port); + Url::from_str(&node_connection_url).unwrap() +}); + +static FAUCET_URL: Lazy = Lazy::new(|| { + let faucet_listen_address = SUZUKA_CONFIG + .execution_config + .maptos_config + .client + .maptos_faucet_rest_connection_hostname + .clone(); + let faucet_listen_port = SUZUKA_CONFIG + .execution_config + .maptos_config + .client + .maptos_faucet_rest_connection_port; + + let faucet_listen_url = format!("http://{}:{}", faucet_listen_address, faucet_listen_port); + + Url::from_str(faucet_listen_url.as_str()).unwrap() +}); + +#[tokio::main] +async fn main() -> Result<(), anyhow::Error> { + tracing_subscriber::fmt() + .with_env_filter( + EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new("info")), + ) + .init(); + + // Initialize clients + let rest_client = Client::new(NODE_URL.clone()); + let faucet_client = FaucetClient::new(FAUCET_URL.clone(), NODE_URL.clone()); + let coin_client = CoinClient::new(&rest_client); + + // Load core resource account + let mut core_resources_account = LocalAccount::from_private_key( + SUZUKA_CONFIG + .execution_config + .maptos_config + .chain + .maptos_private_key + .to_encoded_string()? + .as_str(), + 0, + )?; + info!( + "Core Resources Account keypairs: {:?}, {:?}", + core_resources_account.private_key(), + core_resources_account.public_key() + ); + info!("Core Resources Account address: {}", core_resources_account.address()); + + // Fund the account + faucet_client.fund(core_resources_account.address(), 100_000_000_000).await?; + + let state = rest_client + .get_ledger_information() + .await + .context("Failed in getting chain id")? + .into_inner(); + + // Generate recipient account + let recipient = LocalAccount::generate(&mut rand::rngs::OsRng); + + faucet_client.fund(recipient.address(), 100_000_000_000).await?; + + let recipient_bal = coin_client + .get_account_balance(&recipient.address()) + .await + .context("Failed to get recipient's account balance")?; + + let core_resource_bal = coin_client + .get_account_balance(&core_resources_account.address()) + .await + .context("Failed to get core resources account balance")?; + + info!("Recipient's balance: {:?}", recipient_bal); + info!("Core Resources Account balance: {:?}", core_resource_bal); + + Ok(()) +} + diff --git a/process-compose/movement-full-node/process-compose.test-admin-cli.yml b/process-compose/movement-full-node/process-compose.test-admin-cli.yml index 7c43cea85..36ab6b266 100644 --- a/process-compose/movement-full-node/process-compose.test-admin-cli.yml +++ b/process-compose/movement-full-node/process-compose.test-admin-cli.yml @@ -6,7 +6,6 @@ processes: setup: environment: - - APTOS_ACCOUNT_WHITELIST=$DOT_MOVEMENT_PATH/default_signer_address_whitelist - MAPTOS_PRIVATE_KEY=random movement-faucet: @@ -15,6 +14,7 @@ processes: test-admin-cli: command: | ## The Cli command that an admin would run recipient is 0xdead address + movement account fund-with-faucet && \ cargo run -p movement-full-node admin ops mint-to --movement-path ".movement/" -a 42 -r "000000000000000000000000000000000000000000000000000000000000dead" depends_on: movement-full-node: From e59aad6c37d438c8dc774ea0212e4e044e5a290a Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 22:52:53 +0000 Subject: [PATCH 14/18] fix: remove unused --- .../movement-client/src/bin/e2e/admin_cli.rs | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/networks/movement/movement-client/src/bin/e2e/admin_cli.rs b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs index a95ef9164..235b5f1fe 100644 --- a/networks/movement/movement-client/src/bin/e2e/admin_cli.rs +++ b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs @@ -1,23 +1,10 @@ use anyhow::Context; use aptos_sdk::{ coin_client::CoinClient, - crypto::{SigningKey, ValidCryptoMaterialStringExt}, - move_types::{ - identifier::Identifier, - language_storage::{ModuleId, TypeTag}, - }, - rest_client::{Client, FaucetClient, Transaction}, - transaction_builder::TransactionFactory, - types::{account_address::AccountAddress, transaction::TransactionPayload}, -}; -use aptos_types::{ - account_config::{RotationProofChallenge, CORE_CODE_ADDRESS}, - chain_id::ChainId, - transaction::EntryFunction, + rest_client::{Client, FaucetClient}, }; use movement_client::types::LocalAccount; use once_cell::sync::Lazy; -use serde::{Deserialize, Serialize}; use std::str::FromStr; //use tokio::process::Command; use tracing::info; @@ -61,6 +48,8 @@ static FAUCET_URL: Lazy = Lazy::new(|| { Url::from_str(faucet_listen_url.as_str()).unwrap() }); +const DEAD_ADDRESS: &str = "000000000000000000000000000000000000000000000000000000000000dead"; + #[tokio::main] async fn main() -> Result<(), anyhow::Error> { tracing_subscriber::fmt() From 82cc54a2934ffe56c8873113ac599d509e645279 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 23:27:07 +0000 Subject: [PATCH 15/18] fix: cli test --- .../movement-client/src/bin/e2e/admin_cli.rs | 76 ++++++++----------- .../process-compose.test-admin-cli.yml | 1 + 2 files changed, 34 insertions(+), 43 deletions(-) diff --git a/networks/movement/movement-client/src/bin/e2e/admin_cli.rs b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs index 235b5f1fe..421798e1a 100644 --- a/networks/movement/movement-client/src/bin/e2e/admin_cli.rs +++ b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs @@ -1,11 +1,13 @@ use anyhow::Context; use aptos_sdk::{ coin_client::CoinClient, + crypto::ValidCryptoMaterialStringExt, rest_client::{Client, FaucetClient}, }; use movement_client::types::LocalAccount; use once_cell::sync::Lazy; use std::str::FromStr; +use tokio::process::Command; //use tokio::process::Command; use tracing::info; use tracing_subscriber::EnvFilter; @@ -63,51 +65,39 @@ async fn main() -> Result<(), anyhow::Error> { let faucet_client = FaucetClient::new(FAUCET_URL.clone(), NODE_URL.clone()); let coin_client = CoinClient::new(&rest_client); - // Load core resource account - let mut core_resources_account = LocalAccount::from_private_key( - SUZUKA_CONFIG - .execution_config - .maptos_config - .chain - .maptos_private_key - .to_encoded_string()? - .as_str(), - 0, - )?; - info!( - "Core Resources Account keypairs: {:?}, {:?}", - core_resources_account.private_key(), - core_resources_account.public_key() - ); - info!("Core Resources Account address: {}", core_resources_account.address()); - - // Fund the account - faucet_client.fund(core_resources_account.address(), 100_000_000_000).await?; - - let state = rest_client - .get_ledger_information() - .await - .context("Failed in getting chain id")? - .into_inner(); - - // Generate recipient account - let recipient = LocalAccount::generate(&mut rand::rngs::OsRng); - - faucet_client.fund(recipient.address(), 100_000_000_000).await?; - - let recipient_bal = coin_client - .get_account_balance(&recipient.address()) - .await - .context("Failed to get recipient's account balance")?; - - let core_resource_bal = coin_client - .get_account_balance(&core_resources_account.address()) + let core_resource_pk = SUZUKA_CONFIG + .execution_config + .maptos_config + .chain + .maptos_private_key_signer_identifier + .try_raw_private_key()?; + + let mut core_resources_account = LocalAccount::from_private_key(core_resource_pk, 0)?; + + let output = Command::new("cargo") + .args(&[ + "run", + "-p", + "movement-full-node", + "admin", + "ops", + "mint-to", + "--movement-path", + ".movement/", + "--account", + "42", + "--recipient", + DEAD_ADDRESS, + ]) + .output() .await - .context("Failed to get core resources account balance")?; + .expect("Failed to execute command"); - info!("Recipient's balance: {:?}", recipient_bal); - info!("Core Resources Account balance: {:?}", core_resource_bal); + if output.status.success() { + println!("Command executed successfully:\n{}", String::from_utf8_lossy(&output.stdout)); + } else { + eprintln!("Command failed:\n{}", String::from_utf8_lossy(&output.stderr)); + } Ok(()) } - diff --git a/process-compose/movement-full-node/process-compose.test-admin-cli.yml b/process-compose/movement-full-node/process-compose.test-admin-cli.yml index 36ab6b266..dd198c041 100644 --- a/process-compose/movement-full-node/process-compose.test-admin-cli.yml +++ b/process-compose/movement-full-node/process-compose.test-admin-cli.yml @@ -14,6 +14,7 @@ processes: test-admin-cli: command: | ## The Cli command that an admin would run recipient is 0xdead address + movement init movement account fund-with-faucet && \ cargo run -p movement-full-node admin ops mint-to --movement-path ".movement/" -a 42 -r "000000000000000000000000000000000000000000000000000000000000dead" depends_on: From 376b1e6e4728c58b7451a8a728d7117744b408fb Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 23:36:00 +0000 Subject: [PATCH 16/18] fix: core_resource get for cli e2e --- .../movement-client/src/bin/e2e/admin_cli.rs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/networks/movement/movement-client/src/bin/e2e/admin_cli.rs b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs index 421798e1a..1f6dc6f3a 100644 --- a/networks/movement/movement-client/src/bin/e2e/admin_cli.rs +++ b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs @@ -1,15 +1,16 @@ use anyhow::Context; use aptos_sdk::{ coin_client::CoinClient, - crypto::ValidCryptoMaterialStringExt, rest_client::{Client, FaucetClient}, }; +use movement_client::crypto::ed25519::Ed25519PrivateKey; +use movement_client::crypto::ValidCryptoMaterialStringExt; use movement_client::types::LocalAccount; use once_cell::sync::Lazy; use std::str::FromStr; use tokio::process::Command; //use tokio::process::Command; -use tracing::info; +//use tracing::info; use tracing_subscriber::EnvFilter; use url::Url; @@ -65,14 +66,21 @@ async fn main() -> Result<(), anyhow::Error> { let faucet_client = FaucetClient::new(FAUCET_URL.clone(), NODE_URL.clone()); let coin_client = CoinClient::new(&rest_client); - let core_resource_pk = SUZUKA_CONFIG + let raw_pk = SUZUKA_CONFIG .execution_config .maptos_config .chain .maptos_private_key_signer_identifier .try_raw_private_key()?; - let mut core_resources_account = LocalAccount::from_private_key(core_resource_pk, 0)?; + let private_key = Ed25519PrivateKey::try_from(raw_pk.as_slice())?; + let core_resources_account = + LocalAccount::from_private_key(private_key.to_encoded_string()?.as_str(), 0)?; + + faucet_client + .fund(core_resources_account.address(), 100_000_000_000) + .await + .context("Failed to fund core resourece account")?; let output = Command::new("cargo") .args(&[ From d136b6630383740b140aaaf8da1163eb17411534 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Tue, 4 Feb 2025 23:38:54 +0000 Subject: [PATCH 17/18] update: proc compose to run e2e cli bin --- .../process-compose.test-admin-cli.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/process-compose/movement-full-node/process-compose.test-admin-cli.yml b/process-compose/movement-full-node/process-compose.test-admin-cli.yml index dd198c041..d4e12393b 100644 --- a/process-compose/movement-full-node/process-compose.test-admin-cli.yml +++ b/process-compose/movement-full-node/process-compose.test-admin-cli.yml @@ -6,17 +6,15 @@ processes: setup: environment: + - APTOS_ACCOUNT_WHITELIST=$DOT_MOVEMENT_PATH/default_signer_address_whitelist - MAPTOS_PRIVATE_KEY=random movement-faucet: command : | movement-faucet-service run-simple --do-not-delegate - test-admin-cli: - command: | - ## The Cli command that an admin would run recipient is 0xdead address - movement init - movement account fund-with-faucet && \ - cargo run -p movement-full-node admin ops mint-to --movement-path ".movement/" -a 42 -r "000000000000000000000000000000000000000000000000000000000000dead" + test-admin-cli: + command : | + cargo run --bin movement-tests-admin-cli depends_on: movement-full-node: condition: process_healthy From 2d7b278bc7a30ae008e6bc85d071f16e25722c2b Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Wed, 5 Feb 2025 00:11:18 +0000 Subject: [PATCH 18/18] fix: remove wrongly added whitelist --- networks/movement/movement-client/src/bin/e2e/admin_cli.rs | 2 +- .../movement-full-node/process-compose.test-admin-cli.yml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/networks/movement/movement-client/src/bin/e2e/admin_cli.rs b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs index 1f6dc6f3a..299ad149c 100644 --- a/networks/movement/movement-client/src/bin/e2e/admin_cli.rs +++ b/networks/movement/movement-client/src/bin/e2e/admin_cli.rs @@ -92,7 +92,7 @@ async fn main() -> Result<(), anyhow::Error> { "mint-to", "--movement-path", ".movement/", - "--account", + "--amount", "42", "--recipient", DEAD_ADDRESS, diff --git a/process-compose/movement-full-node/process-compose.test-admin-cli.yml b/process-compose/movement-full-node/process-compose.test-admin-cli.yml index d4e12393b..d02f0e9fb 100644 --- a/process-compose/movement-full-node/process-compose.test-admin-cli.yml +++ b/process-compose/movement-full-node/process-compose.test-admin-cli.yml @@ -6,7 +6,6 @@ processes: setup: environment: - - APTOS_ACCOUNT_WHITELIST=$DOT_MOVEMENT_PATH/default_signer_address_whitelist - MAPTOS_PRIVATE_KEY=random movement-faucet: @@ -14,7 +13,7 @@ processes: movement-faucet-service run-simple --do-not-delegate test-admin-cli: command : | - cargo run --bin movement-tests-admin-cli + cargo run --bin movement-tests-e2e-admin-cli depends_on: movement-full-node: condition: process_healthy