Guys, is it just me or the new interface doesn't allow us to send money from a single bitcoin address within the wallet?
This functionality was essential to me when there was the old interface, I was able to choose a specific address to send BTC from using
'Advanced send'.
Now I only found this functionality described at
Blockchain Wallet API v3 spec:
http://localhost:3000/merchant/$guid/payment?password=$main_password&second_password=$second_password&to=$address&amount=$amount&from=$from&fee=$fee
$main_password Your Main Blockchain Wallet password
$second_password Your second Blockchain Wallet password if double encryption is enabled.
$to Recipient Bitcoin Address.
$amount Amount to send in satoshi.
$from Send from a specific Bitcoin Address (Optional) $fee Transaction fee value in satoshi (Must be greater than default fee) (Optional)
Ok I've installed the software and tried it, making an outgoing transaction using 'from' parameter results into an error:
Error signing and pushing transaction
[timestamp] - error: ERR_PUSHT
Now I searched some githubs and a developer
jtormey tells that 'from' is now used for xKEY Pub just to specify the wallet you want to send from, not the bitcoin address.
Source:
https://github.com/blockchain/service-my-wallet-v3/issues/105#issuecomment-218461807[...]
To spend from the xpub used with our receive payments API, you need to include from=[YOUR_XPUB].
There isn't a way to spend from a specific receive address.
[...]
So, the quoted description of a 'from' parameter from their site is a typo or just outdated info appeared due to copy/paste?