Skip to content

Commit

Permalink
[factory]: Adding new truchottestgroup group
Browse files Browse the repository at this point in the history
  • Loading branch information
sismobot committed Oct 6, 2023
1 parent 08ab1cd commit 0210b99
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
2 changes: 2 additions & 0 deletions group-generators/generators/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,7 @@ import tradingviewAlertConnectorStargazers from "./tradingview-alert-connector-s
import treasure from "./treasure";
import troix123 from "./troix123";
import trove from "./trove";
import truchottestgroup from "./truchottestgroup";
import tuleepDrop from "./tuleep-drop";
import tundraPlayersClub from "./tundra-players-club";
import turkiyeEarthquakeReliefDao from "./turkiye-earthquake-relief-dao";
Expand Down Expand Up @@ -1638,6 +1639,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"treasure": treasure,
"troix123": troix123,
"trove": trove,
"truchottestgroup": truchottestgroup,
"tuleep-drop": tuleepDrop,
"tundra-players-club": tundraPlayersClub,
"turkiye-earthquake-relief-dao": turkiyeEarthquakeReliefDao,
Expand Down
36 changes: 36 additions & 0 deletions group-generators/generators/truchottestgroup/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

import { Tags, ValueType, GroupWithData } from "topics/group";
import {
GenerationContext,
GenerationFrequency,
GroupGenerator,
} from "topics/group-generator";

// Generated from factory.sismo.io

const generator: GroupGenerator = {

generationFrequency: GenerationFrequency.Once,

generate: async (context: GenerationContext): Promise<GroupWithData[]> => {


const jsonListData0 = {
"0xA36F8bAe7Cc83Ee4E870F913Cf55264EFA01a18B": "3",
};

return [
{
name: "truchottestgroup",
timestamp: context.timestamp,
description: "TruchotTestGroup",
specs: "TruchotTestGroup",
data: jsonListData0,
valueType: ValueType.Score,
tags: [Tags.Factory],
},
];
},
};

export default generator;

0 comments on commit 0210b99

Please sign in to comment.