Props Docs
  • 🚀Welcome to Props Docs
  • 🙏What is Gratis?
  • ESSENTIALS
  • 🆓Pricing
  • ⭐Getting Started
    • What You'll Need
  • 🛠️Creating Mints
    • Quick Video Walkthrough
    • Managing Collection Supply
    • Managing Free Claims with Tips
    • Configuring Dynamic Tokens
      • For Developers
    • Choosing a Network
      • Going Live - Promote To Mainnet
    • Gating for Friend.Tech Key Holders
  • 💰Share & Earn Links
  • 📈Affiliate Rewards
  • ⁉️FAQ
  • 💟Support
  • CASE STUDIES
    • 🔓Editions
    • 🆒Collections
    • 🤝Memberships
    • 🎶Music NFTs
    • 👕Physical Chips
  • RESOURCES
    • Features & Capabilities
    • Buying with Credit Card
    • Managing Delegate Wallet
Powered by GitBook
On this page
  • Sample Repository
  • Read Metadata
  1. Creating Mints
  2. Configuring Dynamic Tokens

For Developers

PreviousConfiguring Dynamic TokensNextChoosing a Network

Last updated 1 year ago

Props Gratis automatically the token's metadata to your application / website URL via a URL parameter metadata.

The Metadata contains the data as defined by .

Sample Repository

Read Metadata

const urlParams = new URLSearchParams(window.location.search);
const metadataParam = urlParams.get('metadata');

let metadata = null;

try {
    metadata = JSON.parse(metadataParam);
} catch(e) {
    console.error("Error parsing metadata", e);
}
🛠️
OpenSea's metadata standard
https://github.com/Props-Labs/props-dynamic-token-example