UPDATED Instructions for Solidity and Next.js Developers for ICO Page (9/9/2024)
The following document outlines the requirements for developing the KLIKcoin ICO webpage. The page must include core elements like tokenomics, a whitepaper, and a roadmap, with key features for user login, API integration for AML/KYC, and secure token purchases. Please adhere to the detailed specifications below for the Next.js frontend and Solidity smart contract development. Build the KLIKcoin ICO page with Next.js for the frontend, Solidity smart contracts for the ICO, and backend support for user authentication, AML/KYC, and credit card payments. All interactions with the Ethereum blockchain should be secure, and U.S. users must be restricted from participating in the ICO. Implement the necessary APIs and security measures to ensure a smooth and compliant ICO launch.
1. Frontend Development (Next.js)
ICO Webpage Structure:
A simple, clean, and professional design with sections for:
Tokenomics: Display token allocation, supply, and usage details.
Whitepaper: Include a downloadable link or embedded view of the KLIKcoin whitepaper.
Roadmap: Visually display the timeline for development, milestones, and future phases.
CTA: Clear calls to action, including buttons for login, Metamask connection, and token purchase.
Features:
CMS with User Authentication:
Username/Password login system for users and admins.
Content Management System (CMS): Allow admin to edit webpage content (tokenomics, roadmap, updates) easily.
Ensure session management with JWT tokens for secure login and access control.
AML/KYC Integration:
API development to connect with a third-party AML/KYC provider (e.g., Sumsub, Jumio, or Trulioo).
API must handle user identity verification after signup, before allowing token purchase.
Once verified, user access is enabled, and verification results are stored securely.
Metamask Wallet Integration:
Allow users to connect their Metamask wallet directly on the ICO page.
Web3.js or Ethers.js should be used for wallet connection and interaction with the smart contract.
Wallet connection should trigger an on-page notification for successful wallet linking.
Credit Card Payment Integration:
Add credit card purchase capabilities using Stripe or any relevant payment processor with crypto-support.
Users should be able to pay with credit cards and receive KCs based on the current token price.
IP Address Restriction for U.S. Users:
Implement an IP-checking mechanism to restrict access from U.S. IP addresses.
Use a geolocation API (e.g., IPStack, MaxMind) to detect and block U.S.-based users during registration or purchase.
2. Solidity Smart Contract Development
The smart contract will manage the sale and distribution of ERC-20 Klikcoins (KCs) for the ICO. The following functionality needs to be implemented:
Smart Contract Requirements:
ERC-20 Compliance: Ensure the contract follows the ERC-20 standard for token transfers, minting, and balance checking. Can also use ERC-667.
Token Sale Functionality:
Implement a function to handle the sale of tokens during the ICO.
Define pricing in Ether or KCs, ensuring the conversion is handled correctly with up-to-date rates.
Include logic for purchasing with credit cards (linked via API to the payment provider).
Metamask Wallet Interaction:
Enable token transfers from the ICO smart contract to the user’s Metamask wallet upon successful payment.
Ensure compatibility with Ethers.js or Web3.js for wallet interaction.
Whitelist Non-U.S. Users:
Add functionality to ensure that only non-U.S. users can purchase tokens.
Users passing AML/KYC verification will be added to a whitelist that grants them access to token purchases.
IP Address Validation:
Ensure that users attempting to purchase KCs from U.S.-based IP addresses are blocked within the smart contract (or Web3 logic). Add notifications to US users and a prompt to enter their email for future fuding rounds to be offered in US.
Token Distribution:
Ensure KCs are sent immediately to the user’s wallet after purchase. If the user is paying with a credit card, ensure they created a Web3auth account on KLIK. Coins purchased with a credit card will be sent to that wallet.
Implement appropriate logging and events to track all token purchases for auditing.
Post-ICO Handling:
Vesting Schedule: If necessary, implement a vesting mechanism for team and partner tokens (if required).
No Claims for Existing KlikCoins: The first round of the ICO will not include conversion for existing KlikCoins stored in the database. This functionality will be added in future rounds.
3. Backend Development
API Development for AML/KYC:
Build an API for securely transmitting user data (name, ID, etc.) to the third-party AML/KYC provider.
Handle the provider's response and update the user's status based on verification success or failure.
Token Purchase API:
Develop an API that facilitates credit card purchases for Klikcoins (KCs).
Integrate with the chosen payment processor (e.g., Stripe for crypto payments).
Trigger token transfer to the user’s Ethereum wallet upon successful payment.
Admin Dashboard:
Create an admin panel with the following capabilities:
View user information (wallet addresses, KYC status, token balances).
Edit content on the ICO page (roadmap, tokenomics, etc.).
Manage users (approve/reject KYC, revoke access).
Monitor and export data related to purchases and transactions.
4. Security Considerations
Smart Contract Security:
Ensure security auditing of the ICO smart contract to prevent vulnerabilities like reentrancy attacks, integer overflows, and unauthorized token transfers.
Implement robust error handling to revert failed transactions.
User Data Protection:
All personal and financial data must be encrypted in transit and at rest.
Compliance with GDPR and any other relevant data protection laws is mandatory.
Anti-Bot Measures:
Implement CAPTCHA on the registration and payment pages to prevent automated bots from overwhelming the system.
5. Development Environment & Tools
Frontend (Next.js):
Framework: Next.js with React.
Styling: TailwindCSS, Styled Components, or another CSS-in-JS solution.
Libraries: Axios (for API requests), Web3.js/Ethers.js (for blockchain interactions).
Backend:
Node.js for the backend API.
Database: MongoDB or PostgreSQL to manage user accounts, KYC statuses, and transactions.
Smart Contracts (Solidity):
Framework: Truffle or Hardhat for development and deployment.
Libraries: OpenZeppelin ERC-20 contracts for token standards.
Deployment:
Host the ICO site on platforms like Vercel or Netlify.
Use Infura or Alchemy for Ethereum blockchain interactions.
Last updated