Skip to content
Draft
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

Large diffs are not rendered by default.

47 changes: 47 additions & 0 deletions broadcast/102_DeployPluginManager.s.sol/5042001/run-latest.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ celo="${CELO_RPC_URL}"
celo-alfajores="${CELO_ALFAJORES_RPC_URL}"
sei-testnet="${SEI_TESTNET_RPC_URL}"
sei="${SEI_RPC_URL}"
arc-devnet="${ARC_DEVNET_RPC_URL}"
arc-testnet="${ARC_TESTNET_RPC_URL}"
monad-testnet="${MONAD_TESTNET_RPC_URL}"
monad="${MONAD_RPC_URL}"
5 changes: 3 additions & 2 deletions script/bytecode-deploy/100_Constants.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ address constant SPONSOR_PAYMASTER_INTERNAL_ADDRESS = 0x67aC303faB3A9507Ac48fD5B
address constant SPONSOR_PAYMASTER_ADDRESS = 0x7ceA357B5AC0639F89F9e378a1f03Aa5005C0a25;

library Constants {
function getChains() internal pure returns (string[23] memory) {
function getChains() internal pure returns (string[24] memory) {
return [
"mainnet",
"sepolia",
Expand All @@ -55,6 +55,7 @@ library Constants {
"sei",
"sei-testnet",
"arc-testnet",
"arc-devnet",
"monad-testnet",
"monad"
];
Expand All @@ -63,6 +64,6 @@ library Constants {
// A list of chains that need to run setup work after deployment. Please adjust the list based on the chain
// expansion needs.
function getCurrentDeploymentChains() internal pure returns (string[1] memory) {
return ["monad"];
return ["arc-devnet"];
}
}
2 changes: 1 addition & 1 deletion script/bytecode-deploy/101_DeploySponsorPaymaster.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract DeploySponsorPaymasterScript is Script {
address entryPoint = ENTRY_POINT;

uint256 key = vm.envUint("DEPLOYER_PRIVATE_KEY");
string[23] memory chains = Constants.getChains();
string[24] memory chains = Constants.getChains();
for (uint256 i = 0; i < chains.length; i++) {
vm.createSelectFork(chains[i]);
vm.startBroadcast(key);
Expand Down
2 changes: 1 addition & 1 deletion script/bytecode-deploy/102_DeployPluginManager.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contract DeployPluginManagerScript is Script {

function run() public {
uint256 key = vm.envUint("DEPLOYER_PRIVATE_KEY");
string[23] memory chains = Constants.getChains();
string[24] memory chains = Constants.getChains();
for (uint256 i = 0; i < chains.length; i++) {
vm.createSelectFork(chains[i]);
vm.startBroadcast(key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ contract DeploySingleOwnerMSCAFactoryScript is Script {
address entryPoint = ENTRY_POINT;

uint256 key = vm.envUint("DEPLOYER_PRIVATE_KEY");
string[23] memory chains = Constants.getChains();
string[24] memory chains = Constants.getChains();
for (uint256 i = 0; i < chains.length; i++) {
vm.createSelectFork(chains[i]);
vm.startBroadcast(key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ contract DeployColdStorageAddressBookPluginScript is Script {

function run() public {
uint256 key = vm.envUint("DEPLOYER_PRIVATE_KEY");
string[23] memory chains = Constants.getChains();
string[24] memory chains = Constants.getChains();
for (uint256 i = 0; i < chains.length; i++) {
vm.createSelectFork(chains[i]);
vm.startBroadcast(key);
Expand Down
Loading