Skip to content

Commit

Permalink
fix: use Alchemy mainnet endpoint for ENS resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-ai-integration[bot] and andreapae committed Feb 11, 2025
1 parent 82f8b19 commit dd2d7e0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions python/src/wallets/crossmint/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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', '')}"
}
}

0 comments on commit dd2d7e0

Please sign in to comment.