-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into release/interlay/2.41.7
* master: (225 commits) chore: release v2.41.7 fix: chart counter enum and lower value for collateral (#1638) chore: release v2.41.6 refactor: line chart config (#1635) chore: release v2.41.5 chore: bump bridge (#1631) chore: release v2.41.4 api: rewrite python functions in javascript (#1630) chore: release v2.41.3 Switch Bifrost RPC node (#1627) chore: release v2.41.2 api: add dia fair price feed (#1619) chore: release v2.41.1 Tom/update parallel xcm nodes (#1621) Tom/hotfix/disable parallel xcm channel (#1620) chore: release v2.41.0 Feat: expose TVLs fetched via lib as part of api endpoints (#1605) [release] Interlay 2.40.2 (#1611) chore: release v2.40.2 update staking labels and format valuers (#1609) ... # Conflicts: # package.json # src/config/charts.ts # src/pages/Dashboard/sub-pages/Home/LockedCollateralsCard/index.tsx # src/pages/Dashboard/sub-pages/Vaults/LockedCollateralCard/index.tsx
- Loading branch information
Showing
7 changed files
with
17 additions
and
14 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
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,6 @@ | ||
const COUNT_OF_DATES_FOR_CHART = 180; | ||
enum CountOfDatesForChart { | ||
SIX_MONTHS = 180, | ||
ONE_MONTH = 30 | ||
} | ||
|
||
export { COUNT_OF_DATES_FOR_CHART }; | ||
export { CountOfDatesForChart }; |
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
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