@gobob/bob-sdk 4.2.18 → 4.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gateway/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/gateway/types.d.ts
CHANGED
|
@@ -265,6 +265,7 @@ export type OfframpOrder = {
|
|
|
265
265
|
status: OfframpOrderStatus;
|
|
266
266
|
orderTimestamp: number;
|
|
267
267
|
submitOrderEvmTx: string | null;
|
|
268
|
+
refundedEvmTx: string | null;
|
|
268
269
|
btcTx: string | null;
|
|
269
270
|
shouldFeesBeBumped: boolean;
|
|
270
271
|
canOrderBeUnlocked: boolean;
|
|
@@ -291,6 +292,7 @@ export interface OfframpRawOrder {
|
|
|
291
292
|
btcTx: string | null;
|
|
292
293
|
submitOrderEvmTx: string | null;
|
|
293
294
|
shouldFeesBeBumped: boolean;
|
|
295
|
+
refundedEvmTx: string | null;
|
|
294
296
|
}
|
|
295
297
|
export interface GatewayStrategy {
|
|
296
298
|
strategyAddress: string;
|