From 4b3bd24dd57cf881fed81dfb342403b62d846b06 Mon Sep 17 00:00:00 2001 From: hongwei Date: Fri, 26 Sep 2025 10:36:21 +0200 Subject: [PATCH] docfix/ Update release notes and sample properties for Ethereum Connector Configuration, adding details on RPC URL and transaction modes --- .../src/main/resources/props/sample.props.template | 12 ++++++++++++ release_notes.md | 2 ++ 2 files changed, 14 insertions(+) diff --git a/obp-api/src/main/resources/props/sample.props.template b/obp-api/src/main/resources/props/sample.props.template index a3474f613..ab1a8fd57 100644 --- a/obp-api/src/main/resources/props/sample.props.template +++ b/obp-api/src/main/resources/props/sample.props.template @@ -1517,6 +1517,18 @@ regulated_entities = [] # super_admin_email=tom@tesobe.com +## Ethereum Connector Configuration +## ================================ +## The Ethereum connector uses JSON-RPC to communicate with Ethereum nodes. +## It supports two transaction modes: +## 1) eth_sendRawTransaction - for pre-signed transactions (recommended for production) +## 2) eth_sendTransaction - for unlocked accounts (development/test environments) +## +## Ethereum RPC endpoint URL +## Default: http://127.0.0.1:8545 (local Ethereum node) +ethereum.rpc.url=http://127.0.0.1:8545 + + # Note: For secure and http only settings for cookies see resources/web.xml which is mentioned in the README.md diff --git a/release_notes.md b/release_notes.md index 03a17f3ed..ec1a99f63 100644 --- a/release_notes.md +++ b/release_notes.md @@ -3,6 +3,8 @@ ### Most recent changes at top of file ``` Date Commit Action +26/09/2025 77d54c2e Added Ethereum Connector Configuration + Added props ethereum.rpc.url, default is http://127.0.0.1:8545 04/08/2025 d282d266 Enhanced Email Configuration with CommonsEmailWrapper Replaced Lift Mailer with Apache Commons Email for improved email functionality. Added comprehensive SMTP configuration options: