Skip to content

Commit

Permalink
feat: add config
Browse files Browse the repository at this point in the history
  • Loading branch information
yum0e committed Aug 21, 2023
1 parent b8234bb commit f75c07c
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
Binary file added space-configs/images/tanjiro_1280x1280.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/tanjiro_bw_958x1200.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 67 additions & 0 deletions space-configs/main/bigq.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
import { SpaceConfig } from "../types";
import { AuthType, ClaimType } from "@sismo-core/sismo-connect-server";

// UPDATE HERE ↓↓↓
export default {
metadata: {
name: "Bigq Space", // UPDATE HERE
description: "This Space is dedicated to all my friends. Have fun experimenting with ZK y'all", // UPDATE HERE
image: "tanjiro_bw_958x1200.png", // UPDATE HERE
socialLinks: [
{
type: "link",
link: "https://www.sismo.io/", // UPDATE HERE
},
{
type: "twitter",
link: "https://twitter.com/Sismo_eth", // UPDATE HERE
},
{
type: "discord",
link: "https://discord.com/invite/sismo", // UPDATE HERE
},
{
type: "github",
link: "https://github.com/sismo-core", // UPDATE HERE
},
],
},
apps: [
{
type: "zkDrop",
metadata: {
name: "Tanjiro ZKDrop", // UPDATE HERE
slug: "claim-this-tanjiro", // UPDATE HERE
description: "Claim your Tanjiro NFT", // UPDATE HERE
tags: ["Airdrop"],
image: "tanjiro_1280x1280.png", // UPDATE HERE
createdAt: new Date("2023-07-03T18:00"), // UPDATE HERE WITH CURRENT DATE
},
sismoConnectRequest: {
appId: "0x5ed8de79b8920ed9cc7e6a25301a39d4",
authRequests: [{ authType: AuthType.VAULT }],

claimRequests: [{ groupId: "0x0f800ff28a426924cbe66b67b9f837e2" }], // UPDATE HERE WITH YOUR GROUP
},
templateConfig: {
isTransferable: false,
nftMetadata: {
name: "Tanjiro NFT gifted from bigq", // UPDATE HERE
description: "This NFT is only a test. Don't trade it. Nevermind, you can't.", // UPDATE HERE
image: "tanjiro_1280x1280.png", // UPDATE HERE
symbol: "TAN",
},
chains: [
{
contractAddress: "0x792F4f891534597a29ea0b9E7ce8DD122F590FeC",
name: "base-goerli", // UPDATE HERE choose your chain name
relayerEnabled: false,
},
],
step1CtaText: "Prove eligibility",
step2CtaText: "Claim!",
appDescription: "Claim Your Tanjiro!",
},
},
],
} as SpaceConfig;

0 comments on commit f75c07c

Please sign in to comment.