Skip to content

Commit

Permalink
added op/base deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
jjranalli committed Jul 19, 2023
1 parent 17955f4 commit 9e5f88d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ See the specifics in the [PriceFeed](contracts/PriceFeed.sol) contract.

- [Ethereum Mainnet](https://etherscan.io/address/0x71c96edD5D36935d5c8d6B78bCcD4113725297e3)
- [Ethereum Goerli Testnet](https://goerli.etherscan.io/address/0x71c96edD5D36935d5c8d6B78bCcD4113725297e3)
- [Optimism](https://optimistic.etherscan.io/address/0x71c96edD5D36935d5c8d6B78bCcD4113725297e3)
- [Base on 0xAE3...fc6](https://basescan.org/address/0xAE38a794E839D045460839ABe288a8e5C28B0fc6)

## Support the project

Expand Down
6 changes: 5 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ fuzz_runs = 1000
[rpc_endpoints]
goerli = "${RPC_URL_GOERLI}"
mainnet = "${RPC_URL_MAINNET}"
op = "${RPC_URL_OPTIMISM}"
base = "${RPC_URL_BASE}"

[etherscan]
goerli = {key = "${ETHERSCAN_KEY}", url = "https://api-goerli.etherscan.io/api"}
mainnet = {key = "${ETHERSCAN_KEY}"}
mainnet = {key = "${ETHERSCAN_KEY}"}
op = {key = "${ETHERSCAN_KEY}"}
base = {key = "${ETHERSCAN_KEY}"}

0 comments on commit 9e5f88d

Please sign in to comment.