From db23d680ffe3aa6343f6065505cf464276e286c0 Mon Sep 17 00:00:00 2001 From: David Silverman Date: Sat, 10 Feb 2024 15:12:46 -0500 Subject: [PATCH 1/3] Update rips_registry_schema.json Updated Schema To Provide More Useful Information --- registry/rips_registry_schema.json | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/registry/rips_registry_schema.json b/registry/rips_registry_schema.json index ba5df06..fb90bb4 100644 --- a/registry/rips_registry_schema.json +++ b/registry/rips_registry_schema.json @@ -18,9 +18,21 @@ "chains_with_mainnet_support": { "type": "array", "items": { - "type": "string" + "type": "object", + "required" : ["name", "chainID", "activation_block"], + "properties" : { + "name": { + "type": "string" + }, + "chainID": { + "type": "number" + }, + "activation_block": { + "type": "number" + } + } } } } } - } \ No newline at end of file + } From 985aac49d3966ccabfb9cdcf6641efd6520dfbdf Mon Sep 17 00:00:00 2001 From: David Silverman Date: Sat, 10 Feb 2024 15:17:32 -0500 Subject: [PATCH 2/3] Added support for testnets changed property from chains_with_mainnet_support > chains_with_support to allow for listing of major testnets --- registry/rips_registry_schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/registry/rips_registry_schema.json b/registry/rips_registry_schema.json index fb90bb4..1286680 100644 --- a/registry/rips_registry_schema.json +++ b/registry/rips_registry_schema.json @@ -4,7 +4,7 @@ "type": "array", "items": { "type": "object", - "required": ["number", "type", "chains_with_mainnet_support"], + "required": ["number", "type", "chains_with_support"], "properties": { "number": { "type": "string" @@ -15,7 +15,7 @@ "address": { "type": "string" }, - "chains_with_mainnet_support": { + "chains_with_support": { "type": "array", "items": { "type": "object", From 1d18a4e5d124aedf346f8763487db47b3634caae Mon Sep 17 00:00:00 2001 From: David Silverman Date: Sat, 10 Feb 2024 15:17:48 -0500 Subject: [PATCH 3/3] Update rips_registry.json --- registry/rips_registry.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/rips_registry.json b/registry/rips_registry.json index 9d3820b..d2ae95a 100644 --- a/registry/rips_registry.json +++ b/registry/rips_registry.json @@ -3,7 +3,7 @@ "number": "rip-7212", "type": "precompile", "address": "0x0000000000000000000000000000000000000100", - "chains_with_mainnet_support": [ + "chains_with_support": [ ] } ]