Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[factory]: Add new zuko-development-team group #2216

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions group-generators/generators/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -881,6 +881,7 @@ import zkPayQuest from "./zkpay-quest";
import zksyncGithubStargazers from "./zksync-github-stargazers";
import zl019 from "./zl019";
import zohalKYC from "./zohal-KYC";
import zukoDevelopmentTeam from "./zuko-development-team";
import zykloonEpochDepositors from "./zykloon-epoch-depositors";


Expand Down Expand Up @@ -1767,5 +1768,6 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"zksync-github-stargazers": zksyncGithubStargazers,
"zl019": zl019,
"zohal-KYC": zohalKYC,
"zuko-development-team": zukoDevelopmentTeam,
"zykloon-epoch-depositors": zykloonEpochDepositors,
};
39 changes: 39 additions & 0 deletions group-generators/generators/zuko-development-team/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

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.Weekly,

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


const jsonListData0 = {
"thomphreys.eth": "1",
"0x1dF6bE628F34a964AcFb695CD9F5417DBc95ff42": "1",
"0xe7910F0b83ad155737043c771E2594f74B0BB739": "1",
"0xb81B9B88e764cb6b4E02c5D0F6D6D9051A61E020": "1",
};

return [
{
name: "zuko-development-team",
timestamp: context.timestamp,
description: "Data Group of the Zuko Development Team",
specs: "Development team of Zuko for ETHOnline 2023. Group is for testing purposes only to avoid using impersonation. ",
data: jsonListData0,
valueType: ValueType.Score,
tags: [Tags.Factory],
},
];
},
};

export default generator;
Loading