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)

Alias Lookup

For blockchains that support address aliases.

Supported are:

  • Ethereum ens domains - https://ens.domains/
  • Heat email alias - https://www.heatledger.com/heat-ledger-blockchain-platform/

(with more planned)

There are two plugin interfaces here, forward and reverse resolve.

Plugin Input

/**
 * Resolve alias
 */
interface {
  /**
   * Enum of blockchain identifiers
   */   
  blockchain: Blockchains;

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

  /**
   * Alias
   */   
  alias: string;
}

/**
 * Reverse resolve alias
 */
interface {
  /**
   * Enum of blockchain identifiers
   */   
  blockchain: Blockchains;

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

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

Plugin Output

/**
 * Resolve alias
 */
interface {
  addrXpub: string;
  isPermanent: boolean;
}

/**
 * Reverse resolve alias
 */
interface {
  alias: string;
  isPermanent: boolean;
}
Last updated on 8/25/2020
← Transaction statusPublickey 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