Skip to content

Commit

Permalink
chore: gnosis contracts rename, redeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
samparsky committed Mar 29, 2024
1 parent 74e0292 commit bd9c1ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ This repo can be deployed with `forge create` or running the deployment scripts.
### Gnosis Chain Mainnet Contracts
| Contract Type | Address |
|--------------------------------------|-----------------------------------------------------------------------------------------------------|
| OptimisticWithdrawalRecipientFactory | [0x0C4bEa915F44E2f9533eDb20BA9623fcb20Ece7D](https://gnosisscan.io/address/0x0C4bEa915F44E2f9533eDb20BA9623fcb20Ece7D) |
| OptimisticWithdrawalRecipient | [0xF979e49FE4FC0d503AD1Ee8583d88f0d5A165Cfa](https://gnosisscan.io/address/0xF979e49FE4FC0d503AD1Ee8583d88f0d5A165Cfa) |
| OptimisticTokenWithdrawalRecipientFactory | [0x4e326Ca253e5E892971b49207EB0a75943cdC657.](https://gnosisscan.io/address/0x4e326Ca253e5E892971b49207EB0a75943cdC657) |
| OptimisticWithdrawalRecipient | [0xE14ed26f65Cb7F1C932a5Ae77e4D0B486C774c5C](https://gnosisscan.io/address/0xE14ed26f65Cb7F1C932a5Ae77e4D0B486C774c5C) |

### Gnosis Chain Chiado Contracts
| Contract Type | Address |
|--------------------------------------|-----------------------------------------------------------------------------------------------------|
| OptimisticWithdrawalRecipientFactory | [0x0C4bEa915F44E2f9533eDb20BA9623fcb20Ece7D](https://gnosis-chiado.blockscout.com/address/0x0C4bEa915F44E2f9533eDb20BA9623fcb20Ece7D) |
| OptimisticWithdrawalRecipient | [0xF979e49FE4FC0d503AD1Ee8583d88f0d5A165Cfa](https://gnosis-chiado.blockscout.com/address/0xF979e49FE4FC0d503AD1Ee8583d88f0d5A165Cfa) |
| OptimisticTokenWithdrawalRecipientFactory | [0x4e326ca253e5e892971b49207eb0a75943cdc657](https://gnosis-chiado.blockscout.com/address/0x4e326ca253e5e892971b49207eb0a75943cdc657) |
| OptimisticWithdrawalRecipient | [0xE14ed26f65Cb7F1C932a5Ae77e4D0B486C774c5C](https://gnosis-chiado.blockscout.com/address/0xE14ed26f65Cb7F1C932a5Ae77e4D0B486C774c5C) |


### Versioning
Expand Down
4 changes: 2 additions & 2 deletions script/OWRFactoryWithTokenScript.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
pragma solidity ^0.8.19;

import "forge-std/Script.sol";
import {OptimisticWithdrawalWithTokenRecipientFactory} from "src/owr/token/OptimisticWithdrawalWithTokenRecipientFactory.sol";
import {OptimisticTokenWithdrawalRecipientFactory} from "src/owr/token/OptimisticTokenWithdrawalRecipientFactory.sol";

contract OWRWFactoryWithTokenScript is Script {
function run() external {
uint256 privKey = vm.envUint("PRIVATE_KEY");

vm.startBroadcast(privKey);

new OptimisticWithdrawalWithTokenRecipientFactory{salt: keccak256("obol.owrFactoryWithToken.v1")}();
new OptimisticTokenWithdrawalRecipientFactory{salt: keccak256("obol.owrFactoryWithToken.v0")}();

vm.stopBroadcast();
}
Expand Down

0 comments on commit bd9c1ee

Please sign in to comment.