You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The minimal responsability of the server is just to construct the data/outputs, and to order the inputs if necessary. We want to remove utxo_locks, etc. And we'll need to continue supporting the current code as v1 ofc.
We should support having the node fetch the pubkey and unspent_set from an electrs service determined by --electrs-url (defaulting to api.counterparty.io:3000); if the user passes those params in during tx construction, then no connection is made; if a user sets --electrs-url='', then those params are required for tx construction. (We could also allow fetching from a local bitcoind instance for cases where the source are in bitcoind's wallet and that service is tracking the necessary UTXOs.
The text was updated successfully, but these errors were encountered:
The minimal responsability of the server is just to construct the data/outputs, and to order the inputs if necessary. We want to remove
utxo_locks
, etc. And we'll need to continue supporting the current code as v1 ofc.We should support having the node fetch the
pubkey
andunspent_set
from an electrs service determined by--electrs-url
(defaulting toapi.counterparty.io:3000
); if the user passes those params in during tx construction, then no connection is made; if a user sets--electrs-url=''
, then those params are required for tx construction. (We could also allow fetching from a local bitcoind instance for cases where thesource
are in bitcoind's wallet and that service is tracking the necessary UTXOs.The text was updated successfully, but these errors were encountered: