Commit 6ddc477 1 parent 2c78dee commit 6ddc477 Copy full SHA for 6ddc477
File tree 2 files changed +39
-0
lines changed
group-generators/generators
2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ import { Tags , ValueType , GroupWithData } from "topics/group" ;
3
+ import {
4
+ GenerationContext ,
5
+ GenerationFrequency ,
6
+ GroupGenerator ,
7
+ } from "topics/group-generator" ;
8
+
9
+ // Generated from factory.sismo.io
10
+
11
+ const generator : GroupGenerator = {
12
+
13
+ generationFrequency : GenerationFrequency . Daily ,
14
+
15
+ generate : async ( context : GenerationContext ) : Promise < GroupWithData [ ] > => {
16
+
17
+
18
+ const jsonListData0 = {
19
+ "0x6b24fD32c923965ba85bea3B066870c23e9361f2" : "1" ,
20
+ "0xee9382Bf729Ff377Da6CEEe428B3228AF5367A31" : "1" ,
21
+ } ;
22
+
23
+ return [
24
+ {
25
+ name : "esim" ,
26
+ timestamp : context . timestamp ,
27
+ description : "eSIM platform users" ,
28
+ specs : "nothing" ,
29
+ data : jsonListData0 ,
30
+ valueType : ValueType . Score ,
31
+ tags : [ Tags . Factory ] ,
32
+ } ,
33
+ ] ;
34
+ } ,
35
+ } ;
36
+
37
+ export default generator ;
Original file line number Diff line number Diff line change @@ -215,6 +215,7 @@ import ensVoter from "./ens-voter";
215
215
import ensVoters from "./ens-voters" ;
216
216
import erenSBadge from "./eren-s-badge" ;
217
217
import esilvWorkshop2023 from "./esilv-workshop-2023" ;
218
+ import esim from "./esim" ;
218
219
import ethBelgrade from "./eth-belgrade" ;
219
220
import ethDegen from "./eth-degen" ;
220
221
import ethFoundationContributor from "./eth-foundation-contributor" ;
@@ -1133,6 +1134,7 @@ export const groupGenerators: GroupGeneratorsLibrary = {
1133
1134
"eas-c10" : easC10 ,
1134
1135
"electora-star" : electoraStar ,
1135
1136
"ens-domains-holders" : ensDomainsHolders ,
1137
+ "esim" : esim ,
1136
1138
"eth-belgrade" : ethBelgrade ,
1137
1139
"eth-foundation-contributor" : ethFoundationContributor ,
1138
1140
"eth-global-paris-example-02" : ethGlobalParisExample02 ,
You can’t perform that action at this time.
0 commit comments