Skip to content

Commit

Permalink
chore: fix deps and rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
kopy-kat committed May 15, 2024
1 parent 3cca3e8 commit 947ad94
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 20 deletions.
2 changes: 1 addition & 1 deletion accounts/safe7579/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"forge-std": "github:foundry-rs/forge-std",
"ds-test": "github:dapphub/ds-test",
"erc7579": "github:erc7579/erc7579-implementation",
"sentinellist": "github:zeroknots/sentinellist",
"sentinellist": "github:rhinestonewtf/sentinellist",
"solady": "github:vectorized/solady",
"solarray": "github:sablier-labs/solarray",
"solmate": "github:transmissions11/solmate",
Expand Down
3 changes: 3 additions & 0 deletions examples/foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ libs = ["lib"]
fs_permissions = [{ access = "read", path = "out-optimized" }]
allow_paths = ["*", "/"]

[rpc_endpoints]
mainnet = "${MAINNET_RPC_URL}"

[fmt]
bracket_spacing = true
int_types = "long"
Expand Down
2 changes: 1 addition & 1 deletion examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"erc7579": "github:erc7579/erc7579-implementation",
"forge-std": "github:foundry-rs/forge-std",
"prettier": "^2.8.8",
"sentinellist": "github:zeroknots/sentinellist",
"sentinellist": "github:rhinestonewtf/sentinellist",
"solady": "github:vectorized/solady",
"solarray": "github:sablier-labs/solarray",
"solhint": "^4.5.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ contract AutoSavingsIntegrationTest is BaseIntegrationTest {
//////////////////////////////////////////////////////////////////////////*/

function setUp() public virtual override {
string memory mainnetUrl = vm.envString("MAINNET_RPC_URL");
string memory mainnetUrl = vm.rpcUrl("mainnet");
mainnetFork = vm.createFork(mainnetUrl);
vm.selectFork(mainnetFork);
vm.rollFork(19_274_877);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ contract ScheduledOrdersIntegrationTest is BaseIntegrationTest {
//////////////////////////////////////////////////////////////////////////*/

function setUp() public virtual override {
string memory mainnetUrl = vm.envString("MAINNET_RPC_URL");
string memory mainnetUrl = vm.rpcUrl("mainnet");
mainnetFork = vm.createFork(mainnetUrl);
vm.selectFork(mainnetFork);
vm.rollFork(19_274_877);
Expand Down
2 changes: 1 addition & 1 deletion packages/SessionKeyManager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"ds-test": "github:dapphub/ds-test",
"@ERC4337/account-abstraction": "github:kopy-kat/account-abstraction#develop",
"@ERC4337/account-abstraction-v0.6": "github:eth-infinitism/account-abstraction#v0.6.0",
"sentinellist": "github:zeroknots/sentinellist",
"sentinellist": "github:rhinestonewtf/sentinellist",
"erc7579": "github:erc7579/erc7579-implementation",
"forge-std": "github:foundry-rs/forge-std",
"solady": "github:vectorized/solady",
Expand Down
4 changes: 2 additions & 2 deletions packages/modulekit/gas_calculations/testWriteGas.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Calldata": {
"Arbitrum": "6_160 gas",
"OP-Stack": "8_627 gas"
"Arbitrum": "6_148 gas",
"OP-Stack": "8_610 gas"
},
"Phases": {
"Creation": "321_325 gas",
Expand Down
2 changes: 1 addition & 1 deletion packages/modulekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"erc7579": "github:erc7579/erc7579-implementation",
"@safe-global/safe-contracts": "^1.4.1",
"prettier": "^2.8.8",
"sentinellist": "github:zeroknots/sentinellist",
"sentinellist": "github:rhinestonewtf/sentinellist",
"solady": "github:vectorized/solady",
"solarray": "github:sablier-labs/solarray",
"solhint": "^4.1.1"
Expand Down
24 changes: 12 additions & 12 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 947ad94

Please sign in to comment.