Build the next generation of IP applications. Access our smart contracts, SDKs, and data layers to integrate programmable IP into your dApp.
You can find the source code for the Mediolano on GitHub. It is open source and available for anyone to use, modify, and contribute to. The Mediolano IP Creator dapp is fully permissionless and can be run locally or deployed independently to create your own instance.
git clone https://github.com/mediolano-app/mediolano-app.git
cd mediolano-app
npm install
npm run devMediolano implements zero-knowledge proofs to ensure the integrity of your intellectual property.
0x05e73b7be06d82beeb390a0e0d655f2c9e7cf519658e04f05d9c690ccc41da03Mediolano provides a REST API for querying indexed NFT data from Starknet contracts.
Install our TypeScript SDK for easier interaction with the protocol.
npm install @mediolano/sdkFull documentation available at sdk.mediolano.app
Interact with the Mediolano Protocol via our REST API or TypeScript SDK. The API follows OpenAPI 3.0 standards and provides indexed access to on-chain Asset, Collection, and Transfer data. Designed for programmatic access, allowing agents to query asset provenance and market stats efficiently.
{
"Asset": {
"type": "object",
"properties": {
"contract_address": {
"type": "string"
},
"token_id": {
"type": "string"
},
"owner": {
"type": "string"
},
"metadata_uri": {
"type": "string"
}
}
}
}import { MediolanoSDK } from '@mediolano/sdk';
const sdk = new MediolanoSDK();
const asset = await sdk.getAsset(contractAddress, tokenId);