Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added support to paseo parachains ⛓️ #456

Merged
merged 4 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tag-client-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 7 additions & 1 deletion client/src/lib/utils/networkData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down
8 changes: 7 additions & 1 deletion client/tests/paseo.test.ts
Original file line number Diff line number Diff line change
@@ -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();
Loading