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
I want to create an offline transaction, and sign it on an offline computer using npm library elliptic.
I can create transactions from one input address to multiple output addresses using your library, what i want is to have more than 1 different input addresses, and create many-input/many-output transactions such as in Bitcoin.
Is there way for creating a data to sign, and somehow sign it using the private keys of 2 different addresses?
If so, how can I do it?
thanks, Dante
The text was updated successfully, but these errors were encountered:
Hey @dev-dantealighieri ! I hope you are well on all 9 circles of hell, because current one 10th ( yeah, times changing)
To build in transaction in the CSL I recommend you TransactionBuilder type. It has set_inputs that accepts instance of TxInputsBuilder and by TxInputsBuilder you can specify any number of inputs, till it reaches transaction size limit
Hi,
I want to create an offline transaction, and sign it on an offline computer using npm library
elliptic
.I can create transactions from one input address to multiple output addresses using your library, what i want is to have more than 1 different input addresses, and create
many-input/many-output
transactions such as in Bitcoin.Is there way for creating a
data to sign
, and somehow sign it using the private keys of 2 different addresses?If so, how can I do it?
thanks, Dante
The text was updated successfully, but these errors were encountered: