Wallet Reader implementation details and constraints
masterWhen using the io.Reader wallet loading feature, keep the following in mind:
- Supported Files: This feature supports cwallet.sso files only.
- Concurrency: The implementation is concurrency-safe. Each
OracleConnectormaintains its own wallet configuration. You can safely use different wallets in different goroutines without interference or global state modification. - Immediate Read: The wallet data is read immediately when
WithWallet()is called. - Compatibility: Backward compatibility is maintained; file path-based loading via URL parameters still works as expected.