diff --git a/src/assets/images/external/buster.png b/src/assets/images/external/buster.png new file mode 100644 index 0000000..c91594f Binary files /dev/null and b/src/assets/images/external/buster.png differ diff --git a/src/pages/Documentation/Developers/Explorers/ExplorerList.tsx b/src/pages/Documentation/Developers/Explorers/ExplorerList.tsx index 5c9e09b..40f931e 100644 --- a/src/pages/Documentation/Developers/Explorers/ExplorerList.tsx +++ b/src/pages/Documentation/Developers/Explorers/ExplorerList.tsx @@ -71,11 +71,18 @@ export const EXPLORERS: NavItem[] = [ href: 'https://explorer.cogwheel.zone/symphony', description: 'An explorer from one of our supporting validators.', }, - { + { id: '11', label: 'Shazoe Explorer', target: '_blank', href: 'https://explorer.shazoe.xyz/symphony-testnet', description: 'An explorer from one of our supporting validators.', }, + { + id: '12', + label: 'Buster Explorer', + target: '_blank', + href: 'https://explorer.busternode.xyz/symphony-testnet', + description: 'An explorer from one of our supporting validators.', + }, ]; diff --git a/src/pages/Documentation/Developers/Validators/AddressBooks.tsx b/src/pages/Documentation/Developers/Validators/AddressBooks.tsx index 8215e49..e2747f3 100644 --- a/src/pages/Documentation/Developers/Validators/AddressBooks.tsx +++ b/src/pages/Documentation/Developers/Validators/AddressBooks.tsx @@ -57,11 +57,18 @@ export const ADDRESS_BOOKS: NavItem[] = [ href: 'https://storage.crouton.digital/testnet/symphony/files/addrbook.json', description: 'The address book needed to start a node', }, - { + { id: '9', label: 'Shazoe', target: '_blank', href: 'https://files.shazoe.xyz/testnets/symphony/addrbook.json', description: 'The address book needed to start a node', }, + { + id: '10', + label: 'Buster', + target: '_blank', + href: 'https://snapshot.busternode.xyz/testnets/symphony/addrbook.json', + description: 'The address book needed to start a node', + }, ]; diff --git a/src/pages/Documentation/Developers/Validators/GenesisFiles.tsx b/src/pages/Documentation/Developers/Validators/GenesisFiles.tsx index 1634800..3565a4b 100644 --- a/src/pages/Documentation/Developers/Validators/GenesisFiles.tsx +++ b/src/pages/Documentation/Developers/Validators/GenesisFiles.tsx @@ -50,11 +50,18 @@ export const GENESIS_FILES: NavItem[] = [ href: 'https://storage.crouton.digital/testnet/symphony/files/genesis.json', description: 'The JSON needed to start a node', }, - { + { id: '8', label: 'Shazoe', target: '_blank', href: 'https://files.shazoe.xyz/testnets/symphony/genesis.json', description: 'The JSON needed to start a node', }, + { + id: '9', + label: 'Buster', + target: '_blank', + href: 'https://snapshot.busternode.xyz/testnets/symphony/genesis.json', + description: 'The JSON needed to start a node', + }, ]; diff --git a/src/pages/Documentation/Developers/Validators/InstallationGuides.tsx b/src/pages/Documentation/Developers/Validators/InstallationGuides.tsx index e480d9d..f88b94b 100644 --- a/src/pages/Documentation/Developers/Validators/InstallationGuides.tsx +++ b/src/pages/Documentation/Developers/Validators/InstallationGuides.tsx @@ -79,11 +79,18 @@ export const INSTALLATION_GUIDES: NavItem[] = [ href: 'https://docs.cogwheel.zone/testnet/symphony-testnet/install-node', description: 'Guide to install node and set up the validator.', }, - { + { id: '12', label: 'Shazoe', target: '_blank', href: 'https://services.shazoe.xyz/testnets/symphony/node-installation', description: 'Guide to install node and set up the validator.', }, + { + id: '13', + label: 'Buster', + target: '_blank', + href: 'https://doc.busternode.xyz/testnets/symphony/installation', + description: 'Guide to install node and set up the validator.', + }, ]; diff --git a/src/pages/Documentation/Developers/Validators/Snapshots.tsx b/src/pages/Documentation/Developers/Validators/Snapshots.tsx index 5303394..bbe0af6 100644 --- a/src/pages/Documentation/Developers/Validators/Snapshots.tsx +++ b/src/pages/Documentation/Developers/Validators/Snapshots.tsx @@ -43,11 +43,18 @@ export const SNAPSHOTS: NavItem[] = [ href: 'https://storage.crouton.digital/testnet/symphony/snapshots/symphony_latest.tar.lz4', description: 'Snapshots to speed up validator synchronization', }, - { + { id: '7', label: 'Shazoe', target: '_blank', href: 'https://snapshot1.shazoe.xyz/testnets/snapshot1-symphony.tar.lz4', description: 'Snapshots to speed up validator synchronization', }, + { + id: '8', + label: 'Buster', + target: '_blank', + href: 'https://snapshot.busternode.xyz/testnets/symphony/snapshot-symphony.tar.lz4', + description: 'Snapshots to speed up validator synchronization', + }, ]; diff --git a/src/sections/TrustedCompaniesSection/TrustedCompanies.tsx b/src/sections/TrustedCompaniesSection/TrustedCompanies.tsx index fb952a6..0c794b9 100644 --- a/src/sections/TrustedCompaniesSection/TrustedCompanies.tsx +++ b/src/sections/TrustedCompaniesSection/TrustedCompanies.tsx @@ -50,6 +50,7 @@ import monday from '@/assets/images/external/monday.png'; import marketWatch from '@/assets/images/external/marketwatch.jpg'; import businessInsider from '@/assets/images/external/business-insider.png'; import shazoe from '@/assets/images/external/shazoe.jpg'; +import buster from '@/assets/images/external/buster.png'; type Company = { id: number; @@ -358,4 +359,10 @@ export const COMPANIES: Company[] = [ src: shazoe, logoClass: 'max-h-10', }, + { + id: 51, + name: 'Buster', + src: buster, + logoClass: 'max-h-10', + }, ];