diff --git a/.github/workflows/tag-client-pr.yml b/.github/workflows/tag-client-pr.yml index 9435c9d4..ca90784b 100644 --- a/.github/workflows/tag-client-pr.yml +++ b/.github/workflows/tag-client-pr.yml @@ -12,7 +12,7 @@ jobs: label-prs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Label PR run: gh pr edit $PR_NUMBER --add-label $LABEL_NAME env: diff --git a/client/src/lib/utils/networkData.ts b/client/src/lib/utils/networkData.ts index dcc3495f..8b7a80fb 100644 --- a/client/src/lib/utils/networkData.ts +++ b/client/src/lib/utils/networkData.ts @@ -55,7 +55,13 @@ export const Westend: NetworkData = { export const Paseo: NetworkData = { networkName: "Paseo", currency: "PAS", - chains: [{ name: "Paseo Relay", id: -1 }], + chains: [ + { name: "Paseo Relay", id: -1 }, + { name: "AssetHub", id: 1000 }, + { name: "BridgeHub", id: 1002 }, + { name: "People", id: 1004 }, + { name: "Coretime", id: 1005 }, + ], endpoint: faucetUrl("https://paseo-faucet.parity-testnet.parity.io/drip/web"), explorer: null, }; diff --git a/client/tests/paseo.test.ts b/client/tests/paseo.test.ts index 568e81a4..d900745b 100644 --- a/client/tests/paseo.test.ts +++ b/client/tests/paseo.test.ts @@ -1,6 +1,12 @@ import { FaucetTests } from "./faucet.js"; -const chains = [{ name: "Paseo Relay", id: -1 }]; +const chains = [ + { name: "Paseo Relay", id: -1 }, + { name: "AssetHub", id: 1000 }, + { name: "BridgeHub", id: 1002 }, + { name: "People", id: 1004 }, + { name: "Coretime", id: 1005 }, +]; const tests = new FaucetTests({ faucetName: "Paseo Faucet", chains, url: "/", expectTransactionLink: false }); tests.runTests();