This the multi-page printable view of this section. Click here to print.

Return to the regular view of this page.

Public Key Lookup

Not required for most blockchains. Returns the publickey for account based blockchain address.

Plugin Input

Please see heat-server-common/src/constants.ts for type definitions

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

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

Plugin Output

interface {
  publicKey: string;
}