Skip to content

Commit

Permalink
renamed the L2 ETH_RPC_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
EdNoepel committed Jan 17, 2024
1 parent 9576661 commit 7f50616
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WEB3_INFURA_PROJECT_ID=
ETH_RPC_URL=

## Base L2 node endpoint ##
BASE_ETH_RPC_URL=
L2_ETH_RPC_URL=

## EOA Contract Deployer ##
ETH_FROM=
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/forge-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push]
env:
FOUNDRY_PROFILE: ci
ETH_RPC_URL: ${{secrets.ETH_RPC_URL}} ## Loads environment from secrets
BASE_ETH_RPC_URL: ${{secrets.BASE_ETH_RPC_URL}}
L2_ETH_RPC_URL: ${{secrets.L2_ETH_RPC_URL}}

jobs:
check:
Expand Down
4 changes: 2 additions & 2 deletions tests/forge/unit/ERC20Pool/ERC20PoolReserveAuction.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -338,9 +338,9 @@ contract L2ERC20PoolReserveAuctionTest is Test {
address internal _bidder;

function setUp() public {
vm.createSelectFork(vm.envString("BASE_ETH_RPC_URL"));
vm.createSelectFork(vm.envString("L2_ETH_RPC_URL"));

// Base L2 bwAJNA token address
// L2 bwAJNA token address (example is for Base)
_ajna = ERC20(0xf0f326af3b1Ed943ab95C29470730CC8Cf66ae47);
_collateral = new Token("Collateral", "C");
_quote = new Token("Quote", "Q");
Expand Down

0 comments on commit 7f50616

Please sign in to comment.