Skip to content

Commit

Permalink
Merge branch 'develop' into merge/auto/master-to-develop
Browse files Browse the repository at this point in the history
  • Loading branch information
espendk authored Feb 29, 2024
2 parents 264d1b2 + c8cbb54 commit 9116dbf
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ goerli="${GOERLI_NODE_URL}"
arbitrum="${ARBITRUM_NODE_URL}"
blast="${BLAST_NODE_URL}"
blast_sepolia="${BLAST_SEPOLIA_NODE_URL}"
blast="${BLAST_NODE_URL}"

[etherscan]
goerli={key="${GOERLI_API_KEY}"}
Expand Down
1 change: 1 addition & 0 deletions script/lib/Deployer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {GoerliFork} from "@mgv/test/lib/forks/Goerli.sol";
import {SepoliaFork} from "@mgv/test/lib/forks/Sepolia.sol";
import {BlastFork} from "@mgv/test/lib/forks/Blast.sol";
import {BlastSepoliaFork} from "@mgv/test/lib/forks/BlastSepolia.sol";
import {BlastFork} from "@mgv/test/lib/forks/BlastFork.sol";
import {ZkevmFork} from "@mgv/test/lib/forks/Zkevm.sol";
import {console2 as console} from "@mgv/forge-std/console2.sol";

Expand Down
12 changes: 12 additions & 0 deletions test/lib/forks/BlastFork.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import {GenericFork} from "./Generic.sol";

contract BlastFork is GenericFork {
constructor() {
CHAIN_ID = 81457;
NAME = "blast";
NETWORK = "blast";
}
}

0 comments on commit 9116dbf

Please sign in to comment.