## Problem The current example scripts use hardcoded RPC URLs directly in the source code. This makes local development and testing less flexible, especially when switching between environments such as: * Base mainnet * Base Sepolia * Solana devnet * custom RPC providers ## Proposed Improvement Add environment-based configuration support for the example scripts. Possible improvements: * add `.env.example` * load RPC URLs from environment variables * document expected environment variables ## Benefit This would improve developer experience and make the examples easier to configure across different environments.
Problem
The current example scripts use hardcoded RPC URLs directly in the source code.
This makes local development and testing less flexible, especially when switching between environments such as:
Proposed Improvement
Add environment-based configuration support for the example scripts.
Possible improvements:
.env.exampleBenefit
This would improve developer experience and make the examples easier to configure across different environments.