Skip to content

Commit

Permalink
[factory]: Adding new father-dairy group
Browse files Browse the repository at this point in the history
  • Loading branch information
sismobot committed Oct 30, 2023
1 parent 063a3f4 commit 3f31251
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/father-dairy/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 = {
"0xef46D5fe753c988606E6F703260D816AF53B03EB": "1",
};

return [
{
name: "father-dairy",
timestamp: context.timestamp,
description: "zk meme group",
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 @@ -252,6 +252,7 @@ import exchangeSmartContract from "./exchange-smart-contract";
import fantomAlphaRoundDonaters from "./fantom-alpha-round-donaters";
import farcasterV3NftHolders from "./farcaster-v3-nft-holders";
import farmer from "./farmer";
import fatherDairy from "./father-dairy";
import feiSnapshotPasser from "./fei-snapshot-passer";
import figogao from "./figogao";
import finbobEthdam from "./finbob-ethdam";
Expand Down Expand Up @@ -1141,6 +1142,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"events-in-common-with-dydymoon": eventsInCommonWithDydymoon,
"exchange-smart-contract": exchangeSmartContract,
"farcaster-v3-nft-holders": farcasterV3NftHolders,
"father-dairy": fatherDairy,
"fei-snapshot-passer": feiSnapshotPasser,
"finbob-ethdam": finbobEthdam,
"first-masquerade-poap-holders": firstMasqueradePoapHolders,
Expand Down

0 comments on commit 3f31251

Please sign in to comment.