@0x/order-utils: Add rfqtTakerAddress to FillQuoteTransformerData

This commit is contained in:
Lawrence Forman 2020-09-02 12:43:10 -04:00 committed by Lawrence Forman
parent 52d36f5a8b
commit dba6972281
2 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,10 @@
{
"note": "Fix EP signature utils schema assertion.",
"pr": 2657
},
{
"note": "Add `rfqtTakerAddress` to `FillQuoteTransformerData`",
"pr": 2692
}
]
},

View File

@ -43,6 +43,7 @@ export const fillQuoteTransformerDataEncoder = AbiEncoder.create([
{ name: 'maxOrderFillAmounts', type: 'uint256[]' },
{ name: 'fillAmount', type: 'uint256' },
{ name: 'refundReceiver', type: 'address' },
{ name: 'rfqtTakerAddress', type: 'address' },
],
},
]);
@ -67,6 +68,7 @@ export interface FillQuoteTransformerData {
maxOrderFillAmounts: BigNumber[];
fillAmount: BigNumber;
refundReceiver: string;
rfqtTakerAddress: string;
}
/**