Skip to content

Commit

Permalink
Merge pull request #167 from Cerebellum-Network/release/0.34.0
Browse files Browse the repository at this point in the history
Release 0.34.0
  • Loading branch information
shamilkhan authored Sep 28, 2023
2 parents 432585f + 8b5a1a2 commit a26dda3
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 60 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## vNext
...

## v0.34.0
- [FE] Update Twitter and Telegram links

## v0.33.0
- [FE] Token Metrics Enhancements:
- Express both the "Total Supply" and "Total Staked" values in USD.
Expand Down
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api",
"version": "0.33.0",
"version": "0.34.0",
"description": "PolkaStats API",
"author": "Mario Pino Uceda",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backend",
"version": "0.33.0",
"version": "0.34.0",
"description": "PolkaStats NG Backend",
"author": "Mario Pino Uceda",
"license": "Apache-2.0",
Expand Down
6 changes: 3 additions & 3 deletions frontend/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
<hr />
<ul class="list-unstyled social text-center">
<li data-testid="footer-twitter">
<a target="_blank" href="https://twitter.com/cerenetwork">
<a target="_blank" href="https://twitter.com/cereofficial">
<font-awesome-icon :icon="['fab', 'twitter']" />
@cerenetwork
@cereofficial
</a>
</li>
<li data-testid="footer-twitter">
<a target="_blank" href="https://t.me/cerenetwork_official">
<a target="_blank" href="https://t.me/thisiscere">
<font-awesome-icon :icon="['fab', 'telegram']" />
Cere Network
</a>
Expand Down
2 changes: 1 addition & 1 deletion frontend/frontend.config-cere-dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const network = {
name: 'Cere Network',
tokenSymbol: 'CERE',
tokenDecimals: 10,
ss58Format: -1,
ss58Format: 54,
coinGeckoDenom: 'cere-network',
nodeWs: 'wss://archive.testnet.cere.network/ws',
backendWs: 'wss://stats-hasura.network-dev.aws.cere.io/v1/graphql',
Expand Down
2 changes: 1 addition & 1 deletion frontend/frontend.config-cere-local.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const network = {
name: 'Cere Network',
tokenSymbol: 'CERE',
tokenDecimals: 10,
ss58Format: -1,
ss58Format: 54,
coinGeckoDenom: 'cere-network',
nodeWs: 'wss://archive.mainnet.cere.network/ws',
backendWs: 'ws://localhost:8082/v1/graphql',
Expand Down
2 changes: 1 addition & 1 deletion frontend/frontend.config-cere-prd.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const network = {
name: 'Cere Network',
tokenSymbol: 'CERE',
tokenDecimals: 10,
ss58Format: -1,
ss58Format: 54,
coinGeckoDenom: 'cere-network',
nodeWs: 'wss://archive.mainnet.cere.network/ws',
backendWs: 'wss://hasura.stats.cere.network/v1/graphql',
Expand Down
2 changes: 1 addition & 1 deletion frontend/frontend.config-cere-stg.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const network = {
name: 'Cere Network',
tokenSymbol: 'CERE',
tokenDecimals: 10,
ss58Format: -1,
ss58Format: 54,
coinGeckoDenom: 'cere-network',
nodeWs: 'wss://archive.mainnet.cere.network/ws',
backendWs: 'wss://hasura.stats.stg.cere.network/v1/graphql',
Expand Down
18 changes: 0 additions & 18 deletions frontend/frontend.config-kusama.js

This file was deleted.

18 changes: 0 additions & 18 deletions frontend/frontend.config-polkadot.js

This file was deleted.

26 changes: 13 additions & 13 deletions frontend/frontend.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
export const network = {
id: 'kusama',
name: 'Kusama',
tokenSymbol: 'KSM',
tokenDecimals: 12,
ss58Format: 2,
coinGeckoDenom: 'kusama',
nodeWs: 'wss://kusama-rpc.polkadot.network',
backendWs: 'wss://kusama.polkastats.io/api/v3',
backendHttp: 'https://kusama.polkastats.io/api/v3',
googleAnalytics: 'UA-172854168-1',
id: 'cere',
name: 'Cere Network',
tokenSymbol: 'CERE',
tokenDecimals: 10,
ss58Format: 54,
coinGeckoDenom: 'cere-network',
nodeWs: 'wss://archive.mainnet.cere.network/ws',
backendWs: 'wss://hasura.stats.cere.network/v1/graphql',
backendHttp: 'https://api.stats.cere.network/api/v1',
googleAnalytics: '',
theme: '@/assets/scss/themes/polkastats.scss',
// ranking
historySize: 84, // 21 days
erasPerDay: 4,
// ranking Í
historySize: 16, // 16 days
erasPerDay: 1,
validatorSetSize: 24,
}
export const paginationOptions = [10, 20, 50, 100]
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "0.33.0",
"version": "0.34.0",
"description": "PolkaStats NG frontend",
"author": "Mario Pino Uceda",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "cerestats",
"version": "0.33.0",
"version": "0.34.0",
"description": "Cere Stats mono repo",
"repository": {
"type": "git",
Expand Down

0 comments on commit a26dda3

Please sign in to comment.