-
Notifications
You must be signed in to change notification settings - Fork 65
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 #378 from primitivefinance/feat/middleware
We have been waiting a while for this one!!!
- Loading branch information
Showing
183 changed files
with
3,362 additions
and
91,206 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 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 |
---|---|---|
|
@@ -2,6 +2,8 @@ name: lint | |
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
|
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 |
---|---|---|
|
@@ -16,4 +16,6 @@ Cargo.lock | |
|
||
.DS_Store | ||
# /contracts/* | ||
arbiter/ | ||
arbiter/ | ||
|
||
.vscode |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[package] | ||
name = "arbiter-core" | ||
version = "0.3.0" | ||
edition = "2021" | ||
|
||
# Dependencies for the release build | ||
[dependencies] | ||
|
||
# Ethereum and EVM | ||
ethers = { git = "https://github.com/primitivefinance/ethers-rs.git"} # Custom fork for middleware integration | ||
revm = "3.3.0" | ||
|
||
# Serialization | ||
bytes = "1.4.0" | ||
serde = { version = "1.0.163", features= ["derive"]} | ||
serde_json = { version = "1.0.96" } | ||
|
||
# Concurrency/async | ||
tokio = { version = "1.28.1", features = ["macros", "full"] } | ||
async-trait = "0.1.68" | ||
crossbeam-channel = "0.5.8" | ||
atomic_enum = "0.2.0" | ||
|
||
# Randomness | ||
rand = "0.8.5" | ||
rand_distr = "0.4.3" | ||
statrs = "0.16.0" | ||
RustQuant = "*" | ||
|
||
# Errors | ||
thiserror = "1.0.30" | ||
|
||
# Logging | ||
log = "0.4.19" | ||
|
||
# Dependencies for the test build and development | ||
[dev-dependencies] | ||
hex = { version = "0.4.3", default-features = false } | ||
anyhow = "1.0.71" | ||
env_logger = "0.10.0" | ||
test-log = "0.2.12" |
File renamed without changes.
Oops, something went wrong.