-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a057b27
commit b70dae5
Showing
2 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
import * as imxClient from './immutablex_client'; | ||
import * as imxProvider from './provider'; | ||
|
||
export const x = { | ||
client: imxClient, | ||
provider: imxProvider, | ||
}; | ||
export * as config from './config'; | ||
export * as blockchainData from './blockchain_data'; | ||
/** | ||
* @deprecated Use x.client or /x/client instead. | ||
*/ | ||
export * as immutablexClient from './immutablex_client'; | ||
export * as passport from './passport'; | ||
export * as orderbook from './orderbook'; | ||
/** | ||
* @deprecated Use x.provider or /x/provider instead. | ||
*/ | ||
export * as provider from './provider'; | ||
export * as checkout from './checkout'; |