From b0074c295f14c9e792d341de8d54baf7a05d1c7f Mon Sep 17 00:00:00 2001 From: EdSDR Date: Sat, 18 Jan 2025 02:10:43 -0300 Subject: [PATCH] fix: sort torus url in `production.ts` --- .../apps-config/src/endpoints/production.ts | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/apps-config/src/endpoints/production.ts b/packages/apps-config/src/endpoints/production.ts index 0d737ad5f01d..3dccbc1103c5 100644 --- a/packages/apps-config/src/endpoints/production.ts +++ b/packages/apps-config/src/endpoints/production.ts @@ -605,6 +605,17 @@ export const prodChains: Omit[] = [ logo: nodesTernoaSVG } }, + { + info: 'torus', + providers: { + mainnet: 'wss://api.torus.network' + }, + text: 'Torus', + ui: { + color: '#070A0E', + logo: chainsTorusPNG + } + }, { info: 'uniarts', providers: { @@ -662,16 +673,5 @@ export const prodChains: Omit[] = [ color: 'linear-gradient(-90deg, #9400D3 0%, #5A5CA9 50%, #00BFFF 100%)', logo: nodesDatahighwayPNG } - }, - { - info: 'torus', - providers: { - mainnet: 'wss://api.torus.network' - }, - text: 'Torus', - ui: { - color: '#070A0E', - logo: chainsTorusPNG - } } ];