From 6284243d2f8046c92f07306bf7f132ae03cd8b38 Mon Sep 17 00:00:00 2001 From: Soosho Date: Mon, 8 Dec 2025 15:29:11 +0800 Subject: [PATCH 1/2] Add Aeru blockchain configuration for Chain ID 192 - Updated chainIds.js to include Chain ID 192 (aru). - Created additionalChainRegistry/chainid-192.js with details for Aeru, including RPC endpoints, native currency, and explorer information. --- .../additionalChainRegistry/chainid-192.js | 31 ++++++++++++------- constants/chainIds.js | 1 + 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/constants/additionalChainRegistry/chainid-192.js b/constants/additionalChainRegistry/chainid-192.js index bf896e08a2..47950cbb04 100644 --- a/constants/additionalChainRegistry/chainid-192.js +++ b/constants/additionalChainRegistry/chainid-192.js @@ -1,26 +1,35 @@ export const data = { - "name": "Watr Mainnet", - "chain": "WATR", - "icon": "watr", + "name": "Aeru", + "chain": "ARU", + "icon": "aru", "rpc": [ - "https://rpc.watr.org/ext/bc/EypLFUSzC2wdbFJovYS3Af1E7ch1DJf7KxKoGR5QFPErxQkG1/rpc" + "https://rpc.aruscan.com", + "wss://wss.aruscan.com" ], "faucets": [], "nativeCurrency": { - "name": "WAT", - "symbol": "WAT", + "name": "Aeru", + "symbol": "ARU", "decimals": 18 }, - "infoURL": "https://www.watr.org", - "shortName": "watr-mainnet", + "features": [{ "name": "EIP155" }], + "infoURL": "https://atheru.org/", + "shortName": "aru", "chainId": 192, "networkId": 192, "explorers": [ { - "name": "Watr Explorer", - "url": "https://explorer.watr.org", - "icon": "watr", + "name": "aruscan", + "url": "https://aruscan.com", "standard": "EIP3091" } + ], + "icons": [ + { + "url": "ipfs://bafkreihwgtuhhd7twd73f4lw42vlz5la47s5t5maotlvf5b26xxlmmbq7m", + "width": 4501, + "height": 4501, + "format": "png" + } ] } \ No newline at end of file diff --git a/constants/chainIds.js b/constants/chainIds.js index a22ae8daa8..f552e491b2 100644 --- a/constants/chainIds.js +++ b/constants/chainIds.js @@ -45,6 +45,7 @@ export default { "173": "eni", "177": "hsk", "181": "water", + "192": "aru", "185": "mint", "196": "xlayer", "199": "bittorrent", From 9b7f538c98b23860695f57b823d3ccc4684572db Mon Sep 17 00:00:00 2001 From: Soosho Date: Mon, 8 Dec 2025 15:32:44 +0800 Subject: [PATCH 2/2] Update chainIds.js to correct placement of Chain ID 192 (aru) --- constants/chainIds.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/chainIds.js b/constants/chainIds.js index f552e491b2..7f8f4ee1db 100644 --- a/constants/chainIds.js +++ b/constants/chainIds.js @@ -45,8 +45,8 @@ export default { "173": "eni", "177": "hsk", "181": "water", - "192": "aru", "185": "mint", + "192": "aru", "196": "xlayer", "199": "bittorrent", "200": "xdaiarb",