Mini App Development Kit
The InterLink MDK (Mini-App Development Kit) is a comprehensive SDK suite that enables developers to rapidly build, deploy, and scale decentralized mini-applications on the InterLink Network.

The MDK provides a full-stack toolkit with built-in modules for authentication, data handling, payments, and on-chain interaction — abstracting away blockchain complexity so developers can focus on application logic and user experience.
Get Started
1. App ID Registration:
Contact [email protected] to register and obtain your App ID.
2. Installation:
Install the UI Kit with NPM:
npm i @interlinklabs/mdk
Import the Mdk SDK into your project from the corresponding file.
Install the UI Kit with NPM:
npm i @interlinklabs/mdk
3. Using the SDK:
import React from "react";
import Mdk from "@interlinklabs/mdk";
const App = () => {
const handleSuccess = () => {
console.log("Login successful!");
};
const handleFailure = () => {
console.log("Login failed.");
};
return (
<Mdk
appid="your-app-id"
onSuccess={handleSuccess}
onFailure={handleFailure}
>
{({ open }) => <button onClick={open}>Login with the app</button>}
</Mdk>
);
};
export default App;
Explore the full component library and usage examples on the Mini App Development Kit here.
Last updated