Under the Hood — SMP

In a previous post I explained how peers in Swaptacular’s network use the STOMP message transport protocol, to send Swaptacular Messaging Protocol messages to each other.

In this post will try to explain how the Swaptacular Messaging Protocol (SMP) works.

In a nutshell, SMP specifies how currency holders can open and close accounts in different currencies, and how they can make and receive payments from/to these accounts. So, the basic idea is quite simple, but there are a lot of nitty-gritty details which complicate the matter. Here, I will concentrate on the big picture, but you can always check the protocol specification for the details.

Debtor and creditor IDs

In SMP, every account is identified by a (debtor_id, creditor_id) number pair. Both debtor IDs, and creditor IDs are 64-bit integer numbers (that is: numbers with up to 20 digits). Every Swaptacular currency issuer (aka debtor) receives a globally unique number — its debtor ID. This works by arranging accounting authority nodes to be responsible for pre-allocated, non-overlapping intervals of debtor IDs.

While debtor IDs are globally unique, creditor IDs are not. Every accounting authority node is free to decide which interval of creditor IDs to allocate to each one of its peer creditors agents. Therefore, creditors agents have no way of knowing in advance, what range of creditor IDs each one of their peer nodes will allocate for them. To solve this problem, creditors agents may use “virtual” creditor IDs internally, which they translate to “real” creditor IDs before sending the message to a particular accounting authority node. (Also, the reverse translation should be applied for incoming messages.)

Account balances

The amount that is available on each SMP account is (again) represented by a 64-bit integer number. Using whole numbers eliminates rounding problems, without having significant drawbacks, because a whole number can always be divided by 100, 1000, or 10000000 before display.

Let me remind you that the issuer of each Swaptacular currency sets the interest rate for the currency. When the interest rate is not zero (it can be positive or negative), an interest will constantly accumulate on currency holders’ accounts. In this case, the account balance will be the sum of the remaining principal balance, and the accumulated non-capitalized interest.

Creating and deleting accounts

To better understand the process of opening and closing SMP accounts, imagine two peer Swaptacular nodes: a creditors agent node, and an accounting authority node. In this imaginary scenario, one of the currency holders which the creditors agent node represents (creditor ID = 789), wants to open an account with some currency issuer (debtor ID = 123).

Here is the sequence of SMP messages that the two peer nodes would exchange, so as to create the new account, and sometime later, to delete the account:

Creating an account, and then deleting it

In the diagram above, there are several things that are worth mentioning:

Making and receiving payments

In our imaginary scenario, once the currency holder has received some amount of money on his newly created account, he will want to make a payment to someone else’s account. The next diagram shows the messages that will be exchanged to make the payment:

Creating an account, and then deleting it

Let me draw your attention to several important things in the above diagram:

Debtors’ accounts

In the previous examples I explained how accounts are created, deleted, and money transferred from one account to another. I did not explain, however, how the amounts of money that we moved around went into existence in the first place. If every account that every currency holder creates starts out with no money in it, where all the money originally comes from?

The answer is quite simple: All the money comes from the debtor’s account.

We saw how creditors agent nodes use the Swaptacular Messaging Protocol (SMP) to communicate with accounting authority nodes. However, debtors agent nodes, in exactly the same way, use SMP to communicate with the accounting authority node which they are connected to. The only difference is that each currency issuer (aka debtor) creates a special account called “the debtor’s account”. The debtor’s account is special in several ways:

Conclusion

In this post I explained in broad strokes how the Swaptacular Messaging Protocol works. I tried to demonstrate the most important use cases, but SMP being a relatively complex protocol, some details still remain veiled. You can check the protocol specification for more information.

In further posts, I will talk about the Payments Web API Specification.