getMarketPriceByPair

查询成对的市场交易价格。

用法

visionWeb.vs.getMarketPriceByPair(sellTokenName, buyTokenName);

入参

参数描述类型默认值
sellTokenName出售的代币名称number|string-
buyTokenName购买的代币名称number|string-

返回值

array,查询到的成对的市场交易价格列表。

示例

visionWeb.vs.getMarketPriceByPair('1000001', '1000002');
> [
  {sell_token_quantity: 15, buy_token_quantity: 44},
  {sell_token_quantity: 1, buy_token_quantity: 5},
  {sell_token_quantity: 11, buy_token_quantity: 64},
]