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

Update Onfinality to Support Multiple Blockchains #9844

Merged
merged 24 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5c70a98
Add OnFinality Westmint endpoint
mikexing-onf Jul 26, 2023
cb9196f
Merge branch 'polkadot-js:master' into master
mikespook Aug 4, 2023
8e470af
added OnFinality API for BridgeHub Kusama
mikexing-onf Aug 4, 2023
7696b5b
Merge branch 'polkadot-js:master' into master
mikespook Aug 7, 2023
debf546
added OnFinality API for BridgeHub Westend
mikexing-onf Aug 7, 2023
54be928
Merge branch 'polkadot-js:master' into master
mikespook Aug 11, 2023
c2e26be
added OnFinality BridgeHub Polkadot API
mikexing-onf Aug 11, 2023
4dd8ce5
Added multiple OnFinality API
mikexing-onf Aug 11, 2023
5a44247
Added OnFinality Equilibrium API
mikexing-onf Aug 11, 2023
772269b
Merge branch 'polkadot-js:master' into master
mikespook Aug 14, 2023
872b200
added OnFinality API for Bitgreen
mikexing-onf Aug 14, 2023
31ee806
added OnFinality API for Darwinia
mikexing-onf Aug 14, 2023
8a794b9
Merge branch 'polkadot-js:master' into master
mikespook Aug 18, 2023
12360c1
added OnFinality API of Polkadex Parachain
mikexing-onf Aug 18, 2023
374cbc0
Merge branch 'polkadot-js:master' into master
mikespook Aug 28, 2023
d30103d
added OnFinality API Darwinia back
mikexing-onf Aug 28, 2023
c755b5f
Merge branch 'polkadot-js:master' into master
mikespook Aug 29, 2023
bed1bb8
added equilibrium OnFinality API back
mikexing-onf Aug 29, 2023
ca7ea39
Merge branch 'polkadot-js:master' into master
mikespook Aug 31, 2023
429af37
remove Statemine (Kusama Assethub) and Kusama Bridgehub
Aug 31, 2023
aef620f
remove kusamaBridgeHub
GitHubMind Sep 4, 2023
c9718c9
fix bridgehub-polkadot lose
GitHubMind Sep 6, 2023
db4a592
Merge branch 'polkadot-js:master' into master
mikespook Sep 10, 2023
68edfe6
Update packages/apps-config/src/endpoints/testing.ts
GitHubMind Sep 12, 2023
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 packages/apps-config/src/endpoints/production.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const prodChains: Omit<EndpointOption, 'teleport'>[] = [
providers: {
'Aleph Zero Foundation': 'wss://ws.azero.dev',
Dwellir: 'wss://aleph-zero-rpc.dwellir.com'

// OnFinality: 'wss://aleph-zero.api.onfinality.io/public-ws'
},
text: 'Aleph Zero',
ui: {
Expand Down
4 changes: 2 additions & 2 deletions packages/apps-config/src/endpoints/productionRelayKusama.ts
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ export const prodParasKusamaCommon: EndpointOption[] = [
'IBP-GeoDNS1': 'wss://sys.ibp.network/statemine',
'IBP-GeoDNS2': 'wss://sys.dotters.network/statemine',
LuckyFriday: 'wss://rpc-asset-hub-kusama.luckyfriday.io',
OnFinality: 'wss://statemine.api.onfinality.io/public-ws',
// OnFinality: 'wss://statemine.api.onfinality.io/public-ws',
Parity: 'wss://kusama-asset-hub-rpc.polkadot.io',
RadiumBlock: 'wss://statemine.public.curie.radiumblock.co/ws',
Stakeworld: 'wss://ksm-rpc.stakeworld.io/assethub'
Expand All @@ -830,7 +830,7 @@ export const prodParasKusamaCommon: EndpointOption[] = [
'IBP-GeoDNS1': 'wss://sys.ibp.network/bridgehub-kusama',
'IBP-GeoDNS2': 'wss://sys.dotters.network/bridgehub-kusama',
LuckyFriday: 'wss://rpc-bridge-hub-kusama.luckyfriday.io',
OnFinality: 'wss://bridgehub-kusama.api.onfinality.io/public-ws',
// OnFinality: 'wss://bridgehub-kusama.api.onfinality.io/public-ws',
Parity: 'wss://kusama-bridge-hub-rpc.polkadot.io',
Stakeworld: 'wss://ksm-rpc.stakeworld.io/bridgehub'
},
Expand Down
3 changes: 2 additions & 1 deletion packages/apps-config/src/endpoints/testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ export const testChains: Omit<EndpointOption, 'teleport'>[] = [
info: 'aleph-testnet',
providers: {
'Aleph Zero Foundation': 'wss://ws.test.azero.dev',
Dwellir: 'wss://aleph-zero-testnet-rpc.dwellir.com'
Dwellir: 'wss://aleph-zero-testnet-rpc.dwellir.com',
GitHubMind marked this conversation as resolved.
Show resolved Hide resolved
// OnFinality: 'wss://aleph-zero.api.onfinality.io/public-ws'
},
text: 'Aleph Zero Testnet',
ui: {
Expand Down