Skip to content

Commit

Permalink
deploy ez depositor to gnosis and scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
trmid committed Sep 11, 2024
1 parent d449139 commit 20d1b6d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
30 changes: 29 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,53 @@ Easily contribute directly to PoolTogether V5 prize pools.

Want to pump vaults? Contribute prizes to the prize pool on their behalf.

---

Deployed on Optimism and verified on Etherscan at [0x68A100A3729Fc04ab26Fb4C0862Df22CEec2f18B](https://optimistic.etherscan.io/address/0x68A100A3729Fc04ab26Fb4C0862Df22CEec2f18B#writeContract)

[Prize Pool on Optimism](https://optimistic.etherscan.io/address/0xF35fE10ffd0a9672d0095c435fd8767A7fe29B55)

---

Deployed on Base and verified on Etherscan at [0x4E30C0a8cCE76940D87ae62EB12f3Ac536A996F4](https://basescan.org/address/0x4e30c0a8cce76940d87ae62eb12f3ac536a996f4#writeContract)

[Prize Pool on Base](https://basescan.org/address/0x45b2010d8A4f08b53c9fa7544C51dFd9733732cb)

---

Deployed on Arbitrum and verified on Etherscan at [0x5f9292672e33B76b70Dea44163c780376B4da397](https://arbiscan.io/address/0x5f9292672e33b76b70dea44163c780376b4da397#writeContract)

[Prize Pool on Arbitrum](https://arbiscan.io/address/0x52e7910c4c287848c8828e8b17b8371f4ebc5d42)

---

Deployed on Ethereum Mainnet and verified on Etherscan at [0x84882EB46dA981d1aD2f154359061942Ca1c062f](https://etherscan.io/address/0x84882eb46da981d1ad2f154359061942ca1c062f#writeContract)

[Prize Pool on Ethereum](https://etherscan.io/address/0x7865d01da4c9ba2f69b7879e6d2483ab6b354d95)

--

Deployed on Scroll Mainnet and verified on Etherscan at [0xbdf6bd9bde192861bd8e0e0a11dad71f178a34c8](https://scrollscan.com/address/0xbdf6bd9bde192861bd8e0e0a11dad71f178a34c8#writeContract)

[Prize Pool on Scroll](https://scrollscan.com/address/0xa6ecd65c3eecdb59c2f74956ddf251ab5d899845)

---

Deployed on Gnosis Mainnet and verified on Etherscan at [0x69fc8095b949c0ff703ead99bf7d6620843c37ef](https://gnosisscan.io/address/0x69fc8095b949c0ff703ead99bf7d6620843c37ef#writeContract)

[Prize Pool on Gnosis](https://gnosisscan.io/address/0x0c08c2999e1a14569554eddbcda9da5e1918120)

---

## Contributing Prizes

1. First WETH approve spending by the EzDepositor. [WETH on Optimism](https://optimistic.etherscan.io/token/0x4200000000000000000000000000000000000006#writeContract#F1), [WETH on Base](https://basescan.org/token/0x4200000000000000000000000000000000000006#writeContract), [WETH on Arbitrum](https://arbiscan.io/address/0x5f9292672e33b76b70dea44163c780376b4da397#writeContract), or [WETH on Ethereum](https://etherscan.io/address/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2#writeContract)
1. First approve prize token spending by the EzDepositor.
- [WETH on Optimism](https://optimistic.etherscan.io/token/0x4200000000000000000000000000000000000006#writeContract#F1)
- [WETH on Base](https://basescan.org/token/0x4200000000000000000000000000000000000006#writeContract)
- [WETH on Arbitrum](https://arbiscan.io/address/0x5f9292672e33b76b70dea44163c780376b4da397#writeContract)
- [WETH on Ethereum](https://etherscan.io/address/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2#writeContract)
- [WETH on Scroll](https://scrollscan.com/address/0x5300000000000000000000000000000000000004)
- [WXDAI on Gnosis](https://gnosisscan.io/address/0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d)
2. Call `contribute()` with the prize pool address, your desired vault address, and the amount of WETH you want to contribute.

## Development
Expand Down
4 changes: 4 additions & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ gas_reports = ["Foo"]
mainnet = "${MAINNET_RPC_URL}"
arbitrum = "${ARBITRUM_RPC_URL}"
optimism = "${OPTIMISM_RPC_URL}"
gnosis = "${GNOSIS_RPC_URL}"
scroll = "${SCROLL_RPC_URL}"

sepolia = "${SEPOLIA_RPC_URL}"
arbitrum-sepolia = "${ARBITRUM_SEPOLIA_RPC_URL}"
Expand All @@ -20,6 +22,8 @@ optimism-sepolia = "${OPTIMISM_SEPOLIA_RPC_URL}"
mainnet = { key = "${ETHERSCAN_API_KEY}", url = "https://api.etherscan.io/api" }
arbitrum = { key = "${ARBITRUM_ETHERSCAN_API_KEY}", url = "https://api.arbiscan.io/api" }
optimism = { key = "${OPTIMISM_ETHERSCAN_API_KEY}", url = "https://api-optimistic.etherscan.io/api" }
gnosis = { key = "${GNOSIS_ETHERSCAN_API_KEY}", url = "https://api.gnosisscan.io/api" }
scroll = { key = "${SCROLL_ETHERSCAN_API_KEY}", url = "https://api.scrollscan.com/api" }

sepolia = { key = "${ETHERSCAN_API_KEY}", url = "https://api-sepolia.etherscan.io/api" }
arbitrum-sepolia = { key = "${ARBITRUM_ETHERSCAN_API_KEY}", url = "https://api-sepolia.arbiscan.io/api" }
Expand Down

0 comments on commit 20d1b6d

Please sign in to comment.