File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -613,6 +613,7 @@ export interface CreateTradeSignatureRequestSell {
613613 /** ID of the trade - `paymentId` for sell */
614614 id : string ;
615615 nonce : string ;
616+ sendSlip44 : number ;
616617 outputs : PaymentRequestOutput [ ] ;
617618 memoText : string ;
618619}
@@ -622,6 +623,8 @@ export interface CreateTradeSignatureRequestExchange {
622623 /** ID of the trade - `orderId` for exchange */
623624 id : string ;
624625 nonce : string ;
626+ sendSlip44 : number ;
627+ receiveSlip44 : number ;
625628 outputs : PaymentRequestOutput [ ] ;
626629}
627630
Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ const sellSignatureRequest: CreateTradeSignatureRequestSell = {
137137 } ,
138138 ] ,
139139 memoText : "memo" ,
140+ sendSlip44 : 0 ,
140141} ;
141142
142143const exchangeSignatureRequest : CreateTradeSignatureRequestExchange = {
@@ -149,6 +150,8 @@ const exchangeSignatureRequest: CreateTradeSignatureRequestExchange = {
149150 amount : "1000" ,
150151 } ,
151152 ] ,
153+ sendSlip44 : 0 ,
154+ receiveSlip44 : 2 ,
152155} ;
153156
154157const exchangeTradeQuoteRequest : ConfirmExchangeTradeRequest = {
You can’t perform that action at this time.
0 commit comments