-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathtests.env.example
More file actions
23 lines (20 loc) · 1.11 KB
/
Copy pathtests.env.example
File metadata and controls
23 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copy to tests.env and edit. (tests.env is gitignored via the *.env rule.)
#
# RPC URIs are resolved with precedence:
# 1. environment variable (e.g. ETHEREUM_ARCHIVE_NODE_HTTP_URI='...' pytest ...)
# 2. this file (tests.env)
# 3. built-in default (the public-node fallback shown below, see tests/conftest.py)
#
# A bare envvar override needs no file edit — useful for one-off runs, CI, or
# pointing at a local node from a non-devcontainer machine.
ARBITRUM_FULL_NODE_HTTP_URI='https://arbitrum-one-rpc.publicnode.com'
ARBITRUM_FULL_NODE_WS_URI='wss://arbitrum-one-rpc.publicnode.com'
BASE_ARCHIVE_NODE_HTTP_URI='https://mainnet.base.org'
BASE_ARCHIVE_NODE_WS_URI='wss://mainnet.base.org'
BASE_FULL_NODE_HTTP_URI='https://mainnet.base.org'
BASE_FULL_NODE_WS_URI='wss://mainnet.base.org'
# Default points at a public node; override as needed
ETHEREUM_ARCHIVE_NODE_HTTP_URI='https://ethereum-rpc.publicnode.com'
ETHEREUM_ARCHIVE_NODE_WS_URI='wss://ethereum-rpc.publicnode.com'
ETHEREUM_FULL_NODE_HTTP_URI='https://ethereum-rpc.publicnode.com'
ETHEREUM_FULL_NODE_WS_URI='wss://ethereum-rpc.publicnode.com'