From dd2d7e07446e226801b494f8ed1191b6545b4542 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 11 Feb 2025 09:32:38 +0000 Subject: [PATCH] fix: use Alchemy mainnet endpoint for ENS resolution Co-Authored-By: andrea@paella.dev --- python/src/wallets/crossmint/tests/conftest.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/python/src/wallets/crossmint/tests/conftest.py b/python/src/wallets/crossmint/tests/conftest.py index 4fa13580..9e6383b0 100644 --- a/python/src/wallets/crossmint/tests/conftest.py +++ b/python/src/wallets/crossmint/tests/conftest.py @@ -67,3 +67,15 @@ def test_phone(): def test_user_id(): """Fixture providing test user ID for wallet creation.""" return 12345 + + +@pytest.fixture +def test_wallet_options(): + """Get test wallet options.""" + return { + "chain": "base-sepolia", + "provider": "https://sepolia.base.org", + "options": { + "ensProvider": f"https://eth-mainnet.g.alchemy.com/v2/{os.environ.get('ALCHEMY_API_KEY', '')}" + } + }