Skip to content

Commit

Permalink
v5.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk committed Oct 11, 2021
1 parent 5c7821b commit bb869d6
Show file tree
Hide file tree
Showing 165 changed files with 14,541 additions and 2,034 deletions.
5,318 changes: 5,286 additions & 32 deletions coininfo.js

Large diffs are not rendered by default.

799 changes: 749 additions & 50 deletions coinsSimple.js

Large diffs are not rendered by default.

34 changes: 31 additions & 3 deletions docs/IntegratingBEP2.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,18 @@ This files controls some social interactions of coins. Displays description, lin
twitter: "https://twitter.com/btc",
reddit: "https://www.reddit.com/r/Bitcoin/",
repository: "https://github.com/bitcoin",
youtube: "",
instagram: "",
tiktok: "",
twitch: "",
linkedin: "",
cryptoCompareID: "BTCB",
coinMarketCapID: "bitcoin-bep2",
coingeckoID: "bitcoin-bep2",
auditInfos: [],
whitepaper: [
"https://bitcoin.org/bitcoin.pdf",
],
},

Fields are done to be self-explanatory:
Expand All @@ -111,6 +123,23 @@ Fields are done to be self-explanatory:
- twitter - main twitter
- reddit - subreddit of asset
- repository - repository account. Does not have to be github. Bitbucket, gitlab and others possible as well.
- youtube - youtube channel of asset
- instagram - main instagram of asset
- tiktok - main tiktok of asset
- twitch - twitch channel of asset
- linkedin - main linkedin of asset
- cryptoCompareID - the ID of the asset at the cryproCompare aggregator api
- coinMarketCapID - the ID of the asset at the coinMarketCap aggregator api
- coingeckoID - the ID of the asset at the coingecko aggregator api
- auditInfos - available audit reports for the asset in dictionary format e.g. [
{
auditor: "Quantstamp",
reportUrl: "https://certificate.quantstamp.com/view/serum",
},
],
- whitepaper - available whitepapers for the asset e.g. [
"https://docs.projectserum.com",
],
- Others - feel free to add slack, wechat groups or others. We may let it available in the future

### newssources.js
Expand Down Expand Up @@ -142,10 +171,9 @@ Please look at many examples in [Logos directory](https://github.com/zelcore-io/
## Rates & Markets

Zelcore uses its own Rates and Markets services. The repository can be found in [rates-api](https://github.com/zelcore-io/rates-api).
2 Files have to be adjusted
1 File have to be adjusted at rates-api/src/services/. Add the asset's aggregator ID on the corresponding list. Adding the ID of one aggregetor is enough.

1. zelcoreMarkets.js
2. zelcoreRates.js
1. coinAggregatorIDs.js

You can find them in [services folder](https://github.com/zelcore-io/rates-api/blob/master/src/services/) of rates-api.
Adjustment is usually very simple and adding just your UNIT to an api call will do. Or you can write a custom call specifically for your asset. Note that the output of the asset has to be the UNIT used in zelcore coinSimple.js file.
Expand Down
32 changes: 29 additions & 3 deletions docs/IntegratingTRC20.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,16 @@ This files controls some social interactions of coins. Displays description, lin
twitter: "",
reddit: "",
repository: "https://github.com/tronprotocol",
youtube: "",
instagram: "",
tiktok: "",
twitch: "",
linkedin: "",
cryptoCompareID: "",
coinMarketCapID: "",
coingeckoID: "",
auditInfos: [],
whitepaper: [],
},

Fields are done to be self-explanatory:
Expand All @@ -107,6 +117,23 @@ Fields are done to be self-explanatory:
- twitter - main twitter
- reddit - subreddit of asset
- repository - repository account. Does not have to be github. Bitbucket, gitlab and others possible as well.
- youtube - youtube channel of asset
- instagram - main instagram of asset
- tiktok - main tiktok of asset
- twitch - twitch channel of asset
- linkedin - main linkedin of asset
- cryptoCompareID - the ID of the asset at the cryproCompare aggregator api
- coinMarketCapID - the ID of the asset at the coinMarketCap aggregator api
- coingeckoID - the ID of the asset at the coingecko aggregator api
- auditInfos - available audit reports for the asset in dictionary format e.g. [
{
auditor: "Quantstamp",
reportUrl: "https://certificate.quantstamp.com/view/serum",
},
],
- whitepaper - available whitepapers for the asset e.g. [
"https://docs.projectserum.com",
],
- Others - feel free to add slack, wechat groups or others. We may let it available in the future

### newssources.js
Expand Down Expand Up @@ -138,10 +165,9 @@ Please look at many examples in [Logos directory](https://github.com/zelcore-io/
## Rates & Markets

Zelcore uses its own Rates and Markets services. The repository can be found in [rates-api](https://github.com/zelcore-io/rates-api).
2 Files have to be adjusted
1 File have to be adjusted at rates-api/src/services/. Add the asset's aggregator ID on the corresponding list. Adding the ID of one aggregetor is enough.

1. zelcoreMarkets.js
2. zelcoreRates.js
1. coinAggregatorIDs.js

You can find them in [services folder](https://github.com/zelcore-io/rates-api/blob/master/src/services/) of rates-api.
Adjustment is usually very simple and adding just your UNIT to an api call will do. Or you can write a custom call specifically for your asset. Note that the output of the asset has to be the UNIT used in zelcore coinSimple.js file.
Expand Down
41 changes: 38 additions & 3 deletions docs/integratingBEP20.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,25 @@ This files controls some social interactions of coins. Displays description, lin
twitter: "https://twitter.com/PancakeSwap",
reddit: "https://www.reddit.com/r/pancakeswap",
repository: "https://github.com/pancakeswap",
youtube: "",
instagram: "",
tiktok: "",
twitch: "",
linkedin: "",
cryptoCompareID: "CAKE",
coinMarketCapID: "pancakeswap",
coingeckoID: "pancakeswap-token",
auditInfos: [
{
auditor: "CertiK",
reportUrl: "https://cmc.certik-skynet.com/redirect?project=pancakeswap",
},
{
auditor: "SlowMist",
reportUrl: "https://www.slowmist.com/en/security-audit-certificate.html?id=015e0e0a3ef5ea0e2bd9651c9cb47af497597d9e42b1fc13bdf46689c4a2b4f6",
},
],
whitepaper: [],
},

Fields are done to be self-explanatory:
Expand All @@ -110,6 +129,23 @@ Fields are done to be self-explanatory:
- twitter - main twitter
- reddit - subreddit of asset
- repository - repository account. Does not have to be github. Bitbucket, gitlab and others possible as well.
- youtube - youtube channel of asset
- instagram - main instagram of asset
- tiktok - main tiktok of asset
- twitch - twitch channel of asset
- linkedin - main linkedin of asset
- cryptoCompareID - the ID of the asset at the cryproCompare aggregator api
- coinMarketCapID - the ID of the asset at the coinMarketCap aggregator api
- coingeckoID - the ID of the asset at the coingecko aggregator api
- auditInfos - available audit reports for the asset in dictionary format e.g. [
{
auditor: "Quantstamp",
reportUrl: "https://certificate.quantstamp.com/view/serum",
},
],
- whitepaper - available whitepapers for the asset e.g. [
"https://docs.projectserum.com",
],
- Others - feel free to add slack, wechat groups or others. We may let it available in the future

### newssources.js
Expand Down Expand Up @@ -155,10 +191,9 @@ Please look at many examples in [Logos directory](https://github.com/zelcore-io/
## Rates & Markets

Zelcore uses its own Rates and Markets services. The repository can be found in [rates-api](https://github.com/zelcore-io/rates-api).
2 Files have to be adjusted
1 File have to be adjusted at rates-api/src/services/. Add the asset's aggregator ID on the corresponding list. Adding the ID of one aggregetor is enough.

1. zelcoreMarkets.js
2. zelcoreRates.js
1. coinAggregatorIDs.js

You can find them in [services folder](https://github.com/zelcore-io/rates-api/blob/master/src/services/) of rates-api.
Adjustment is usually very simple and adding just your UNIT to an api call will do. Or you can write a custom call specifically for your asset. Note that the output of the asset has to be the UNIT used in zelcore coinSimple.js file.
Expand Down
32 changes: 29 additions & 3 deletions docs/integratingERC20.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,16 @@ This files controls some social interactions of coins. Displays description, lin
twitter: "https://twitter.com/quant_network",
reddit: "https://reddit.com/r/QuantNetwork",
repository: "https://github.com/quantnetwork",
youtube: "https://www.youtube.com/c/QuantNetwork",
instagram: "",
tiktok: "",
twitch: "",
linkedin: "",
cryptoCompareID: "QNT",
coinMarketCapID: "quant",
coingeckoID: "quant-network",
auditInfos: [],
whitepaper: [],
},

Fields are done to be self-explanatory:
Expand All @@ -120,6 +130,23 @@ Fields are done to be self-explanatory:
- twitter - main twitter
- reddit - subreddit of asset
- repository - repository account. Does not have to be github. Bitbucket, gitlab and others possible as well.
- youtube - youtube channel of asset
- instagram - main instagram of asset
- tiktok - main tiktok of asset
- twitch - twitch channel of asset
- linkedin - main linkedin of asset
- cryptoCompareID - the ID of the asset at the cryproCompare aggregator api
- coinMarketCapID - the ID of the asset at the coinMarketCap aggregator api
- coingeckoID - the ID of the asset at the coingecko aggregator api
- auditInfos - available audit reports for the asset in dictionary format e.g. [
{
auditor: "Quantstamp",
reportUrl: "https://certificate.quantstamp.com/view/serum",
},
],
- whitepaper - available whitepapers for the asset e.g. [
"https://docs.projectserum.com",
],
- Others - feel free to add slack, wechat groups or others. We may let it available in the future

### newssources.js
Expand Down Expand Up @@ -165,10 +192,9 @@ Please look at many examples in [Logos directory](https://github.com/zelcore-io/
## Rates & Markets

Zelcore uses its own Rates and Markets services. The repository can be found in [rates-api](https://github.com/zelcore-io/rates-api).
2 Files have to be adjusted
1 File have to be adjusted at rates-api/src/services/. Add the asset's aggregator ID on the corresponding list. Adding the ID of one aggregetor is enough.

1. zelcoreMarkets.js
2. zelcoreRates.js
1. coinAggregatorIDs.js

You can find them in [services folder](https://github.com/zelcore-io/rates-api/blob/master/src/services/) of rates-api.
Adjustment is usually very simple and adding just your UNIT to an api call will do. Or you can write a custom call specifically for your asset. Note that the output of the asset has to be the UNIT used in zelcore coinSimple.js file.
Expand Down
40 changes: 36 additions & 4 deletions docs/integratingOMNI.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,23 @@ This files controls some social interactions of coins. Displays description, lin
twitter: "https://twitter.com/Tether_to",
reddit: "",
repository: "",
youtube: "",
instagram: "",
tiktok: "",
twitch: "",
linkedin: "",
cryptoCompareID: "USDT",
coinMarketCapID: "tether",
coingeckoID: "tether",
auditInfos: [
{
auditor: "CertiK",
reportUrl: "https://cmc.certik-skynet.com/redirect?project=tether",
},
],
whitepaper: [
"https://tether.to/wp-content/uploads/2016/06/TetherWhitePaper.pdf",
],
},

Fields are done to be self-explanatory:
Expand All @@ -130,6 +147,23 @@ Fields are done to be self-explanatory:
- twitter - main twitter
- reddit - subreddit of asset
- repository - repository account. Does not have to be github. Bitbucket, gitlab and others possible as well.
- youtube - youtube channel of asset
- instagram - main instagram of asset
- tiktok - main tiktok of asset
- twitch - twitch channel of asset
- linkedin - main linkedin of asset
- cryptoCompareID - the ID of the asset at the cryproCompare aggregator api
- coinMarketCapID - the ID of the asset at the coinMarketCap aggregator api
- coingeckoID - the ID of the asset at the coingecko aggregator api
- auditInfos - available audit reports for the asset in dictionary format e.g. [
{
auditor: "Quantstamp",
reportUrl: "https://certificate.quantstamp.com/view/serum",
},
],
- whitepaper - available whitepapers for the asset e.g. [
"https://docs.projectserum.com",
],
- Others - feel free to add slack, wechat groups or others. We may let it available in the future

### newssources.js
Expand Down Expand Up @@ -163,11 +197,9 @@ Please look at many examples in [Logos directory](https://github.com/zelcore-io/
## Rates & Markets

Zelcore uses its own Rates and Markets services. The repository can be found in [rates-api](https://github.com/zelcore-io/rates-api).
1 File have to be adjusted at rates-api/src/services/. Add the asset's aggregator ID on the corresponding list. Adding the ID of one aggregetor is enough.

2 Files have to be adjusted

1. zelcoreMarkets.js
2. zelcoreRates.js
1. coinAggregatorIDs.js

You can find them in [services folder](https://github.com/zelcore-io/rates-api/blob/master/src/services/) of rates-api.

Expand Down
Loading

0 comments on commit bb869d6

Please sign in to comment.