Skip to content

Commit

Permalink
[factory]: Add new group-of-math-students group (#2263)
Browse files Browse the repository at this point in the history
Co-authored-by: bigq <[email protected]>
  • Loading branch information
sismobot and yum0e authored Oct 29, 2023
1 parent c4658c6 commit a9cddcf
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 3 deletions.
36 changes: 36 additions & 0 deletions group-generators/generators/group-of-math-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-math-students",
timestamp: context.timestamp,
description: "Data Group of Math Students",
specs: "NA",
data: jsonListData0,
valueType: ValueType.Score,
tags: [Tags.Factory],
},
];
},
};

export default generator;
8 changes: 5 additions & 3 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 groupOfChemistryStudents from "./group-of-chemistry-students";
import groupOfMathStudents from "./group-of-math-students";
import group2m from "./group2m";
import groupsOfPhysics from "./groups-of-physics";
import groupsOfScience from "./groups-of-science";
Expand Down Expand Up @@ -980,7 +981,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"aztec-connect-depositors": aztecActiveDepositors,
"b1y3-og-voters": b1y3OgVoters,
"b74cky": b74cky,
"babt-holders-bsc":babtHolders,
"babt-holders-bsc": babtHolders,
"baby2father-eth": baby2fatherEth,
"backtomiami": backtomiami,
"balkaneros-in-antler": balkanerosInAntler,
Expand Down Expand Up @@ -1157,6 +1158,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"github-test": githubTest,
"goerli-uni-holders": goerliUniHolders,
"goreliuni": goreliuni,
"group-of-math-students": groupOfMathStudents,
"group-of-chemistry-students": groupOfChemistryStudents,
"group2m": group2m,
"groups-of-physics": groupsOfPhysics,
Expand Down Expand Up @@ -1347,7 +1349,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"hennadii": hennadii,
"higepens": higepens,
"hodlini": hodlini,
"hop-protocol-101":hopProtocol101,
"hop-protocol-101": hopProtocol101,
"houdz-eth": houdzEth,
"hthoe": hthoe,
"humanbound": humanbound,
Expand Down Expand Up @@ -1494,7 +1496,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"optimists": optimists,
"orange-dao-contributors": orangeDaoContributors,
"osa": osa,
"otterspace-sample":otterspace,
"otterspace-sample": otterspace,
"ox10": ox10,
"oxbage": oxbage,
"padultra": padultra,
Expand Down

0 comments on commit a9cddcf

Please sign in to comment.