File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed
packages/bridge-status-controller/src Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ type SrcTxMetaId = string;
36
36
export type FetchBridgeTxStatusArgs = {
37
37
bridgeTxMetaId : string ;
38
38
} ;
39
- export default class BridgeStatusController extends StaticIntervalPollingController < BridgeStatusPollingInput > ( ) <
39
+ export class BridgeStatusController extends StaticIntervalPollingController < BridgeStatusPollingInput > ( ) <
40
40
typeof BRIDGE_STATUS_CONTROLLER_NAME ,
41
41
BridgeStatusControllerState ,
42
42
BridgeStatusControllerMessenger
Original file line number Diff line number Diff line change
1
+ // Export constants
2
+ export {
3
+ REFRESH_INTERVAL_MS ,
4
+ DEFAULT_BRIDGE_STATUS_STATE ,
5
+ DEFAULT_BRIDGE_STATUS_CONTROLLER_STATE ,
6
+ } from './constants' ;
7
+
8
+ export type {
9
+ FetchFunction ,
10
+ StatusRequest ,
11
+ StatusRequestDto ,
12
+ StatusRequestWithSrcTxHash ,
13
+ Asset ,
14
+ SrcChainStatus ,
15
+ DestChainStatus ,
16
+ StatusResponse ,
17
+ RefuelStatusResponse ,
18
+ RefuelData ,
19
+ BridgeHistoryItem ,
20
+ BridgeStatusState ,
21
+ BridgeStatusControllerState ,
22
+ BridgeStatusControllerMessenger ,
23
+ StartPollingForBridgeTxStatusArgs ,
24
+ StartPollingForBridgeTxStatusArgsSerialized ,
25
+ TokenAmountValuesSerialized ,
26
+ QuoteMetadataSerialized ,
27
+ } from './types' ;
28
+
29
+ export {
30
+ StatusTypes ,
31
+ BridgeId ,
32
+ FeeType ,
33
+ ActionTypes ,
34
+ BridgeStatusAction ,
35
+ } from './types' ;
36
+
37
+ export { BridgeStatusController } from './bridge-status-controller' ;
You can’t perform that action at this time.
0 commit comments