🧪 An open-source, comprehensive starter kit for building decentralized applications (dApps) on the LUKSO blockchain using React Native and Foundry/Hardhat. This kit streamlines the process for developers, offering an efficient way to create, deploy, and interact with smart contracts while building intuitive user interfaces.
⚙️ Built using React Native, Hardhat, Wagmi, Viem, and Typescript.
-
💳 In-Built Wallet: A secure crypto wallet to manage funds, and sign transactions on LUKSO, providing a seamless and intuitive mobile experience for LUKSO users.
-
✅ Contract Hot Reload: Automatically updates the frontend to reflect real-time changes in smart contracts deployed on LUKSO, reducing downtime and speeding up the development process.
-
🛠️ Contract Debugger: A powerful tool to debug smart contracts on LUKSO, ensuring they function as expected before deployment.
-
🪝 Custom Hooks: A collection of TypeScript-enabled React hooks to simplify interactions with LUKSO smart contracts, enabling developers to write cleaner, more efficient code.
-
🧱 Components: Pre-built web3 components tailored for LUKSO, allowing developers to quickly assemble user interfaces and focus more on functionality rather than building from scratch.
Before you begin, you need to install the following tools:
To get started with Kitso, follow the steps below:
- Clone this repo & install dependencies
git clone https://github.com/ValentineCodes/kitso.git
cd kitso
yarn install && yarn patch-ethers
yarn pod-install
Remember to run yarn patch-ethers
to patch ethers after installing any package
-
Connect your device to your computer via WIFI-HOTSPOT
-
Run a local network in the first terminal
yarn chain
This command starts a local Ethereum network hosted on your local IP address. The network runs on your local machine and can be used for testing and development. You can customize the network configuration in hardhat.config.ts
.
- On a second terminal, deploy the test contract:
yarn deploy
This command deploys a test smart contract to the local network. The contract is located in packages/hardhat/contracts
and can be modified to suit your needs. The yarn deploy
command uses the deploy script located in packages/hardhat/deploy
to deploy the contract to the network. You can also customize the deploy script.
- Set the
ALCHEMY_KEY
andLOCAL_PROVIDER
(port 8545) variables inpackages/reactnative/src/utils/constants.ts
ipconfig getifaddr en0
ipconfig
-
Connect your device via USB or Run an emulator
-
Run on device:
yarn android
yarn ios
- Import one of the funded accounts in your local blockchain into your wallet to have funds for testing
You can interact with your smart contract using the Debug Contracts
tab. You can tweak the app config in packages/reactnative/scaffold.config.ts
.
Run smart contract test with yarn hardhat:test
- Edit your smart contract
YourContract.sol
inpackages/hardhat/contracts
- Edit your frontend in
packages/reactnative/src/screens
- Edit your deployment scripts in
packages/hardhat/deploy
We welcome contributions to Kitso!
Please see CONTRIBUTING.MD for more information and guidelines for contributing to Kitso.