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

Added batch address/scripthash POST call #20

Open
wants to merge 1 commit into
base: new-index
Choose a base branch
from
Open
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
32 changes: 32 additions & 0 deletions src/rest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -660,6 +660,38 @@ fn handle_request(

json_response(prepare_txs(txs, query, config), ttl)
}

// Batch Address call to avoid spamming with multiple address GET calls
(&Method::POST, Some(script_type @ &"address"), None, None, None, None)
| (&Method::POST, Some(script_type @ &"scripthash"), None, None, None, None) => {
#[derive(Serialize, Deserialize)]
struct Address {
address: String,
chain_stats: crate::new_index::schema::ScriptStats,
mempool_stats: crate::new_index::schema::ScriptStats
}

let mut v :Vec<Address> = Vec::new();

let s = String::from_utf8(body.to_vec())?;

for address in s.split(","){
let script_hash = to_scripthash(script_type, address, config.network_type)?;
let stats = query.stats(&script_hash[..]);
let address_obj = Address {
address: String::from(address),
chain_stats: stats.0,
mempool_stats: stats.1
};
v.push(address_obj)
}

json_response(
json!(v),
TTL_SHORT,
)
}

(&Method::GET, Some(script_type @ &"address"), Some(script_str), None, None, None)
| (&Method::GET, Some(script_type @ &"scripthash"), Some(script_str), None, None, None) => {
let script_hash = to_scripthash(script_type, script_str, config.network_type)?;
Expand Down