-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: cleaning up tokens package * chore: adapt tokens export from sdk to use complete tokenLists --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ebaeb0f
commit 912b8fe
Showing
8 changed files
with
30 additions
and
88 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@swapkit/sdk": patch | ||
--- | ||
|
||
Adapt tokens export in sdk |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@swapkit/tokens": patch | ||
--- | ||
|
||
Cleaning up export code. Each list can be imported individually or all at once via tokenLists |
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
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,3 +1,3 @@ | ||
export * from "./lists"; | ||
export * as tokenLists from "./tokenLists"; | ||
export * from "./tokenLists"; | ||
export * from "./helpers"; | ||
export * from "./types"; |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
export { list as CaviarV1List } from "./caviar_v1"; | ||
export { list as ChainflipList } from "./chainflip"; | ||
export { list as JupiterList } from "./jupiter"; | ||
export { list as KadoList } from "./kado"; | ||
export { list as MayaList } from "./mayachain"; | ||
export { list as OneInchList } from "./oneinch"; | ||
export { list as OpenOceanV2List } from "./openocean_v2"; | ||
export { list as PancakeswapList } from "./pancakeswap"; | ||
export { list as PangolinList } from "./pangolin_v1"; | ||
export { list as SushiswapList } from "./sushiswap_v2"; | ||
export { list as ThorchainList } from "./thorchain"; | ||
export { list as TraderjoeV2List } from "./traderjoe_v2"; | ||
export { list as UniswapV2List } from "./uniswap_v2"; | ||
export { list as UniswapV3List } from "./uniswap_v3"; |
This file was deleted.
Oops, something went wrong.