You can customize your crowdfunding portal to receive funding to your wallet by following these steps.
Head to the funding-config.tsxfile in your app, you'll notice a config object that you can change to match your portal config. e.g:
const config = {
title: "Plagiarism Registry DAO", // Project title
description: "Fighting plagiarism with a searchable, creator-owned world wide registry. Get rewarded for your work.", // Project description
companyName: "Koii Network Creator Studio",
fundGoal: 1000, // Your funding goal in "eth"
images: [ // Images to be placed in the top slider
{ src: "https://picsum.photos/700" },
{ src: "https://picsum.photos/701" },
{ src: "https://picsum.photos/702" },
{ src: "https://picsum.photos/703" },
{ src: "https://picsum.photos/704" },
{ src: "https://picsum.photos/705" }
],
socials: { // Your social network links
website: "https://koii.network",
twitter: "https://twitter.com/KoiiNetwork",
discord: "https://discord.com/invite/koii",
facebook: null,
github: "https://github.com/koii-network"
},
paymentType: "eth", // Payment type (Currency) for now, we only support "eth" (ethereum)
fundAddress: "0x0123456789", // Your ethereum funding address that people will deposit to.
about: ( // A brief description about the project as html.
<div>
<p>
About us
</p>
</div>
),
faqs: [ // FAQs content
{ question: "Question 1", answer: "Answer 1" },
{ question: "Question 2", answer: "Answer 2" },
{ question: "Question 3", answer: "Answer 3" }
]
};
export default config;
You don't need to do anything after customizing your funding config for the Portal to work—it should work nicely by itself. But just in case you need to use any value from your funding config use the useFunding hook