Files
rippled/src/ripple/protocol
seelabs 122a5cdf89 Add V2 implementation of payments:
Add a new algorithm for finding the liquidity in a payment path. There
is still a reverse and forward pass, but the forward pass starts at the
limiting step rather than the payment source. This insures the limiting
step is completely consumed rather than potentially leaving a 'dust'
amount in the forward pass.

Each step in a payment is either a book step, a direct step (account to
account step), or an xrp endpoint. Each step in the existing
implementation is a triple, where each element in the triple is either
an account of a book, for a total of eight step types.

Since accounts are considered in pairs, rather than triples, transfer
fees are handled differently. In V1 of payments, in the payment path
A -> gw ->B, if A redeems to gw, and gw issues to B, a transfer fee is
changed. In the new code, a transfer fee is changed even if A issues to
gw.
2016-03-17 17:34:37 -04:00
..
2016-03-17 17:34:37 -04:00
2016-03-17 17:34:37 -04:00
2016-01-12 18:45:36 -08:00
2015-10-06 16:03:38 -07:00
2015-10-13 17:15:45 -07:00
2016-03-17 17:34:37 -04:00
2015-10-13 17:15:45 -07:00
2016-01-12 18:45:36 -08:00
2016-03-17 17:34:37 -04:00
2015-07-31 17:39:03 -07:00
2016-01-12 18:45:36 -08:00
2016-03-17 17:34:37 -04:00
2015-10-13 17:15:45 -07:00
2016-01-12 18:45:36 -08:00
2016-01-12 18:45:36 -08:00
2016-02-01 21:06:56 -08:00
2015-10-13 17:15:45 -07:00
2015-07-31 17:31:18 -07:00
2015-10-20 11:35:24 -04:00
2015-07-29 11:56:05 -04:00
2016-03-17 17:31:47 -04:00
2015-07-31 17:39:03 -07:00
2015-05-06 13:11:24 -07:00
2016-03-17 17:34:37 -04:00
2016-01-12 18:45:36 -08:00
2016-01-12 18:45:36 -08:00
2015-07-31 17:39:03 -07:00
2015-06-25 09:05:06 -07:00
2015-06-25 09:05:06 -07:00
2016-03-17 17:34:37 -04:00

protocol

Classes and functions for handling data and values associated with the Ripple protocol.

Serialized Objects

In ripple objects transmitted over the network must be serialized into a canonical format. The prefix "ST" refers to classes that deal with the serialized format of ripple objects.

The term "Tx" or "tx" is an abbreviation for "Transaction", a commonly occurring object type.