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

Feat: add robs-cave #247

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
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
Binary file added space-configs/images/Abel_E_bunny_400x400.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added space-configs/images/Abel_E_bunny_500x500.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
97 changes: 97 additions & 0 deletions space-configs/main/robs-cave.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
import { SpaceConfig } from "../types";
import { AuthType } from "@sismo-core/sismo-connect-server";

// UPDATE HERE ↓↓↓
export default {
metadata: {
name: "Robs cave", // UPDATE HERE
description:
"Welcome to my cave, don't expect much but feel free to dig around.", // UPDATE HERE
image: "Abel_E_bunny_400x400.png", // UPDATE HERE
socialLinks: [
{
type: "twitter",
link: "https://twitter.com/robsvensek", // UPDATE HERE
},
{
type: "github",
link: "https://github.com/robsven", // UPDATE HERE
},
],
},
apps: [
{
// NO UPDATE. Template type
type: "zkForm",
// UPDATE. App information
metadata: {
name: "Virtual hug", // UPDATE. Your app name
slug: "virtual-hug", // UPDATE. Your app name in the form of a slug (no spaces allowed). It will be the last part in the URL, eg: apps.sismo.io/sismo/swag-lottery
description:
"Get yourself a virtual hug by proving that you are part of Sismo Comunity", // UPDATE. The description is used for SEO and social media preview of your app
image: "Abel_E_bunny_500x500", // UPDATE. Image for your app, to be placed in the images folder
tags: ["Free hugs"], // UPDATE. Add one or two tags to describe your app
createdAt: new Date("2023-09-21T00:00:00.000Z"), // UPDATE. Edit the date here to today's date YYYY-MM-DD
lastUpdateAt: new Date("2023-09-21T00:00:00.000Z"), // UPDATE OR REMOVE. Edit the date here to last update date YYYY-MM-DD
},
// UPDATE. Sismo Connect request, see "Cheatsheet: Build Your Sismo Connect Request"
sismoConnectRequest: {
appId: "{{ auto-fill }}", // NO UPDATE. Sismo Connect appId is automatically created based on your app metadata
authRequests: [
{
authType: AuthType.VAULT,
},
{
authType: AuthType.TWITTER,
isOptional: true,
},
],
claimRequests: [
{
// Sismo comunity member
groupId: "0xd630aa769278cacde879c5c0fe5d203c",
isSelectableByUser: true,
},
{
// gitcoin-passport-holders
groupId: "0x1cde61966decb8600dfd0749bd371f12",
value: 10,
},
],
},
// UPDATE. Config for zkForm
templateConfig: {
step1CtaText: "Prove you are Eligible", // UPDATE OR REMOVE. 1st step text when users click on the app, "Sign in with Sismo" by default
step2CtaText: "Get hug", // UPDATE. 2nd step button text, on submitting the form
fields: [
{
type: "long-text", // NO UPDATE. Your field type
label: "Say hi", // UPDATE. Your field name
placeholder: "Don't be shy", // UPDATE OR REMOVE. Your helper text
isRequired: true, // UPDATE OR REMOVE. Field required or not, true by default
},
],
// UPDATE OR REMOVE. Success form message
congratulationsMessage: {
title: "Here you go, a free virtual hug", // UPDATE. Your title
description: "", // UPDATE. Your message
},
// UPDATE. Data storage
output: {
destination: {
type: "google_sheet", // NO UPDATE.
spreadsheetId: "1cJKfEvrvfvjjA0J3ZtcTYKw-tESP0REvRHKX5fk2g9Y", // UPDATE. See "Add your App in the Sismo App Store"
},
saveAuths: true, // UPDATE OR REMOVE. Save Auths outputs in spreadsheet
saveClaims: true, // UPDATE OR REMOVE. Save Claims outputs in spreadsheet
},
},
// UPDATE OR REMOVE. App dates
options: {
startDate: new Date("2023-05-12T18:00"), // UPDATE OR REMOVE. Your start date YYYY-MM-DD
endDate: new Date("2024-05-19T18:00"), // UPDATE OR REMOVE. Your end date YYYY-MM-DD
},
},

],
} as SpaceConfig;
Loading