Skip to content

Commit 605300f

Browse files
committed
feat: update dependencies
1 parent 264e4e0 commit 605300f

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

lib/forge-std/src/StdChains.sol

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,10 @@ abstract contract StdChains {
246246
setChainWithDefaultRpcUrl(
247247
"berachain_bartio_testnet", ChainData("Berachain bArtio Testnet", 80084, "https://bartio.rpc.berachain.com")
248248
);
249+
setChainWithDefaultRpcUrl("flare", ChainData("Flare", 14, "https://flare-api.flare.network/ext/C/rpc"));
250+
setChainWithDefaultRpcUrl(
251+
"flare_coston2", ChainData("Flare Coston2", 114, "https://coston2-api.flare.network/ext/C/rpc")
252+
);
249253
}
250254

251255
// set chain info, with priority to chainAlias' rpc url in foundry.toml

lib/forge-std/src/Vm.sol

Lines changed: 17 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/forge-std/test/StdChains.t.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ contract StdChainsTest is Test {
8080
// _testRpc("fraxtal");
8181
// _testRpc("fraxtal_testnet");
8282
// _testRpc("berachain_bartio_testnet");
83+
// _testRpc("flare");
84+
// _testRpc("flare_coston2");
8385
// }
8486

8587
function test_ChainNoDefault() public {

lib/forge-std/test/Vm.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ contract VmTest is Test {
99
// inadvertently moved between Vm and VmSafe. This test must be updated each time a function is
1010
// added to or removed from Vm or VmSafe.
1111
function test_interfaceId() public pure {
12-
assertEq(type(VmSafe).interfaceId, bytes4(0x5c59cbde), "VmSafe");
13-
assertEq(type(Vm).interfaceId, bytes4(0x1316b43e), "Vm");
12+
assertEq(type(VmSafe).interfaceId, bytes4(0x9dd1a1c8), "VmSafe");
13+
assertEq(type(Vm).interfaceId, bytes4(0x02edefa2), "Vm");
1414
}
1515
}

0 commit comments

Comments
 (0)