From 408f20574090e4d0bce8a38396e44c372277af27 Mon Sep 17 00:00:00 2001 From: Diego Figueroa Date: Fri, 15 Nov 2024 00:19:18 -0400 Subject: [PATCH] chore: add catalog entities --- .catalog-info.yaml | 27 +++++++++++++++++++++++++++ core/.catalog-info.yaml | 16 ++++++++++++++++ gasometer/.catalog-info.yaml | 16 ++++++++++++++++ runtime/.catalog-info.yaml | 16 ++++++++++++++++ 4 files changed, 75 insertions(+) create mode 100644 .catalog-info.yaml create mode 100644 core/.catalog-info.yaml create mode 100644 gasometer/.catalog-info.yaml create mode 100644 runtime/.catalog-info.yaml diff --git a/.catalog-info.yaml b/.catalog-info.yaml new file mode 100644 index 00000000..34dc7154 --- /dev/null +++ b/.catalog-info.yaml @@ -0,0 +1,27 @@ +--- +apiVersion: backstage.io/v1alpha1 +kind: Location +metadata: + name: sputnikvm-public + description: SputnikVM repository +spec: + targets: + - ./core/.catalog-info.yaml + - ./runtime/.catalog-info.yaml + - ./gasometer/.catalog-info.yaml +--- +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: sputnikvm-evm + title: SputnikVM evm + description: Main library that re-exports most things + tags: + - ethereum + links: [] + annotations: + aurora.dev/security-tier: "1" +spec: + owner: engine-team + type: library + lifecycle: production diff --git a/core/.catalog-info.yaml b/core/.catalog-info.yaml new file mode 100644 index 00000000..93352640 --- /dev/null +++ b/core/.catalog-info.yaml @@ -0,0 +1,16 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: sputnikvm-core + title: SputnikVM core + description: Core library defining the basic execution rules + tags: + - ethereum + links: [] + annotations: + aurora.dev/security-tier: "1" +spec: + owner: engine-team + type: library + lifecycle: production + subcomponentOf: sputnikvm-evm diff --git a/gasometer/.catalog-info.yaml b/gasometer/.catalog-info.yaml new file mode 100644 index 00000000..9ba9653c --- /dev/null +++ b/gasometer/.catalog-info.yaml @@ -0,0 +1,16 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: sputnikvm-gasometer + title: SputnikVM gasometer + description: Integration of Ethereum gas rules + tags: + - ethereum + links: [] + annotations: + aurora.dev/security-tier: "1" +spec: + owner: engine-team + type: library + lifecycle: production + subcomponentOf: sputnikvm-evm diff --git a/runtime/.catalog-info.yaml b/runtime/.catalog-info.yaml new file mode 100644 index 00000000..50b5c3dd --- /dev/null +++ b/runtime/.catalog-info.yaml @@ -0,0 +1,16 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: sputnikvm-runtime + title: SputnikVM runtime + description: Runtime defining interface for block, transaction, and storage + tags: + - ethereum + links: [] + annotations: + aurora.dev/security-tier: "1" +spec: + owner: engine-team + type: library + lifecycle: production + subcomponentOf: sputnikvm-evm