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": [ ] } ] diff --git a/registry/rips_registry_schema.json b/registry/rips_registry_schema.json index ba5df06..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,12 +15,24 @@ "address": { "type": "string" }, - "chains_with_mainnet_support": { + "chains_with_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 + }