From 1ef2a81c85775e0539e967624deb0daf85350846 Mon Sep 17 00:00:00 2001 From: noreum Date: Sat, 15 Nov 2025 12:37:42 +0300 Subject: [PATCH 1/4] Add Noreum Mainnet chain configuration --- .../additionalChainRegistry/chainid-1177.js | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 constants/additionalChainRegistry/chainid-1177.js diff --git a/constants/additionalChainRegistry/chainid-1177.js b/constants/additionalChainRegistry/chainid-1177.js new file mode 100644 index 0000000000..8148b1e7b9 --- /dev/null +++ b/constants/additionalChainRegistry/chainid-1177.js @@ -0,0 +1,58 @@ +{ + "name": "Noreum Mainnet", + "chain": "NOR", + "rpc": [ + "https://rpc.noreum.org", + "https://mainnet-rpc.noreum.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Noreum", + "symbol": "NOR", + "decimals": 18 + }, + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "EIP2718" }, + { "name": "EIP2930" }, + { "name": "EIP4844" }, + { "name": "BlobTransactions" }, + { "name": "Shanghai" }, + { "name": "Capella" }, + { "name": "Deneb" } + ], + "infoURL": "https://noreum.org", + "shortName": "nor", + "slug": "noreum-mainnet", + "chainId": 1177, + "networkId": 1177, + "status": "active", + "icon": "noreum", + "explorers": [ + { + "name": "NoreumScan", + "url": "https://scan.noreum.org", + "icon": "noreum", + "standard": "EIP3091" + } + ], + "genesis": { + "hash": "0x000000000000000000000000000000000000000000000000000000000000dead", + "timestamp": "2025-01-01T00:00:00Z", + "gasLimit": "30000000" + }, + "upgrades": [ + { "name": "Shanghai", "block": 0 }, + { "name": "Capella", "block": 0 }, + { "name": "Cancun", "block": 0 }, + { "name": "Deneb", "block": 0 } + ], + "bootNodes": [ + "enode://65828b55922172a65320c80c3714b0bc4624d63113dd82a5a520238559ef1bbb981069fad5bfbd33039dba67d1df46c7a0ddc244b2b53c3d486a83e054109279@109.123.247.208:30303" + ], + "parent": { + "type": "L1", + "chain": "NOR" + } +} From 3a3964ddb8d07a65432d62b0139679007a912b0f Mon Sep 17 00:00:00 2001 From: noreum Date: Sat, 15 Nov 2025 12:38:12 +0300 Subject: [PATCH 2/4] Add Noreum Testnet chain configuration --- .../additionalChainRegistry/chainid-21177.js | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 constants/additionalChainRegistry/chainid-21177.js diff --git a/constants/additionalChainRegistry/chainid-21177.js b/constants/additionalChainRegistry/chainid-21177.js new file mode 100644 index 0000000000..190d129bca --- /dev/null +++ b/constants/additionalChainRegistry/chainid-21177.js @@ -0,0 +1,58 @@ +{ + "name": "Noreum Testnet", + "chain": "NOR", + "rpc": [ + "https://testnet-rpc.noreum.org", + "https://rpc-test.noreum.org" + ], + "faucets": [ + "https://faucet.noreum.org" + ], + "nativeCurrency": { + "name": "Test Noreum", + "symbol": "tNOR", + "decimals": 18 + }, + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "EIP2718" }, + { "name": "EIP2930" }, + { "name": "EIP4844" }, + { "name": "BlobTransactions" }, + { "name": "Shanghai" }, + { "name": "Capella" }, + { "name": "Deneb" } + ], + "infoURL": "https://noreum.org/testnet", + "shortName": "tnor", + "slug": "noreum-testnet", + "chainId": 21177, + "networkId": 21177, + "status": "active", + "icon": "noreum", + "explorers": [ + { + "name": "NoreumScan Testnet", + "url": "https://testnet-scan.noreum.org", + "icon": "noreum", + "standard": "EIP3091" + } + ], + "genesis": { + "hash": "0x000000000000000000000000000000000000000000000000000000000000beef", + "timestamp": "2025-01-01T00:00:00Z", + "gasLimit": "30000000" + }, + "upgrades": [ + { "name": "Shanghai", "block": 0 }, + { "name": "Capella", "block": 0 }, + { "name": "Cancun", "block": 0 }, + { "name": "Deneb", "block": 0 } + ], + "bootNodes": [], + "parent": { + "type": "L1", + "chain": "NOR" + } +} From 40b3330b49d2bbfa6e3ce7a3eba19b9062e5874d Mon Sep 17 00:00:00 2001 From: Define101 <93603962+Define101@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:34:41 +0000 Subject: [PATCH 3/4] Export data from chainid-1177.js --- constants/additionalChainRegistry/chainid-1177.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/additionalChainRegistry/chainid-1177.js b/constants/additionalChainRegistry/chainid-1177.js index 8148b1e7b9..30b4eebd7a 100644 --- a/constants/additionalChainRegistry/chainid-1177.js +++ b/constants/additionalChainRegistry/chainid-1177.js @@ -1,4 +1,4 @@ -{ +export const data = { "name": "Noreum Mainnet", "chain": "NOR", "rpc": [ From a2aab214513e49f7c72798bd38e8b726783df4ac Mon Sep 17 00:00:00 2001 From: Define101 <93603962+Define101@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:34:54 +0000 Subject: [PATCH 4/4] Export data from chainid-21177.js --- constants/additionalChainRegistry/chainid-21177.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/additionalChainRegistry/chainid-21177.js b/constants/additionalChainRegistry/chainid-21177.js index 190d129bca..1a296c6e3a 100644 --- a/constants/additionalChainRegistry/chainid-21177.js +++ b/constants/additionalChainRegistry/chainid-21177.js @@ -1,4 +1,4 @@ -{ +export const data = { "name": "Noreum Testnet", "chain": "NOR", "rpc": [