Weighted Math

Overview

Weighted Math is designed to allow for swaps between any assets whether or not they have any price correlation. Prices are determined by the pool balances, pool weights, and amounts of the tokens that are being swapped.

Holdr's Weighted Math equation is a generalization of the xy=kx*y=k constant product formula recommended for Automated Market Makers (AMMs) in a post by Vitalik Buterin. Holdr's generalization accounts for cases with n2n \geq2 tokens as well as weightings that are not an even 50/50 split.

As the price of each token changes, traders and arbitrageurs rebalance the pool by making swaps. This maintains the desired weighting of the value held by each token whilst collecting trading fees from the traders.

For more weighted math formulas, check out the Developer Docs.

Invariant

The value function VVis defined as:

V=tBtWtV= \prod_t B_t^{W_t}

Where

  • tt ranges over the tokens in the pool

  • BtB_t is the balance of the token in the pool

  • WtW_t​is the normalized weight of the tokens, such that the sum of all normalized weights is 1.

Last updated