Difference between revisions of "Transaction Construction Algorithm (voting pools)"

From Open Transactions
Jump to navigation Jump to search
m (Add oversize transaction image)
 
(35 intermediate revisions by 3 users not shown)
Line 1: Line 1:
==Introduction==
+
#REDIRECT [[:Category:Transaction Construction Algorithm (voting pools)]]
 
 
In order to avoid an expensive and error-prone consensus process, it is mandatory for wallets to be able to construct withdrawal transactions in a deterministic manner, assuming they are given the withdrawal requests in a deterministic order. Once this is accomplished, then it only becomes necessary for wallets to share signatures among themselves because they know they all signed the exact same bitcoin transaction.
 
 
 
==Procedure==
 
 
 
===Overview===
 
 
 
[[File:Transaction_Construction_Algorithm_-_Overview.png|500px|right|thumb]]
 
 
 
====Initial Conditions====
 
 
 
The [[startwithdrawal]] API call has been received by the wallet, and all the arguments have been checked for errors.
 
 
 
====Sequence====
 
 
 
The basic flow of the procedure is:
 
 
 
# Gather accounting information from the API call arguments
 
# Validate and sort the output list
 
# Start a new transactions
 
# Add outputs to the transaction until either all outputs are added or all inputs are used.
 
# Make sure all generated transactions are ready for signing.
 
# Create a list of all signatures which the wallet is capable of generating.
 
# Create a status list containing the deposition of every output the caller specified.
 
# Return the status list and signature list to the caller.
 
 
 
Each step in this chart is more fully described below.
 
 
 
{{clear}}
 
<hr>
 
 
 
===Preparation===
 
 
 
[[File:Transaction_Construction_Algorithm_-_Preparation.png|175px|right|thumb]]
 
 
 
====Initial Conditions====
 
 
 
The [[startwithdrawal]] API call has been received by the wallet, and all the arguments have been checked for errors.
 
 
 
====Sequence====
 
 
 
# The algorithm must keep track of the next change address to be used. The initial value is supplied as the <code>[[Startwithdrawal#Arguments|changestart]]</code> argument. Any time a change output is allocated, the index value of the [[address identifier]] is incremented, and if a change output is remove from a transaction the index value is decremented. The final value will be returned to the caller as the <code>[[Withdrawal status|nextchangestart]]</code> value in the [[Withdrawal status| withdrawal status list]].
 
# Prepare an empty list for holding transactions as they are constructed and before they are signed.
 
# Prepare an empty array to hold the transaction signatures which will be returned to the caller as the <code>[[siglist| signatures]]</code> value.
 
# Prepare an <code>withdrawal status</code> object.
 
## <code>roundID</code>: copied from <code>roundID</code> argument
 
## <code>nextinputstart</code>: nil
 
## <code>nextchangestart</code>: nil
 
## <code>fees</code>: 0
 
## <code>outputs</code>: should contain an entry for every output passed:
 
### <code>outBailmentID</code>: copied from <code>outBailmentID</code> entry in <code>outputs</code> argument
 
### <code>status</code>: empty string
 
### <code>transactions</code>: nil
 
 
 
{{clear}}
 
<hr>
 
===Output List Initialization===
 
 
 
[[File:Transaction_Construction_Algorithm_-_Output List Initialization.png|350px|right|thumb]]
 
 
 
====Initial Conditions====
 
 
 
The [[startwithdrawal]] API call has been received by the wallet, and all the arguments have been checked for errors.
 
 
 
====Sequence====
 
 
 
# Pass the <code>inputstart</code>, <code>inputstop</code>, and <code>dustthreshold</code> parameters to the [[Input Selection Algorithm (voting pools)|input selection algorithm]] to obtain an ordered list of eligible inputs.
 
# Perform a first pass check to determine if the requested outputs exceed the size of the eligible inputs. Note that this check is only definitive in the case where the output sum is greater than the input sum. At this stage of the algorithm, the input sum exceeding the output sum does not prove that all outputs will be successfully created.
 
## Take the sum of both lists.
 
## If the sum of the outputs exceeds the sum of the inputs, remove outputs in descending size order until this is no longer true. Note this may result in the output list being an empty set.
 
# If the output list is non-empty, sort it by <code>outBailmentID</code>
 
# Move both the input lists and outputs lists into separate stacks by pushing them in reverse list order. The first input and first output should be on the top of their respective stacks.
 
 
 
{{clear}}
 
<hr>
 
===Initialize New Transaction===
 
 
 
[[File:Transaction_Construction_Algorithm_-_Initialize New Transaction.png|175px|right|thumb]]
 
 
 
====Initial Conditions====
 
 
 
There are no pending transactions to in the process of being constructed, either because this is the first transaction of the algorithm or because a previous pending transaction has been moved to the finished transaction list.
 
 
 
The input stack contains at least one input.
 
 
 
The output stack contains at least one output.
 
 
 
====Sequence====
 
 
 
# Create a minimal transaction skeleton with a header and one change output.
 
 
 
After creating the transaction skeleton, and after any action which alters it, the new transaction size (bytes) and minimum required transaction fee must be recalculated.
 
 
 
{{clear}}
 
<hr>
 
===Add Next Output===
 
 
 
[[File:Transaction_Construction_Algorithm_-_Add Next Output.png|500px|right|thumb]]
 
 
 
====Initial Conditions====
 
 
 
The output stack contains at least one output.
 
 
 
There is a transaction in progress which is ready to accept new outputs. This transaction is either empty or it contains 1 or more outputs.
 
 
 
If the transaction already contains outputs, then it also contains sufficient inputs to cover those outputs and any required transaction fees without exceeding size limits. This is because it must have already successfully passed through this procedure before.
 
 
 
====Sequence====
 
 
 
# Validate the output address. If it is invalid, update the withdrawal status list and from this procedure. If it is valid, add it to the transaction
 
# Check that the transaction does not exceed size limits. If it does, follow the [[Transaction Construction Algorithm (voting pools)#Oversize Transaction|Oversize Transaction]] procedure.
 
# Compare the sum of the inputs to the sum of the inputs and required transaction fee to determine if more inputs are required.
 
## If no more inputs are required, then update the status for the output's associated outBailmentID to "success". The rest of the status data for this outBailmentID will be filled in at a later stage of the algorithm.
 
# If more inputs are required, then check to see if any more are available.
 
## According to the initial conditions, the input stack can not be empty on the first run through this loop.
 
## If the input stack is empty at this point, then the output has added at least one input beyond what was needed to satisfy the prior output (if there was a prior output)
 
## If the input stack is empty, then the output can only be partially fulfilled. Follow the [[Transaction Construction Algorithm (voting pools)#Split Output|Split Output]] procedure.
 
# Add the next input from the stack, and continue the loop at step 2.
 
 
 
The loop will continue until either:
 
 
 
* The transaction contains sufficient input value to satisfy the output plus transaction fees
 
* The transaction exceeds size limits
 
* There is not enough input value, but no more inputs are available
 
 
 
{{clear}}
 
<hr>
 
===Finalize Transaction===
 
 
 
[[File:Transaction Construction Algorithm - Finalize Transaction.png|500px|right|thumb]]
 
 
 
{{clear}}
 
<hr>
 
===Update Signatures===
 
 
 
[[File:Transaction Construction Algorithm - Update Signatures.png|500px|right|thumb]]
 
 
 
{{clear}}
 
<hr>
 
===Update Status===
 
 
 
[[File:Transaction Construction Algorithm - Update Status.png|500px|right|thumb]]
 
 
 
{{clear}}
 
<hr>
 
===Oversize Transaction===
 
 
 
[[File:Transaction Construction Algorithm - Oversize Transaction.png|500px|right|thumb]]
 
 
 
[[Category:Voting Pool Technical Specifications]]
 

Latest revision as of 14:55, 22 October 2014