Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

renamed interact-rs folder into interactor #1674

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ multiversx_sc::derive_imports!();
// cargo run snippets
// Add --overwrite if you want to overwrite existing snippets

// Additionally, we also have to update the interact-rs snippets manually to add relative paths:
// Additionally, we also have to update the interactor snippets manually to add relative paths:
// [dependencies.multiversx-sc-snippets]
// version = "0.50.3"
// path = "../../../../framework/snippets"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ use crate::version_history;
static SNIPPETS_SOURCE_FILE_NAME: &str = "interactor_main.rs";
static SC_CONFIG_PATH: &str = "../sc-config.toml";
static FULL_PROXY_ENTRY: &str = r#"[[proxy]]
path = "interact-rs/src/proxy.rs"
path = "interactor/src/proxy.rs"
"#;
static PROXY_PATH: &str = "interact-rs/src/proxy.rs";
static PROXY_PATH: &str = "interactor/src/proxy.rs";

pub(crate) fn create_snippets_folder(snippets_folder_path: &str) {
// returns error if folder already exists, so we ignore the result
Expand Down
2 changes: 1 addition & 1 deletion framework/meta-lib/src/contract/meta_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use super::{
};

const OUTPUT_RELATIVE_PATH: &str = "../output";
const SNIPPETS_RELATIVE_PATH: &str = "../interact-rs";
const SNIPPETS_RELATIVE_PATH: &str = "../interactor";
const WASM_LIB_PATH: &str = "../wasm/src/lib.rs";
const WASM_NO_MANAGED_EI: &str = "wasm-no-managed-ei";
const WASM_NO_MANAGED_EI_LIB_PATH: &str = "../wasm-no-managed-ei/src/lib.rs";
Expand Down
Loading