From 010eb92ad756d9f33a777d840b4728077ebb94ea Mon Sep 17 00:00:00 2001 From: Trevor Miller Date: Sun, 15 Feb 2026 08:00:27 -0500 Subject: [PATCH] Add BitBadges Mainnet (50024) and Testnet (50025) - Mainnet Chain ID: 50024 - Testnet Chain ID: 50025 - EVM-compatible chain built on Cosmos SDK - Documentation: https://docs.bitbadges.io - Explorer: https://explorer.bitbadges.io --- .../additionalChainRegistry/chainid-50024.js | 26 +++++++++++++++++++ .../additionalChainRegistry/chainid-50025.js | 26 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 constants/additionalChainRegistry/chainid-50024.js create mode 100644 constants/additionalChainRegistry/chainid-50025.js diff --git a/constants/additionalChainRegistry/chainid-50024.js b/constants/additionalChainRegistry/chainid-50024.js new file mode 100644 index 0000000000..7dfaaff128 --- /dev/null +++ b/constants/additionalChainRegistry/chainid-50024.js @@ -0,0 +1,26 @@ +export const data = { + "name": "BitBadges", + "chain": "BitBadges", + "rpc": [ + "https://evm-rpc.bitbadges.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitBadges", + "symbol": "BADGE", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://bitbadges.io", + "shortName": "bitbadges", + "chainId": 50024, + "networkId": 50024, + "explorers": [ + { + "name": "BitBadges Explorer", + "url": "https://evm.explorer.bitbadges.io", + "standard": "EIP3091" + } + ] +} + diff --git a/constants/additionalChainRegistry/chainid-50025.js b/constants/additionalChainRegistry/chainid-50025.js new file mode 100644 index 0000000000..1879e78bcf --- /dev/null +++ b/constants/additionalChainRegistry/chainid-50025.js @@ -0,0 +1,26 @@ +export const data = { + "name": "BitBadges Testnet", + "chain": "BitBadges", + "rpc": [ + "https://evm-rpc-testnet.bitbadges.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitBadges", + "symbol": "BADGE", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://bitbadges.io", + "shortName": "bitbadges-testnet", + "chainId": 50025, + "networkId": 50025, + "explorers": [ + { + "name": "BitBadges Testnet Explorer", + "url": "https://evm-testnet.explorer.bitbadges.io", + "standard": "EIP3091" + } + ] +} +