Skip to content

Commit

Permalink
Merge branch 'main' into factory/group-generators-pr/group-group-of-m…
Browse files Browse the repository at this point in the history
…ath-students
  • Loading branch information
yum0e authored Oct 29, 2023
2 parents 6a57d62 + 9828cc2 commit ec4c6f8
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions group-generators/generators/group-of-chemistry-students/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.Daily,

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


const jsonListData0 = {
"0x3DdFBcF4375d2cFa36A71819ca5F6f0F018255eD": "1",
};

return [
{
name: "group-of-chemistry-students",
timestamp: context.timestamp,
description: "Data Group of chemistry Students",
specs: "NA",
data: jsonListData0,
valueType: ValueType.Score,
tags: [Tags.Factory],
},
];
},
};

export default generator;
2 changes: 2 additions & 0 deletions group-generators/generators/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ import goreliuni from "./goreliuni";
import gotchiFrenchArmyXSismoLive from "./gotchi-french-army-x-sismo-live";
import grailMember from "./grail-member";
import groupOfMathStudents from "./group-of-math-students";
import groupOfChemistryStudents from "./group-of-chemistry-students";
import group2m from "./group2m";
import groupsOfScience from "./groups-of-science";
import gugulan from "./gugulan";
Expand Down Expand Up @@ -1157,6 +1158,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"goerli-uni-holders": goerliUniHolders,
"goreliuni": goreliuni,
"group-of-math-students": groupOfMathStudents,
"group-of-chemistry-students": groupOfChemistryStudents,
"group2m": group2m,
"groups-of-science": groupsOfScience,
"guild-members": guildMembers,
Expand Down

0 comments on commit ec4c6f8

Please sign in to comment.