From a7b45c37c2e52fa1488f7ff3590949f68c62e6c6 Mon Sep 17 00:00:00 2001 From: jordaniza Date: Wed, 27 Mar 2024 15:15:01 +0000 Subject: [PATCH] feat: added IAction to template --- packages/subgraph/schema.graphql | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/subgraph/schema.graphql b/packages/subgraph/schema.graphql index bb175125..1507bf4e 100644 --- a/packages/subgraph/schema.graphql +++ b/packages/subgraph/schema.graphql @@ -8,3 +8,11 @@ type DaoPlugin @entity { "Set plugin specific related data below:" number: BigInt } + +type IAction @entity { + id: ID! #action entity id + daoAddress: Bytes! + to: Bytes! + value: BigInt! + data: Bytes! +} \ No newline at end of file