changed directories for the json read
diff --git a/src/transaction.rs b/src/transaction.rs
index 793fe88..ee3bdc6 100644
--- a/src/transaction.rs
+++ b/src/transaction.rs
@@ -37,7 +37,7 @@
     // let response = reqwest::get(&*_api_url).await?;
     // let transactions: Vec<T> = response.json().await?;
 
-    let json_array = get_json_from_file("/Users/prashansagoel/resdb_rust_sdk/json_data/transactions.json").await?;
+    let json_array = get_json_from_file("/Users/dhruv/Desktop/Repositories/resdb/resdb_rust_sdk/json_data/transactions.json").await?;
     let mut transactions = Vec::new();
 
     for json_obj in json_array{
@@ -58,7 +58,7 @@
     // let response = reqwest::get(&*_api_url).await?;
     // let transactions: Vec<T> = response.json().await?;
 
-    let json_array = get_json_from_file("/Users/prashansagoel/resdb_rust_sdk/json_data/transactions.json").await?;
+    let json_array = get_json_from_file("/Users/dhruv/Desktop/Repositories/resdb/resdb_rust_sdk/json_data/transactions.json").await?;
     // let mut transactions = Vec::new();
 
     // Deserialize JSON into a vector of HashMaps
@@ -77,7 +77,7 @@
     // let response = reqwest::get(endpoint_url).await?;
     // let transactions: Vec<T> = response.json().await?;
 
-    let json_array = get_json_from_file("/Users/prashansagoel/resdb_rust_sdk/json_data/transactions:id.json").await?;
+    let json_array = get_json_from_file("/Users/dhruv/Desktop/Repositories/resdb/resdb_rust_sdk/json_data/transactions:id.json").await?;
 
     // Check if there's a transaction with the specified ID
     if let Some(json_obj) = json_array.into_iter().next() {
@@ -100,7 +100,7 @@
     // let response = reqwest::get(&*_api_url).await?;
     // let transactions: Vec<T> = response.json().await?;
 
-    let json_array = get_json_from_file("/Users/prashansagoel/resdb_rust_sdk/json_data/transactions:id.json").await?;
+    let json_array = get_json_from_file("/Users/dhruv/Desktop/Repositories/resdb/resdb_rust_sdk/json_data/transactions:id.json").await?;
     // let mut transactions = Vec::new();
 
     // Deserialize JSON into a vector of HashMaps
diff --git a/testsdk/Cargo.toml b/testsdk/Cargo.toml
index 64b63a5..7fddb53 100644
--- a/testsdk/Cargo.toml
+++ b/testsdk/Cargo.toml
@@ -6,7 +6,7 @@
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-resdb_rust_sdk = {path = "/Users/prashansagoel/resdb_rust_sdk/"}
+resdb_rust_sdk = {path = "/Users/dhruv/Desktop/Repositories/resdb/resdb_rust_sdk"}
 tokio = { version = "1", features = ["full"] }
 serde = { version = "1.0", features = ["derive"] }
 serde_json = "1.0"
\ No newline at end of file