Heat Wallet

Heat Wallet

  • User Manual
  • Developers

›Server

User manual

  • Install the app
  • Getting Started
  • Create wallet
  • Import wallet
  • Spy on address
  • Paper/digital wallet
  • Receive crypto
  • Transfer crypto
  • Add currency
  • Balance staking

Developers

  • Developer info
  • Server

    • Add your coin
    • Plugin SDK
    • Fork SDK (non standard)
    • Network status
    • Network fee
    • Token discovery
    • Balance lookup
    • Event lookup
    • Event types
    • Utxo lookup
    • Transaction status
    • Alias lookup
    • Publickey lookup
    • Broadcast transaction

    App

    • Add your coin
    • Nodejs integrations
    • Wallet core (by Trust)

Token Discovery

Token discovery is the process of identifying and returning information on which supported tokens belong to an address. Several token types exists for several different blockchains.

We use the term token to describe any kind of unit that could be held by an address. One such example would be the native currency on a blockchain (each Bitcoin address has atleast the Bitcoin token). Other chains support more token types, Ethereum addresses for example can contain many different erc20 tokens.

Plugin Input

interface {
  /**
   * Enum of blockchain identifiers
   */   
  blockchain: Blockchains,

  /**
   * Enum of asset or token types
   */   
  assetType: AssetTypes,

  /**
   * Address or public key
   */   
  addrXpub: string,
}

Plugin Output

interface {
  /**
   * Result is an array
   */
  [index: number]: {

    /**
     * Unique identifier (erc20 contract addr, or '0' for native currency)
     */
    assetId: string;

    /**
     * Enum of asset or token types
     */   
    assetType: number;

    /**
     * Amount/value in smallest unit on blockchain (satoshi, wei, etc)
     */  
    value: string;

    /**
     * Indicates the address received atleast one transaction
     */
    exists: boolean;
  }
}
Last updated on 8/20/2020
← Network feeBalance lookup →
  • Plugin Input
  • Plugin Output
Heat Wallet
Docs
Install the appCreate your first walletImport an existing walletDevelopers
Community
Project ChatTwitter
Available here
Copyright © 2020 Heat Ledger