-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added support to
paseo
parachains ⛓️ (#456)
Resolves #437 This pull request includes an update to the `Paseo` network data in the `networkData.ts` file to add several new chains. Changes to network data: * [`client/src/lib/utils/networkData.ts`](diffhunk://#diff-18208224988b15c7ed0e5e9f908827fea45f65edd128b85a8e2453b84e11dac2L58-R64): Added new chains `AssetHub`, `BridgeHub`, `People`, and `Coretime` to the `Paseo` network.
- Loading branch information
Showing
3 changed files
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); |