-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Numoen/test
Setup tests to use sepolia fork
- Loading branch information
Showing
44 changed files
with
1,399 additions
and
4,524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "lib/panoptic-v1-core"] | ||
path = lib/panoptic-v1-core | ||
url = https://github.com/panoptic-labs/panoptic-v1-core |
Submodule panoptic-v1-core
added at
3cd6bd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
packages/panoptic-sdk/src/_test/bytecode/collateralTracker.ts
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
import { startProxy } from "@viem/anvil"; | ||
import { testClient } from "./utils.js"; | ||
|
||
export default async function () { | ||
return await startProxy({ | ||
port: 8545, // By default, the proxy will listen on port 8545. | ||
host: "::", // By default, the proxy will listen on all interfaces. | ||
const shutdown = await startProxy({ | ||
options: { | ||
forkUrl: "https://ethereum-sepolia.blockpi.network/v1/rpc/public", | ||
}, | ||
}); | ||
|
||
await testClient.setAutomine(true); | ||
|
||
return shutdown; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.