Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: sepolia keep3r address #23

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/src/content/intro/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,14 @@ xKeeper is a fully modular framework, designed to be the backbone of future onch
| Keep3rBondedRelay | `0x10Ddf0A7051e238311A1b858acA26C4115f1c3EF` |
| XKeeperMetadata | `0x96f57C654f07dda2B7d65dD98150158Bd5d764db` |


**Ethereum Sepolia**

| Contract Name | Contract Address |
| ---------------------- | -------------------------------------------- |
| AutomationVaultFactory | `0xa9C4c7295519C8aE3A69D6d84252de6948666bd4` |
| GelatoRelay | `0xe012118BA9678ceB3B7104C9bD7cc6b8Cf0a90DC` |
| OpenRelay | `0xc461d22DCDd8538E8025AAfA439B5BddA8C69B15` |
| Keep3rRelay | `0xB0CB8E6Fe8F655d46eE0910332C263ddB61FF9a0` |
| Keep3rRelay | `0x1bc8FC8D130666d8fC37fCA41F436fDC1F822c1E` |
| Keep3rBondedRelay | `0xaDe1cE131609702FdDb68f6142fc1c74f80F4c5f` |
| XKeeperMetadata | `0x96f57C654f07dda2B7d65dD98150158Bd5d764db` |

Expand Down
2 changes: 1 addition & 1 deletion solidity/script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ contract DeployEthereumSepolia is Deploy {

// Chain specific setup
gelatoAutomate = IAutomate(0x2A6C106ae13B558BB9E2Ec64Bd2f1f7BEFF3A5E0);
keep3rV2 = IKeep3rV2(0x12C471f8db6763e83cb20C5A41a91506f744b346);
keep3rV2 = IKeep3rV2(0xf171B63F97018ADff9Bb15F065c6B6CDA378d320);
vm.createSelectFork(vm.envString('ETHEREUM_SEPOLIA_RPC'));
}
}
Expand Down
Loading