dgarage / NBXplorer

NBitcoin Explorer
MIT License
319 stars 212 forks source link

Feature request: untrack an address #318

Open ldrihem opened 3 years ago

ldrihem commented 3 years ago

I'd like to have the option to untrack a specific address or derivation scheme.

I have the following APIs to track: HTTP POST v1/cryptos/{cryptoCode}/derivations/{derivationScheme} HTTP POST v1/cryptos/{cryptoCode}/addresses/{address}

I would like to have the following APIs to untrack: HTTP DELETE v1/cryptos/{cryptoCode}/derivations/{derivationScheme} HTTP DELETE v1/cryptos/{cryptoCode}/addresses/{address}

NicolasDorier commented 3 years ago

Can I ask you the reason? Untracking a derivationScheme might not be so easy, but untracking address seems ok.

ldrihem commented 3 years ago

I want to be able to monitor addresses provided by a crypto exchange for single transactions and stop monitoring them once the transaction is complete. I'm talking about standalone addresses, not derivationScheme

Thanks!