Publickey Lookup
Not required for most blockchains. Returns the publickey for account based blockchain address.
Plugin Input
interface {
/**
* Enum of blockchain identifiers
*/
blockchain: Blockchains;
/**
* Address or public key
*/
addrXpub: string;
}
Plugin Output
interface {
publicKey: string;
}