Quick Start Guide
Integrate biometric blockchain technology in 5 simple steps.
Taliware AccountBasic NFT Knowledge
01
Access Platform
Sign in to developer.taliware.com to access your dashboard.
02
Create Org
Set up workspace and generate API keys.
03
Deploy Contract
Deploy biometric smart contract to testnet.
04
Invite Users
Add users for Confida app authentication.
05
Mint Biometric NFT
Finalize by creating a copyright-protected NFT with biometric verification using the API.
JS
const response = await fetch('/api/nfts', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: "My First CRDB NFT",
description: "Protected by biometric authentication",
image: "https://example.com/image.jpg",
owner: "user@example.com"
})
});