Skip to content

Commit

Permalink
[factory]: Adding new test-69420 group (#2212)
Browse files Browse the repository at this point in the history
  • Loading branch information
sismobot authored Oct 14, 2023
1 parent af8ed30 commit c1637bc
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 @@ -731,6 +731,7 @@ import tayaFans from "./taya-fans";
import tayaSFriends from "./taya-s-friends";
import teamVLancer from "./team-v-lancer";
import test from "./test";
import test69420 from "./test-69420";
import testBadge from "./test-badge";
import testBadge01 from "./test-badge01";
import testDataGroup from "./test-data-group";
Expand Down Expand Up @@ -1613,6 +1614,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"taya-s-friends": tayaSFriends,
"team-v-lancer": teamVLancer,
"test": test,
"test-69420": test69420,
"test-badge": testBadge,
"test-badge01": testBadge01,
"test-data-group": testDataGroup,
Expand Down
36 changes: 36 additions & 0 deletions group-generators/generators/test-69420/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: "test-69420",
timestamp: context.timestamp,
description: "NA",
specs: "NA",
data: jsonListData0,
valueType: ValueType.Score,
tags: [Tags.Factory],
},
];
},
};

export default generator;

0 comments on commit c1637bc

Please sign in to comment.