Emblem Vault
  • 👋Introduction
  • Information
    • 💡Explainer
    • 📜History
    • 📈COVAL
    • 🦄Collections
    • 📲Apply
  • How it Works
    • ⏩Vault Creation
    • 🔄Vault Minting
    • ⏪Unvaulting
  • Features & Products
    • 📈Emblem Markets
    • 🔒Emblem Vision
    • 🛒Bulk Features
    • ⬆️Jump
    • 🐃Migration
    • 🥷Stealth Vaults
    • ⏰Time-locked Vaults
    • 🚀Vaultpad
  • Tools
    • 💿Emblem SDK
    • 📓API Documentation (Legacy)
      • 🤝Get Vaults by owner
      • 📬By Deposit Address
      • 📃Get Metadata
      • 💵Get Vault Balance
      • 📜Get Projects
      • 📜Get Chains
      • ✅Get Verified Vaults
      • ✅Get Vaults by type
      • 🛠️Create un-minted vault
      • 📜Get ERC1155 Data
      • Demonstrations
        • Demo: Token gate
        • Demo: ERC1155 holdings
        • Demo: Fraud Vaults
        • Deep Link Vaulting
    • 🖋️Inscription Tool
      • demo
    • 🗳️Wallet Partnerships
  • Use Cases
    • 🎨DeFi
    • 👾Gaming
    • 🖥️NFTs
  • Blockchains
    • 🟡Binance Smart Chain
    • 🔵Ethereum
    • 🟣Polygon
  • Supported Networks
    • 🎒Bellscoin
    • 🎒Bitcoin
    • 🎒Bitcoin Cash/SLP
    • 🎒Bitcoin Ordinals
    • 🎒Bitcoin Stamps
    • 🎒BRC20
    • 🎒Counterparty
    • 🎒Digibyte
    • 🎒Dogecoin
    • 🎒Dogeparty
    • 🎒Ethereum
    • 🎒Ethscriptions
    • 🎒Litecoin
    • 🎒Litecoin Ordinals
    • 🎒Namecoin
    • 🎒Monacoin
    • 🎒Monaparty
    • 🎒Solana
    • 🎒Stacks
    • 🎒Tezos
  • Tutorials
    • 🧠Bitcoin Ordinals
    • 🧠Bitcoin Stamps
    • 🧠Bellscoin
    • 🧠BRC20
    • 🧠Counterparty
    • 🧠Curated Collections
    • 🧠Cursed Ordinals
    • 🧠Dogeparty
    • 🧠Emblem Markets
    • 🧠Emblem Vision
    • 🧠Ethscriptions
    • 🧠Emblem Legacy [Migration]
    • 🧠Litecoin Ordinals
    • 🧠Monaparty
    • 🧠Namecoin
    • 🧠Polygon
    • 🧠Stacks
  • FAQs
    • 🎨Artists, Creators, and Collectors
    • ❓Common Questions
    • 🔷Namecoin Help
    • 😡Troubleshooting
    • 🔐Vaulting & Unvaulting
    • 🔦Verifying Assets (Emblem Open )
  • Deep Dive
    • Smart Contracts: Github
    • How its done
  • Terms of Service
Powered by GitBook
On this page
  1. Tools
  2. API Documentation (Legacy)
  3. Demonstrations

Demo: Fraud Vaults

In this example we will be looking for vaults that have used a technique of making ETH based NFT's that appear to be Rare Pepe assets but are on the ETH chain

We will be using the Get Vaults by type endpoint

  1. project we will omit

  2. chain we will specify ETH

  3. asset we will specify RAREPEPE

var request = require('request');
var options = {
  'method': 'GET',
  'url': `${baseUrl}/specific?chain=ETH&asset=RAREPEPE`,
  'headers': {
    'x-api-key': 'your_api_key_here'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

the resulting values returned are all vaults that have an item in the balance called RAREPEPE, no project name and is from the ETH blockchain.

[
  {
    "asset_chain": "ETH",
    "asset_name": "RAREPEPE",
    "project": null,
    "tokenid": "73728098203122031"
  },
  {
    "asset_chain": "ETH",
    "asset_name": "RAREPEPE",
    "project": null,
    "tokenid": "80579410364945461"
  },
  {
    "asset_chain": "ETH",
    "asset_name": "RAREPEPE",
    "project": null,
    "tokenid": "36089350436942491"
  },
  {
    "asset_chain": "ETH",
    "asset_name": "RAREPEPE",
    "project": null,
    "tokenid": "83063078927566481"
  },
  {
    "asset_chain": "ETH",
    "asset_name": "RAREPEPE",
    "project": null,
    "tokenid": "58650537970605561"
  },
  {
    "asset_chain": "ETH",
    "asset_name": "RAREPEPE",
    "project": null,
    "tokenid": "18549750972972921"
  },
  {
    "asset_chain": "ETH",
    "asset_name": "RAREPEPE",
    "project": null,
    "tokenid": "56487976853675271"
  },
  {
    "asset_chain": "ETH",
    "asset_name": "RAREPEPE",
    "project": null,
    "tokenid": "13427765542365251"
  }
]
PreviousDemo: ERC1155 holdingsNextDeep Link Vaulting

Last updated 1 year ago

📓