lyraDecAccountId static method
decode account ID to hex encoding of ECDSA public key
Implementation
static String lyraDecAccountId(String accountId) {
var pubKey = accountId.substring(1);
var decStr = lyraDec(pubKey);
return '04' + decStr;
}