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;
}

Last modified April 8, 2021: Link updates in dev section (f51979c)