How to develop an OrcaPod
How to develop an OrcaPod
Objective
The purpose of this guide is to show how to integrate ORCA with Koii Network. Basicallly we will be focusing and simplifying so that devloper can come to this guide, they can start devloping and running KOII-ORCA task.
Prerequisites
Install the KOII CLI
To interact with the K2 locally, you need to install the Koii CLI. Click here to follow the instructions.
Create a Koii Wallet
Koii supports a file system wallet that can be used to interface directly with the Koii command-line tools.
Source Solana
koii-keygen
. Run the following command:
It will return a string of characters like:
Congratulations! You now have a Koii wallet, Next, let’s airdrop some KOII in your wallet. Click Here
Clone repository
- Clone task-template github repository from the given Link
- Navigate to the
task-template
folder - Create a new directory
Terminal - Copy the
id.json
to theconfig/koii
Terminal
Web3Storage API Token
You’ll be required to add your web3.storage API key, visit here to create a web3.storage account. After creating an account, create an API Token for your project, paste the API token on this prompt
Edit the config-task.yaml
Replace the value of the given keys
- task_name -
anything according to you
- task_execution_network - Should be
DEVELOPMENT
- task_audit_program_id -
main
Create the Koii Task
nodeJS
must be install in your system.Integrate Orca-Pulse with Koii and create Simple task
Install Orca-pulse
It is basically JS NPM package. Which used to communicate with ORCA.
Creating an instance of orca-pulse
Import orca-pulse in the index.js
Create an instance of orca-pulse in the index.js
inside setup funtion.
Create simple-task.js
Make change in CoreLogic.js
Import the simple-task
Create instance of the simple task class
Edit .env.local file
Replace the value of the Given keys
- TASK_ID
- SECRET_WEB3_STORAGE_KEY
Compile the task
After you’ve created a task using the K2 task template as a guide, you’ll need to compile it with Webpack into a single executable file. Open up your terminal, and in the directory of your task:
- Run
yarn
to install all dependencies - Run
yarn webpack
to compile code - You should see a new directory
/dist
- Your compiled executable is located in
/dist/main.js
That’s it! You’ve successfully compiled your task into a single executable file.
Run the task
Make sure you are in the task-template
location
Run task-template using docker compose