Pre-General Availability: 2026-03-13

10 Known Issues

Use the following information to troubleshoot problems with Oracle Blockchain Platform Enterprise Edition for Hyperledger Besu.

Key file must be in .pem format
Use the following Python commands to convert a private hexadecimal key to .pem format. In this example, the output file is ethkey.pem.
===========================================================
python3 - <<'EOF'
from cryptography.hazmat.primitives.asymmetric import ec
from cryptography.hazmat.primitives import serialization
k=int("PASTE-PRIVATE-KEY-HERE",16)
pem=ec.derive_private_key(k,ec.SECP256K1()).private_bytes(
    serialization.Encoding.PEM,
    serialization.PrivateFormat.TraditionalOpenSSL,
    serialization.NoEncryption()
)
open("ethkey.pem","wb").write(pem)
EOF
===========================================================
Incorrect Soulbound contract address
The contract address of the Soulbound smart contract on the Developer Tools page is incorrect. This contract is not deployed. You can download the source code and deploy it separately as needed.
Object Object in service console logs
The service console logs shown on the Logs page for the front-end container might include Object Object entries. You can safely ignore this behavior.
Rich history database not supported
The rich history database function shown in the user interface is inoperative and is not supported in this release.