From 1597865f9de37926216d32d8fead08bd3becb8bb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 3 Jun 2026 17:40:08 +0000 Subject: [PATCH 1/6] feat: add frontier-pos-template polkadot project info --- .../parachain/frontier-pos-template.json | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 networks/polkadot/parachain/frontier-pos-template.json diff --git a/networks/polkadot/parachain/frontier-pos-template.json b/networks/polkadot/parachain/frontier-pos-template.json new file mode 100644 index 0000000..6b18817 --- /dev/null +++ b/networks/polkadot/parachain/frontier-pos-template.json @@ -0,0 +1,20 @@ +{ + "data": { + "ParaID": 0, + "Project Name": "frontier-pos-template", + "SS58 Prefix": "", + "Logo": "../../assets/images/frontier-pos-template.png", + "Cover": "", + "Description (en)": "A general public chain development template based on polkadot-sdk and Frontier, using the NPOS protocol and compatible with the Ethereum EVM. It aims to make Polkadot technology more developer-friendly and to be used by more public chain teams.", + "Description (zh)": "", + "Auction Reward & Reward Vesting Schedule (en)": "", + "Auction Reward & Reward Vesting Schedule (zh)": "", + "Website Link": "https://scschain.com/", + "Twitter Link": "", + "Telegram Link": "", + "Discord Link": "", + "Medium Link": "", + "Github Link": "https://github.com/ChainSupport/frontier-pos-template", + "Owner account": "13p2gp4kLSgTx4aXxyXznwJLrnzG2yT2s2a7Dwv4L5VTGyuK" + } +} From 8fea6c6d16bf7228bf2af3db4dbee3809fbccbe8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 3 Jun 2026 17:40:54 +0000 Subject: [PATCH 2/6] fix: clear missing logo path for frontier-pos-template --- networks/polkadot/parachain/frontier-pos-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networks/polkadot/parachain/frontier-pos-template.json b/networks/polkadot/parachain/frontier-pos-template.json index 6b18817..7f3a2b4 100644 --- a/networks/polkadot/parachain/frontier-pos-template.json +++ b/networks/polkadot/parachain/frontier-pos-template.json @@ -3,7 +3,7 @@ "ParaID": 0, "Project Name": "frontier-pos-template", "SS58 Prefix": "", - "Logo": "../../assets/images/frontier-pos-template.png", + "Logo": "", "Cover": "", "Description (en)": "A general public chain development template based on polkadot-sdk and Frontier, using the NPOS protocol and compatible with the Ethereum EVM. It aims to make Polkadot technology more developer-friendly and to be used by more public chain teams.", "Description (zh)": "", From df77db30cf183338ed0aad17138dd8fa8c5ead6c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 3 Jun 2026 17:59:34 +0000 Subject: [PATCH 3/6] fix: correct missing logo paths for geminis and polkadex --- networks/polkadot/parachain/geminis.json | 2 +- networks/polkadot/parachain/polkadex.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/networks/polkadot/parachain/geminis.json b/networks/polkadot/parachain/geminis.json index bd41bcb..fe720ef 100644 --- a/networks/polkadot/parachain/geminis.json +++ b/networks/polkadot/parachain/geminis.json @@ -2,7 +2,7 @@ "data": { "ParaID": 2038, "Project Name": "Geminis", - "Logo": "../../assets/images/geminis.svg", + "Logo": "../../assets/images/geminis.png", "Description (en)": "The 1st Parachain in fair launch without a private sale and supported by the advanced ParaState tech stack.", "Parachain Crowdloans Allocation (en)": "https://docs.geminis.network/tokenomics", "Auction Reward & Reward Vesting Schedule (en)": "", diff --git a/networks/polkadot/parachain/polkadex.json b/networks/polkadot/parachain/polkadex.json index bb65170..a925a22 100644 --- a/networks/polkadot/parachain/polkadex.json +++ b/networks/polkadot/parachain/polkadex.json @@ -2,7 +2,7 @@ "data": { "ParaID": 2036, "Project Name": "Polkadex", - "Logo": "../../assets/images/polkadex.svg", + "Logo": "../../assets/images/Polkadex.svg", "Description (en)": "Polkadex is a fully decentralized peer-to-peer orderbook-based cryptocurrency exchange for the DeFi ecosystem built on Substrate.", "Parachain Crowdloans Allocation (en)": "https://www.polkadex.trade/crowdloans", "Auction Reward & Reward Vesting Schedule (en)": "https://polkadex.medium.com/polkadex-needs-you-lets-win-a-parachain-on-polkadot-together-b0e480642bd3", From 03ba2ae8234bdb8b945bfc109af36a6e05d3f705 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 6 Jun 2026 22:39:26 +0000 Subject: [PATCH 4/6] Add referenced GitHub workflow files --- .github/Workflows | 36 ++++++++++++++++++++++++++++++++++++ .github/workflows/blank.yml | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 .github/Workflows create mode 100644 .github/workflows/blank.yml diff --git a/.github/Workflows b/.github/Workflows new file mode 100644 index 0000000..01502b1 --- /dev/null +++ b/.github/Workflows @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..344ea8d --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. From b66eec4a0546ea685c1e1cfb3dbcc28bb50da2f0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 6 Jun 2026 22:40:46 +0000 Subject: [PATCH 5/6] Refine added workflow metadata and permissions --- .github/Workflows | 36 ------------------------------------ .github/workflows/blank.yml | 8 +++++--- 2 files changed, 5 insertions(+), 39 deletions(-) delete mode 100644 .github/Workflows diff --git a/.github/Workflows b/.github/Workflows deleted file mode 100644 index 01502b1..0000000 --- a/.github/Workflows +++ /dev/null @@ -1,36 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the "main" branch - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 344ea8d..eeec718 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: +name: CI # Controls when the workflow will run on: @@ -17,6 +17,8 @@ on: jobs: # This workflow contains a single job called "build" build: + permissions: + contents: read # The type of runner that the job will run on runs-on: ubuntu-latest @@ -25,11 +27,11 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v4 - # Runs a single command using the runners shell + # Runs a single command using the runner's shell - name: Run a one-line script run: echo Hello, world! - # Runs a set of commands using the runners shell + # Runs a set of commands using the runner's shell - name: Run a multi-line script run: | echo Add other actions to build, From 061c3b78eee5ec369e1ee50d1bc91ca83662d949 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 6 Jun 2026 22:41:46 +0000 Subject: [PATCH 6/6] Harden added workflow and pin checkout action --- .github/workflows/blank.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index eeec718..548ba10 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -25,7 +25,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.2.1 # Runs a single command using the runner's shell - name: Run a one-line script