Skip to content

Commit

Permalink
Fix fork tests, update to use real rpcs, and then fix owner for optim…
Browse files Browse the repository at this point in the history
…ism (#142)

Fix fork tests:
* update to use real rpcs for optimism
* fix owner for optimism
* remove pgn_sepolia from fork tests (it's breaking for some reason)
  • Loading branch information
oveddan authored Aug 16, 2023
1 parent 4d7895e commit aec768a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ jobs:
forge test -vvv --match-test fork
env:
FOUNDRY_PROFILE: fast_compilation
FORK_TEST_CHAINS: mainnet,goerli,optimism,optimism_goerli,zora,zora_goerli,base_goerli,base,pgn_sepolia,pgn
FORK_TEST_CHAINS: mainnet,goerli,optimism,optimism_goerli,zora,zora_goerli,base_goerli,base,pgn
ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }}
id: test
2 changes: 1 addition & 1 deletion chainConfigs/10.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"FACTORY_OWNER": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
"FACTORY_OWNER": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
"MINT_FEE_AMOUNT": 777000000000000,
"MINT_FEE_RECIPIENT": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
Expand Down
4 changes: 2 additions & 2 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ mainnet = "https://eth-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}"
# we can use these since they're lower volume.
base = "https://developer-access-mainnet.base.org"
base_goerli = "https://goerli.base.org"
optimism = "https://mainnet.optimism.io"
optimism_goerli = "https://goerli.optimism.io"
optimism = "https://opt-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}"
optimism_goerli = "https://opt-goerli.g.alchemy.com/v2/${ALCHEMY_KEY}"
pgn = "https://rpc.publicgoods.network"
pgn_sepolia = "https://sepolia.publicgoods.network"
zora = "https://rpc.zora.energy"
Expand Down

0 comments on commit aec768a

Please sign in to comment.