Update CHANGELOGs
This commit is contained in:
parent
b90c3196a3
commit
70508f52a1
@ -1,9 +1,10 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"version": "2.0.9",
|
"version": "2.1.0",
|
||||||
"changes": [
|
"changes": [
|
||||||
{
|
{
|
||||||
"note": "Export `MultiAssetData` from types",
|
"note":
|
||||||
|
"Export `MultiAssetData`, `MultiAssetDataWithRecursiveDecoding`, `ObjectMap`, and `SingleAssetData` from types",
|
||||||
"pr": 1363
|
"pr": 1363
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -71,6 +71,7 @@ export { AbiDecoder } from '@0x/utils';
|
|||||||
export { BigNumber } from '@0x/utils';
|
export { BigNumber } from '@0x/utils';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
AssetData,
|
||||||
ExchangeContractErrs,
|
ExchangeContractErrs,
|
||||||
Order,
|
Order,
|
||||||
SignedOrder,
|
SignedOrder,
|
||||||
@ -85,6 +86,7 @@ export {
|
|||||||
MultiAssetData,
|
MultiAssetData,
|
||||||
MultiAssetDataWithRecursiveDecoding,
|
MultiAssetDataWithRecursiveDecoding,
|
||||||
SignatureType,
|
SignatureType,
|
||||||
|
ObjectMap,
|
||||||
OrderRelevantState,
|
OrderRelevantState,
|
||||||
Stats,
|
Stats,
|
||||||
} from '@0x/types';
|
} from '@0x/types';
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"version": "4.1.4",
|
"version": "4.2.0",
|
||||||
"changes": [
|
"changes": [
|
||||||
{
|
{
|
||||||
"note": "Add support for Trust Wallet signature denial error"
|
"note": "Add support for Trust Wallet signature denial error"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"note": "Add balance and allowance queries for MultiAssetProxy",
|
||||||
|
"pr": 1363
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -3,7 +3,8 @@
|
|||||||
"version": "3.1.0",
|
"version": "3.1.0",
|
||||||
"changes": [
|
"changes": [
|
||||||
{
|
{
|
||||||
"note": "Use new ABI encoder and add encoding/decoding logic for MultiAsset assetData",
|
"note":
|
||||||
|
"Use new ABI encoder, add encoding/decoding logic for MultiAsset assetData, and add information to return values in orderStateUtils",
|
||||||
"pr": 1363
|
"pr": 1363
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -185,6 +185,8 @@ export interface MultiAssetDataWithRecursiveDecoding {
|
|||||||
nestedAssetData: SingleAssetData[];
|
nestedAssetData: SingleAssetData[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type AssetData = SingleAssetData | MultiAssetData | MultiAssetDataWithRecursiveDecoding;
|
||||||
|
|
||||||
// TODO: DRY. These should be extracted from contract code.
|
// TODO: DRY. These should be extracted from contract code.
|
||||||
export enum RevertReason {
|
export enum RevertReason {
|
||||||
OrderUnfillable = 'ORDER_UNFILLABLE',
|
OrderUnfillable = 'ORDER_UNFILLABLE',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user