@stellar-expert/tx-meta-effects-parser 5.0.2 → 5.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -47,7 +47,7 @@ function xdrParseAccountAddress(accountId, muxedAccountsSupported = false) {
|
|
|
47
47
|
throw new TxMetaEffectParserError(`Unsupported account type: ${accountId.arm()}`)
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
|
-
if (accountId instanceof
|
|
50
|
+
if (accountId instanceof Uint8Array) {
|
|
51
51
|
return StrKey.encodeEd25519PublicKey(accountId)
|
|
52
52
|
}
|
|
53
53
|
throw new TypeError(`Failed to identify and parse account address: ${accountId}`)
|