Skip to content

Commit

Permalink
[factory]: Adding new nft-testing group
Browse files Browse the repository at this point in the history
  • Loading branch information
sismobot committed Oct 22, 2023
1 parent c932503 commit 87b2044
Show file tree
Hide file tree
Showing 2 changed files with 39 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 @@ -491,6 +491,7 @@ import neoneoBadge from "./neoneo-badge";
import netchan from "./netchan";
import nexon from "./nexon";
import nftMinters from "./nft-minters";
import nftTesting from "./nft-testing";
import nft7771eth from "./nft7771eth";
import nftownerAddress from "./nftowner-address";
import nftyardLensFollower from "./nftyard-lens-follower";
Expand Down Expand Up @@ -1189,6 +1190,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
"myfriends": myfriends,
"myteammembers": myteammembers,
"nft-minters": nftMinters,
"nft-testing": nftTesting,
"nftowner-address": nftownerAddress,
"nice": nice,
"noun-owner": nounOwner,
Expand Down
37 changes: 37 additions & 0 deletions group-generators/generators/nft-testing/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

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 = {
"0xbaf502F416AEED726883832B76322001034aaD92": "1",
"0x547F61FC3B2AC2B21518d660dE20398776d7C755": "1",
};

return [
{
name: "nft-testing",
timestamp: context.timestamp,
description: "nft testing",
specs: "nft testing",
data: jsonListData0,
valueType: ValueType.Score,
tags: [Tags.Factory],
},
];
},
};

export default generator;

0 comments on commit 87b2044

Please sign in to comment.