Skip to content

Commit 8125fc5

Browse files
Merge pull request #814 from Cypherock/feat/desktop-analytics
feat: desktop analytics
2 parents b379be7 + a29b83c commit 8125fc5

131 files changed

Lines changed: 3894 additions & 345 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/modern-mice-speak.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
'@cypherock/coins': minor
3+
'@cypherock/app-support-buy-sell': patch
4+
'@cypherock/coin-support-evm': patch
5+
'@cypherock/cysync-core': patch
6+
'@cypherock/cysync-ui': patch
7+
---
8+
9+
Added Hyperliquid support

.changeset/pre.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"mode": "exit",
3+
"tag": "pre",
4+
"initialVersions": {
5+
"@cypherock/cysync-cli": "0.2.0",
6+
"@cypherock/cysync-desktop": "2.2.2",
7+
"@cypherock/app-support-buy-sell": "0.0.8",
8+
"@cypherock/app-support-inheritance": "1.0.6",
9+
"@cypherock/cysync-automation-scripts": "0.1.7",
10+
"@cypherock/coin-support": "0.2.0",
11+
"@cypherock/coin-support-btc": "0.0.22",
12+
"@cypherock/coin-support-evm": "0.1.0",
13+
"@cypherock/coin-support-icp": "1.0.5",
14+
"@cypherock/coin-support-interfaces": "0.1.0",
15+
"@cypherock/coin-support-near": "0.0.21",
16+
"@cypherock/coin-support-solana": "0.2.0",
17+
"@cypherock/coin-support-starknet": "1.0.8",
18+
"@cypherock/coin-support-stellar": "1.0.2",
19+
"@cypherock/coin-support-tron": "0.1.0",
20+
"@cypherock/coin-support-utils": "0.1.0",
21+
"@cypherock/coin-support-xrp": "1.1.9",
22+
"@cypherock/coins": "0.3.3",
23+
"@cypherock/cysync-core-services": "0.2.0",
24+
"@cypherock/cysync-core": "0.7.0",
25+
"@cypherock/cysync-core-constants": "0.6.0",
26+
"@cypherock/cysync-core-workers": "0.1.0",
27+
"@cypherock/database": "0.1.4",
28+
"@cypherock/db-interfaces": "0.1.1",
29+
"@cypherock/cysync-desktop-ui": "0.1.0",
30+
"@cypherock/cysync-interfaces": "0.0.10",
31+
"@cypherock/cysync-ui": "0.0.16",
32+
"@cypherock/eslint-config": "0.0.2",
33+
"@cypherock/jest-config": "0.0.1",
34+
"@cypherock/prettier-config": "0.0.1",
35+
"@cypherock/tsconfig": "0.0.1",
36+
"@cypherock/cysync-utils": "0.0.12"
37+
},
38+
"changesets": [
39+
"modern-mice-speak",
40+
"selfish-chicken-exercise"
41+
]
42+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
'@cypherock/cysync-core': minor
3+
'@cypherock/cysync-desktop-ui': minor
4+
'@cypherock/cysync-desktop': minor
5+
'@cypherock/cysync-core-constants': patch
6+
'@cypherock/app-support-buy-sell': patch
7+
'@cypherock/coin-support-evm': patch
8+
'@cypherock/cysync-interfaces': patch
9+
'@cypherock/coins': patch
10+
'@cypherock/cysync-ui': patch
11+
---
12+
13+
Analytics added

.github/workflows/build-early.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
env:
1616
NODE_OPTIONS: '--max-old-space-size=8192'
1717
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
18+
MIXPANEL_TOKEN_DEV: ${{ secrets.MIXPANEL_TOKEN_DEV }}
1819
APP_NAME: '@cypherock/cysync-desktop'
1920
CHANNEL: ${{ inputs.channel }}
2021
DO_UPDATE_APP_VERSION: 'true'
@@ -45,7 +46,7 @@ jobs:
4546
run: git fetch --tags origin
4647

4748
- name: Install pnpm
48-
uses: pnpm/action-setup@v4
49+
uses: pnpm/action-setup@v4.1.0
4950
with:
5051
run_install: false
5152

@@ -106,7 +107,7 @@ jobs:
106107
run: git fetch --tags origin
107108

108109
- name: Install pnpm
109-
uses: pnpm/action-setup@v4
110+
uses: pnpm/action-setup@v4.1.0
110111
with:
111112
run_install: false
112113

@@ -182,7 +183,7 @@ jobs:
182183
run: git fetch --tags origin
183184

184185
- name: Install pnpm
185-
uses: pnpm/action-setup@v4
186+
uses: pnpm/action-setup@v4.1.0
186187
with:
187188
run_install: false
188189

@@ -260,7 +261,7 @@ jobs:
260261
run: git fetch --tags origin
261262

262263
- name: Install pnpm
263-
uses: pnpm/action-setup@v4
264+
uses: pnpm/action-setup@v4.1.0
264265
with:
265266
run_install: false
266267

@@ -356,7 +357,7 @@ jobs:
356357
run: git fetch --tags origin
357358

358359
- name: Install pnpm
359-
uses: pnpm/action-setup@v4
360+
uses: pnpm/action-setup@v4.1.0
360361
with:
361362
run_install: false
362363

.github/workflows/build-prerelease.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
env:
1111
NODE_OPTIONS: '--max-old-space-size=8192'
1212
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
13+
MIXPANEL_TOKEN_DEV: ${{ secrets.MIXPANEL_TOKEN_DEV }}
1314
APP_NAME: '@cypherock/cysync-desktop'
1415
CHANNEL: 'pre'
1516
DO_UPDATE_APP_VERSION: 'true'
@@ -37,7 +38,7 @@ jobs:
3738
run: wc .changeset/pre.json
3839

3940
- name: Install pnpm
40-
uses: pnpm/action-setup@v4
41+
uses: pnpm/action-setup@v4.1.0
4142
with:
4243
run_install: false
4344

@@ -118,7 +119,7 @@ jobs:
118119
run: git fetch --tags origin
119120

120121
- name: Install pnpm
121-
uses: pnpm/action-setup@v4
122+
uses: pnpm/action-setup@v4.1.0
122123
with:
123124
run_install: false
124125

@@ -189,7 +190,7 @@ jobs:
189190
run: git fetch --tags origin
190191

191192
- name: Install pnpm
192-
uses: pnpm/action-setup@v4
193+
uses: pnpm/action-setup@v4.1.0
193194
with:
194195
run_install: false
195196

@@ -261,7 +262,7 @@ jobs:
261262
run: git fetch --tags origin
262263

263264
- name: Install pnpm
264-
uses: pnpm/action-setup@v4
265+
uses: pnpm/action-setup@v4.1.0
265266
with:
266267
run_install: false
267268

@@ -354,7 +355,7 @@ jobs:
354355
uses: fregante/setup-git-user@v2
355356

356357
- name: Install pnpm
357-
uses: pnpm/action-setup@v4
358+
uses: pnpm/action-setup@v4.1.0
358359
with:
359360
run_install: false
360361

.github/workflows/build-release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
env:
1111
NODE_OPTIONS: '--max-old-space-size=8192'
1212
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
13+
MIXPANEL_TOKEN_PROD: ${{ secrets.MIXPANEL_TOKEN_PROD }}M
1314
APP_NAME: '@cypherock/cysync-desktop'
1415
CHANNEL: 'latest'
1516

@@ -33,7 +34,7 @@ jobs:
3334
run: git fetch --tags origin
3435

3536
- name: Install pnpm
36-
uses: pnpm/action-setup@v4
37+
uses: pnpm/action-setup@v4.1.0
3738
with:
3839
run_install: false
3940

@@ -114,7 +115,7 @@ jobs:
114115
run: git fetch --tags origin
115116

116117
- name: Install pnpm
117-
uses: pnpm/action-setup@v4
118+
uses: pnpm/action-setup@v4.1.0
118119
with:
119120
run_install: false
120121

@@ -183,7 +184,7 @@ jobs:
183184
run: git fetch --tags origin
184185

185186
- name: Install pnpm
186-
uses: pnpm/action-setup@v4
187+
uses: pnpm/action-setup@v4.1.0
187188
with:
188189
run_install: false
189190

@@ -255,7 +256,7 @@ jobs:
255256
run: git fetch --tags origin
256257

257258
- name: Install pnpm
258-
uses: pnpm/action-setup@v4
259+
uses: pnpm/action-setup@v4.1.0
259260
with:
260261
run_install: false
261262

@@ -348,7 +349,7 @@ jobs:
348349
uses: fregante/setup-git-user@v2
349350

350351
- name: Install pnpm
351-
uses: pnpm/action-setup@v4
352+
uses: pnpm/action-setup@v4.1.0
352353
with:
353354
run_install: false
354355

.github/workflows/npm-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: git fetch --tags origin
3333

3434
- name: Install pnpm
35-
uses: pnpm/action-setup@v4
35+
uses: pnpm/action-setup@v4.1.0
3636
with:
3737
run_install: false
3838

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ permissions:
1919

2020
env:
2121
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
22+
MIXPANEL_TOKEN_DEV: ${{ secrets.MIXPANEL_TOKEN_DEV }}
2223

2324
jobs:
2425
test-e2e:
@@ -37,7 +38,7 @@ jobs:
3738
fetch-depth: 0
3839

3940
- name: Install pnpm
40-
uses: pnpm/action-setup@v4
41+
uses: pnpm/action-setup@v4.1.0
4142
with:
4243
run_install: false
4344

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
submodules: 'recursive'
2828

2929
- name: Install pnpm
30-
uses: pnpm/action-setup@v4
30+
uses: pnpm/action-setup@v4.1.0
3131
with:
3232
run_install: false
3333

apps/cli/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# @cypherock/cysync-cli
22

3+
## 0.2.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c3745ad9`](https://github.com/Cypherock/cypherock-cysync/commit/c3745ad98950f5becd0d1a2fd70a70a47e3fe2bd), [`1434a79d`](https://github.com/Cypherock/cypherock-cysync/commit/1434a79d295cc8eaa0bd0a39d97a5f05a13e872d)]:
8+
- @cypherock/coins@0.4.0-pre.0
9+
- @cypherock/coin-support-evm@0.1.1-pre.0
10+
- @cypherock/coin-support@0.2.1-pre.0
11+
- @cypherock/coin-support-btc@0.0.23-pre.0
12+
- @cypherock/coin-support-icp@1.0.6-pre.0
13+
- @cypherock/coin-support-near@0.0.22-pre.0
14+
- @cypherock/coin-support-solana@0.2.1-pre.0
15+
- @cypherock/coin-support-starknet@1.0.9-pre.0
16+
- @cypherock/coin-support-stellar@1.0.3-pre.0
17+
- @cypherock/coin-support-utils@0.1.1-pre.0
18+
- @cypherock/coin-support-xrp@1.1.10-pre.0
19+
- @cypherock/cysync-core-services@0.2.1-pre.0
20+
- @cypherock/database@0.1.5-pre.0
21+
- @cypherock/cysync-utils@0.0.13-pre.0
22+
323
## 0.2.0
424

525
### Minor Changes

0 commit comments

Comments
 (0)