Skip to content
Francisco Joray edited this page Dec 11, 2025 · 8 revisions

Partnerchain reference implementation development tutorial

Welcome to the partnerchain-reference-implementation wiki!

The repository contains a reference implementation of a Substrate partnerchain that can be used by developers in the ecosystem as blueprint / example to build their own specific chains. The project involves building a fully functional partnerchain within the context of a particular use-case.

In this Tutorial, we will walk you through all the steps necessary to customize a generic Substrate node into a Partnerchain node with use-case specific features.

The material presented here is a streamlined version of the info detailed at the Dev Activity Logs (node customization, Partner Chains SDK integration, and Use case application).

Summary

This reference implementation takes Substrate's very basic minimal template and shows how to:

  • add a custom ledger (eUTxO using Griffin);
  • set up consensus (Aura) and finality (GRANDPA) algorithms;
  • integrate the Partner Chains (PC) SDK; and
  • set up an application (Asteria).

We hope that the guide presented here helps you to set your particular use-case.

Index

Next
Node customization

Clone this wiki locally