Skip to content

Commit 62d46b5

Browse files
impelcryptobobo-k2Juminstock
authored
Merge the hotfix branch to main (#1495)
* Fetch period end block from Token API (#1490) * Fetch period end block from Token API * Cleanup * Fix for remaining locked balance (#1491) * Fix for remaining locked balance * Cleanup * Identity handling fix * fix: removed airdrop service ad (#1494) * hotfix: updated dwellir endpoint (#1497) * fix: updated dwellir endpoints * fix: removed duplicated endpoints * fix: removed USDT (#1499) * fix: added --fronzen-lockfile to CI script (#1500) * fix: added --fronzen-lockfile --ignore-scripts to CI script * fix: removed unnecessary flag * fix: remove docsbot ai (#1501) * Fix for use tokens locked in democracy (#1502) * hotfix: bring back USDT(Polkadot) (#1505) * fix: bring back USDT * fix: updated node version to 20 (#1507) * fix: displaying Available amount after staking (#1504) * hotfix: disable kusama xcm (#1503) * hotfix: disabled bridge between Shiden and Kusama * fix: rollback * fix: removed rebate line (#1509) * feat: support bridge KSM from AssetHub (#1506) * hotfix: disabled bridge between Shiden and Kusama * fix: rollback * feat: support KSM bridge from Asset Hub * fix: updated AssetHub endpoints * Update: Remove not active and delisted projects (#1511) * fix: removed Blast endpoints (#1512) * hotfix: disable polkadot XCM (#1514) * Add promotion link fix (#1515) * feat: support DOT bridge from Asset Hub (#1516) * Add wallets config to broken links check (#1519) * Fix/links (#1524) * Remove Clover and Metadot wallets * Completely remove wallets * Links fix * Workflow fix * More links fixed * More fixes --------- Co-authored-by: Bobo <bobo.kovacevic@gmail.com> Co-authored-by: Carlos Rodríguez <105810861+Juminstock@users.noreply.github.com>
1 parent 57c15ee commit 62d46b5

File tree

37 files changed

+235
-237
lines changed

37 files changed

+235
-237
lines changed

.github/workflows/broken-links.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
repository_dispatch:
55
workflow_dispatch:
66
schedule:
7-
- cron: '0 0 1 * *' # Trigger the workflow every month
7+
- cron: '0 0 1 * *' # Trigger the workflow every month
88

99
jobs:
1010
build_and_check:
@@ -14,15 +14,18 @@ jobs:
1414
- uses: actions/setup-node@v3
1515
with:
1616
node-version: 18
17-
- run: yarn && yarn build
17+
- name: Install dependencies (frozen) and build
18+
run: |
19+
yarn install --frozen-lockfile
20+
yarn build
1821
1922
- name: Link Checker
2023
id: lychee
2124
uses: lycheeverse/lychee-action@v1.7.0
2225
env:
2326
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
2427
with:
25-
args: --verbose "./src/modules/information/faq/dapp-staking/index.ts" "./src/modules/information/faq/transfer/index.ts" "./src/modules/information/faq/xvm-transfer/index.ts" "./src/links/index.ts" "./src/data/ads.json" "./src/data/dynamic_links.json"
28+
args: --verbose "./src/modules/information/faq/dapp-staking/index.ts" "./src/modules/information/faq/transfer/index.ts" "./src/links/index.ts" "./src/data/ads.json" "./src/data/dynamic_links.json" "./src/config/wallets.ts"
2629

2730
- name: Create Issue From File
2831
if: env.lychee_exit_code != 0

.github/workflows/pr-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
node-version: ${{ matrix.node-version }}
1717
- name: lint
1818
run: |
19-
yarn
19+
yarn install --frozen-lockfile
2020
yarn lint
2121
working-directory: ./
2222
run_tests:
@@ -33,7 +33,7 @@ jobs:
3333
node-version: ${{ matrix.node-version }}
3434
- name: unit_test
3535
run: |
36-
yarn
36+
yarn install --frozen-lockfile
3737
yarn test
3838
working-directory: ./
3939
build_code:
@@ -50,6 +50,6 @@ jobs:
5050
node-version: ${{ matrix.node-version }}
5151
- name: build
5252
run: |
53-
yarn
53+
yarn install --frozen-lockfile
5454
yarn build
5555
working-directory: ./

.github/workflows/pull-request-preview.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,12 @@ jobs:
2727
- uses: actions/checkout@v2
2828
- uses: actions/setup-node@v3
2929
with:
30-
node-version: 18
30+
node-version: 20
3131
- run: npm install -g yarn
32-
- run: yarn && yarn build
32+
- name: Install dependencies (frozen) and build
33+
run: |
34+
yarn install --frozen-lockfile
35+
yarn build
3336
- id: deploy_firebase_hosting_channel
3437
uses: FirebaseExtended/action-hosting-deploy@v0
3538
with:
@@ -49,9 +52,9 @@ jobs:
4952
- uses: actions/checkout@v3
5053
- uses: actions/setup-node@v3
5154
with:
52-
node-version: 18
55+
node-version: 20
5356
- name: Install dependencies
54-
run: yarn install --immutable --immutable-cache --check-cache
57+
run: yarn install --frozen-lockfile
5558
- name: Install Playwright Browsers
5659
run: npx playwright install --with-deps
5760
- name: Run Playwright tests

.github/workflows/s3-production.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ jobs:
1919
with:
2020
node-version: 18
2121

22-
- name: install dependencies & build
23-
run: yarn && yarn build
22+
- name: Install dependencies (frozen) and build
23+
run: |
24+
yarn install --frozen-lockfile
25+
yarn build
2426
2527
- name: Configure AWS Credentials
2628
uses: aws-actions/configure-aws-credentials@v1

.github/workflows/s3-staging.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ jobs:
1111
- uses: actions/setup-node@v3
1212
with:
1313
node-version: 18
14-
- run: yarn && yarn build
14+
- name: Install dependencies (frozen) and build
15+
run: |
16+
yarn install --frozen-lockfile
17+
yarn build
1518
- name: Configure AWS Credentials
1619
uses: aws-actions/configure-aws-credentials@v1
1720
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,4 @@ astar-collator
5454
# Chopstick binaries
5555
db.sqlite*
5656
.vercel
57+
CLAUDE.md

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20
-6.97 KB
Binary file not shown.
-105 KB
Binary file not shown.
-284 KB
Binary file not shown.

0 commit comments

Comments
 (0)