added changelog

This commit is contained in:
David Sun
2020-03-01 13:36:56 -05:00
parent 97fb843f01
commit 4728cdfa7c
4 changed files with 29 additions and 3 deletions

View File

@@ -1,4 +1,17 @@
[
{
"version": "4.4.0",
"changes": [
{
"note": "Add support for ERC721 assets",
"pr": 2491
},
{
"note": "Add destroy for gas heartbeat",
"pr": 2492
}
]
},
{
"version": "4.3.2",
"changes": [

View File

@@ -158,13 +158,13 @@ export class SwapQuoteCalculator {
resultOrders = await this._marketOperationUtils.getMarketBuyOrdersAsync(
prunedOrders,
assetFillAmount.plus(slippageBufferAmount),
opts,
_opts,
);
} else {
resultOrders = await this._marketOperationUtils.getMarketSellOrdersAsync(
prunedOrders,
assetFillAmount.plus(slippageBufferAmount),
opts,
_opts,
);
}
}

View File

@@ -1,5 +1,5 @@
import { assetDataUtils } from '@0x/order-utils';
import { AssetProxyId, AssetData, ERC20AssetData, ERC20BridgeAssetData, Order, SignedOrder } from '@0x/types';
import { AssetData, AssetProxyId, ERC20AssetData, ERC20BridgeAssetData, Order, SignedOrder } from '@0x/types';
import { BigNumber, NULL_BYTES } from '@0x/utils';
import { Web3Wrapper } from '@0x/web3-wrapper';

View File

@@ -1,4 +1,17 @@
[
{
"version": "4.2.0",
"changes": [
{
"note": "Clean up heartbeat functions on close",
"pr": 2492
},
{
"note": "Fix ERC721 asset support",
"pr": 2491
}
]
},
{
"version": "4.1.0",
"changes": [