docfix/ Update release notes and sample properties for Ethereum Connector Configuration, adding details on RPC URL and transaction modes

This commit is contained in:
hongwei 2025-09-26 10:36:21 +02:00
parent c28aaf0fe4
commit 4b3bd24dd5
2 changed files with 14 additions and 0 deletions

View File

@ -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

View File

@ -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: