Skip to content

Commit

Permalink
Move to aws backend
Browse files Browse the repository at this point in the history
  • Loading branch information
igorshelkovenkov committed Sep 20, 2023
1 parent 601a4e3 commit d857435
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"email": "[email protected]",
"url": "https://www.defichain-income.com"
},
"version": "10.2.18",
"version": "10.2.19",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "DefiChain-Income",
"version": "10.2.18"
"version": "10.2.19"
},
"build": {
"distDir": "../dist/defichain-income",
Expand Down
6 changes: 3 additions & 3 deletions src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export const environment = {
burninfo: 'https://api.mydefichain.com/v1/getburninfo/',
lock: 'https://api.lock.space/v1/staking/balance?userAddress=',
lockStats: 'https://api.lock.space/v1/analytics/staking',
version: '10.2.18',
version: '10.2.1899',
bittrex: 'https://api.bittrex.com/v3/currencies/DFI',
kucoin: 'https://api.kucoin.com/api/v1/currencies/DFI',
graphql: 'https://next-graphql.defichain-income.com/graphql',
income: 'https://next-graphql.defichain-income.com/income',
graphql: 'https://aws-backend.defichain-income.com/graphql',
income: 'https://aws-backend.defichain-income.com/income',
// Matomo
matomoId: 6,
matomoUrl: 'https://analytics.topiet.de/'
Expand Down
6 changes: 3 additions & 3 deletions src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export const environment = {
burninfo: 'https://api.mydefichain.com/v1/getburninfo/',
lock: 'https://api.lock.space/v1/staking/balance?userAddress=',
lockStats: 'https://api.lock.space/v1/analytics/staking?asset=DFI&blockchain=DeFiChain&strategy=Masternode',
version: '10.2.18',
graphql: 'https://next-graphql.defichain-income.com/graphql',
income: 'https://next-graphql.defichain-income.com/income',
version: '10.2.19',
graphql: 'https://aws-backend.defichain-income.com/graphql',
income: 'https://aws-backend.defichain-income.com/income',
// Matomo
// No tracking for local -> wrong id
matomoId: 25,
Expand Down
5 changes: 5 additions & 0 deletions src/interface/Changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ export class Changelog {

this.logs = new Array<Log>();

this.log = new Log();
this.log.version = '10.2.19 - 20.9.2023';
this.log.comment = 'Move to AWS Backend';
this.logs.push(this.log);

this.log = new Log();
this.log.version = '10.2.18 - 12.9.2023';
this.log.comment = 'Fix New Crypto pools in LM Calculator';
Expand Down

0 comments on commit d857435

Please sign in to comment.