Relysia
Relysia WalletAPI DocumentationGithub RepositoryDemo
  • Relysia SDK
  • Getting Started
    • Setup
    • API
    • Infrastructure
  • Wallets
    • Wallets
    • Mnemonic
    • Addresses
    • Metrics
    • Balance
    • History
  • Payments
    • Lookup
    • Sweep
    • URI
    • Transactions
    • Raw Transactions
    • Invoices
      • Create Invoice
      • Get Invoice
      • Pay Invoice
    • Payments
    • Asm
  • token
    • Basics
    • Token Issuance
    • NFT Issuance
    • Atomic Swaps
    • Details
    • Leaderboard
  • Utility
    • Post
    • Upload
    • Conversion
    • Paymail
    • Transpile-Compile
  • Enterprise Wallet
    • Overview
    • Authentication
    • Management
    • Wallet
    • Smart Contracts
    • Transaction
    • Fee Manager
    • Events
  • Realtime Transaction Notification
    • Use Case
    • Setup and Configuration
    • Events and Messages
  • More
    • Metashard
    • Satolearn
Powered by GitBook
On this page
  1. token

Details

Verify that you got the correct STAS token

Fetch the latest state of your STAS token and the issuance details. The only parameter required is tokenID, which you will have if you issued a token via the /issue endpoint or can be found on the manage tokens section of Relysia Wallet.

var parameters = {
    tokenID: 'ca7a5c64543850de318639334a5aaa65947914cb-MYNFT'
}
const response = await relysia.contracts.v2.tokenDetails(parameters);

In the event that the item in question is an NFT, it is possible to expand your search parameters by including a designated serial number in addition to the token ID.

var parameters = {
    tokenID: 'ca7a5c64543850de318639334a5aaa65947914cb-MYNFT-2'
}
const response = await relysia.contracts.v2.tokenDetails(parameters);
PreviousAtomic SwapsNextLeaderboard

Last updated 2 years ago