-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added partial support for pro endpoints
- added coingecko banner - Added support for the following coin PRO endpoints - getNewList - getTopGainersAndLosers - Exported exposed classes - Removed unnecessary unit test imports and replaced by the actual library
- Loading branch information
Showing
53 changed files
with
708 additions
and
151 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
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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,26 @@ | ||
/// Used to filter data by duration time. | ||
enum CoinDuration { | ||
/// Data duration in 1 hour | ||
in1Hour('1h'), | ||
|
||
/// Data duration in 24 hours | ||
in24Hours('24h'), | ||
|
||
/// Data duration in 7 days | ||
in7Days('7d'), | ||
|
||
/// Data duration in 14 days | ||
in14Days('14d'), | ||
|
||
/// Data duration in 30 days | ||
in30Days('30d'), | ||
|
||
/// Data duration in 200 days | ||
in200Days('60d'), | ||
|
||
/// Data duration in 1 year | ||
in1Year('1y'); | ||
|
||
const CoinDuration(this.value); | ||
final String value; | ||
} |
File renamed without changes.
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,17 @@ | ||
/// Used to return the top N result. | ||
enum CoinRanking { | ||
/// Top 300 | ||
top300('300'), | ||
|
||
/// Top 500 | ||
top500('500'), | ||
|
||
/// Top 1000 | ||
top1000('1000'), | ||
|
||
/// All | ||
all('all'); | ||
|
||
const CoinRanking(this.value); | ||
final String value; | ||
} |
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
Oops, something went wrong.