-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Light client support for Shiden and Astar (#8262)
* Add Light client support for Shiden and Astar * Polkadot example
- Loading branch information
Showing
8 changed files
with
7,765 additions
and
4 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
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,5 +1,5 @@ | ||
{ | ||
"name": "GM Parachain", | ||
"name": "GM", | ||
"id": "its_a_lifestyle", | ||
"chainType": "Live", | ||
"bootNodes": [ | ||
|
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 |
---|---|---|
|
@@ -6,5 +6,6 @@ | |
// e.g. light://substrate-connect/kusama/gm | ||
export const specs: string[] = [ | ||
'gm', | ||
'shiden', | ||
'tinkernet' | ||
]; |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Copyright 2017-2022 @polkadot/react-api authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Add your imported spec here in alphabetical order. | ||
// The key here reflects the URL of the light client endpoint. | ||
// e.g. light://substrate-connect/polkadot/astar | ||
export const specs: string[] = [ | ||
'astar' | ||
]; |