Pricing

Looking for a quickstart?

Let’s talk pricing. This guide will focus on the two most important Vexchange prices: the mid price and the execution price.

Mid Price

The mid price, in the context of Vexchange, is the price that reflects the ratio of reserves in one or more pairs. There are three ways we can think about this price. Perhaps most simply, it defines the relative value of one token in terms of the other. It also represents the price at which you could theoretically trade an infinitesimal amount (ε) of one token for the other. Finally, it can be interpreted as the current market-clearing or fair value price of the assets.

Let’s consider the mid price for VTHO-WVET (that is, the amount of VTHO per 1 WVET).

Direct

The simplest way to get the VTHO-WVET mid price is to observe the pair directly:

import { ChainId, Token, WVET, Fetcher, Route } from 'vexchange-sdk'

const VTHO = new Token(ChainId.MAINNET, '0x0000000000000000000000000000456E65726779', 18)

// note that you may want/need to handle this async code differently,
// for example if top-level await is not an option
const pair = await Fetcher.fetchPairData(VTHO, WVET[VTHO.chainId])

const route = new Route([pair], WVET[VTHO.chainId])

console.log(route.midPrice.toSignificant(6)) // 201.306
console.log(route.midPrice.invert().toSignificant(6)) // 0.00496756

You may be wondering why we have to construct a route to get the mid price, as opposed to simply getting it from the pair (which, after all, includes all the necessary data). The reason is simple: a route forces us to be opinionated about the direction of trading. Routes consist of one or more pairs, and an input token (which fully defines a trading path). In this case, we passed WVET as the input token, meaning we’re interested in a WVET -> VTHO trade.

Now we understand that the mid price is going to be defined in terms of VTHO/WVET. Not to worry though, if we need the WVET/VTHO price, we can easily invert.

Finally, you may have noticed that we’re formatting the price to 6 significant digits. This is because internally, prices are stored as exact-precision fractions, which can be converted to other representations on demand. For a full list of options, see Price.

Indirect

For the sake of example, let’s imagine a direct pair between VTHO and WVET doesn’t exist. In order to get a VTHO-WVET mid price we’ll need to pick a valid route. Imagine both VTHO and WVET have pairs with a third token, USDC. In that case, we can calculate an indirect mid price through the USDC pairs:

import { ChainId, Token, WVET, Fetcher, Route } from 'vexchange-sdk'

const USDC = new Token(ChainId.MAINNET, '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', 6)
const VTHO = new Token(ChainId.MAINNET, '0x0000000000000000000000000000456E65726779', 18)

// note that you may want/need to handle this async code differently,
// for example if top-level await is not an option
const USDCWVETPair = await Fetcher.fetchPairData(USDC, WVET[ChainId.MAINNET])
const DAIUSDCPair = await Fetcher.fetchPairData(VTHO, USDC)

const route = new Route([USDCWVETPair, DAIUSDCPair], WVET[ChainId.MAINNET])

console.log(route.midPrice.toSignificant(6)) // 202.081
console.log(route.midPrice.invert().toSignificant(6)) // 0.00494851

Execution Price

Mid prices are great representations of the current state of a route, but what about trades? It turns out that it makes sense to define another price, the execution price of a trade, as the ratio of assets sent/received.

Imagine we’re interested in trading 1 WVET for VTHO:

import { ChainId, Token, WVET, Fetcher, Trade, Route, TokenAmount, TradeType } from 'vexchange-sdk'

const VTHO = new Token(ChainId.MAINNET, '0x0000000000000000000000000000456E65726779', 18)

// note that you may want/need to handle this async code differently,
// for example if top-level await is not an option
const pair = await Fetcher.fetchPairData(VTHO, WVET[VTHO.chainId])

const route = new Route([pair], WVET[VTHO.chainId])

const trade = new Trade(route, new TokenAmount(WVET[VTHO.chainId], '1000000000000000000'), TradeType.EXACT_INPUT)

console.log(trade.executionPrice.toSignificant(6))
console.log(trade.nextMidPrice.toSignificant(6))

Notice that we’re constructing a trade of 1 WVET for as much VTHO as possible, given the current reserves of the direct pair. The execution price represents the average VTHO/WVET price for this trade. Of course, the reserves of any pair can change every block, which would affect the execution price.

Also notice that we’re able to access the next mid price, if the trade were to complete successfully before the reserves changed.