add changelog and comments to pr #62

This commit is contained in:
xianny 2020-12-01 13:05:21 -08:00
parent e70ec02be8
commit 67c95bc0b7
2 changed files with 14 additions and 0 deletions

View File

@ -5,6 +5,18 @@
{ {
"note": "Added Crypto.com", "note": "Added Crypto.com",
"pr": 43 "pr": 43
},
{
"note": "Add `getQuoteInfoMinBuyAmount` to quote consumer utils",
"pr": 62
},
{
"note": "Add `unoptimizedQuoteInfo` and `unoptimizedOrders` to SwapQuoteBase",
"pr": 62
},
{
"note": "Add `unoptimizedPath` to OptimizerResult",
"pr": 62
} }
] ]
}, },

View File

@ -181,6 +181,8 @@ export interface GetExtensionContractTypeOpts {
* orders: An array of objects conforming to OptimizedMarketOrder. These orders can be used to cover the requested assetBuyAmount plus slippage. * orders: An array of objects conforming to OptimizedMarketOrder. These orders can be used to cover the requested assetBuyAmount plus slippage.
* bestCaseQuoteInfo: Info about the best case price for the asset. * bestCaseQuoteInfo: Info about the best case price for the asset.
* worstCaseQuoteInfo: Info about the worst case price for the asset. * worstCaseQuoteInfo: Info about the worst case price for the asset.
* unoptimizedQuoteInfo: Info about the unoptimized (best single source) price for the swap
* unoptimizedOrders: Orders used in the unoptimized quote info
*/ */
export interface SwapQuoteBase { export interface SwapQuoteBase {
takerAssetData: string; takerAssetData: string;