TLDR: If you are not familiar with Git & Github, follow these steps below to fork and setup your own repository.
- Step 1: Install Git & Github Desktop (optional) on your local device
- Step 2: Fork this repository by click the
Fork button
on Github
- Step 3:
Clone
the forked repository to your local device using the below command
git clone https://github.com/<your_github_username>/polkadot-apac-challenges.git
Replace the [name-of-your-account]
with your Github username. For example, if my username is chungquantin
, I would do the below command to clone the repository to my local device.
git clone https://github.com/openguild-labs/polkadot-apac-challenges.git
- Step 4: Edit the
README.md
file to register for official participation
Go to Participant Registration section and register to be the workshop participants. Add the below to the list, replace any placeholder with your personal information.
| 🦄 | Name | Github username | Your current occupation |
- Step 5:
Commit
your code and push to the forked Github repository
git add .
git commit -m "<Your Name> | Register for OpenGuild Da Nang Hackcamp 2025"
- Step 6: Create a
Pull Request
to merge your changes to this repository and name your PR asYour name | Register for Polkadot APAC Challenges 2025

Challenge | Description | Action |
---|---|---|
1 | Batch Transactions - Add pallet-utility to runtime and demonstrate batch transfers using Polkadot-JS Apps UI | Take Challenge |
2 | Auction System - Create, bid, and manage auctions with on_initialize and on_finalize hooks | Take Challenge |
3 | Auction Runtime API - Extend auction system with custom Runtime API for off-chain data access | Take Challenge |
4 | Auction Forkless Upgrade - Implement auction removal functionality and demonstrate forkless upgrades | Take Challenge |
5 | On-chain Identity DApp - Build a dApp for registering and displaying on-chain identities on Paseo testnet | Take Challenge |
6 | NFT XCM - Create a dApp that mints NFTs on Asset Hub using XCM messages from Paseo testnet | Take Challenge |
7 | Asynchronous Backing - Enable asynchronous backing on a parachain with 6-second block time | Take Challenge |
8 | Elastic Scaling - Configure parachain runtime for elastic scaling with increased block processing velocity | Take Challenge |