Skip to content

Commit

Permalink
Merge branch 'master' into evan/updated-integration-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ebatsell authored Dec 4, 2024
2 parents c479af7 + 8bd7dec commit 2847b34
Show file tree
Hide file tree
Showing 26 changed files with 927 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: jito_steward.json
path: programs/steward/idl/jito_steward.json
path: programs/steward/idl/steward.json

# tests run on verified build
test:
Expand Down
128 changes: 125 additions & 3 deletions Cargo.lock

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

24 changes: 24 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,35 @@
[workspace]
members = [
"api",
"keepers/*",
"programs/*",
"sdk",
"tests",
"utils/*",
]

resolver = "2"

[profile.release]
overflow-checks = true

[workspace.dependencies]
anchor-lang = "0.30.0"
axum = "0.6.2"
clap = { version = "4.3.0", features = ["derive", "env"] }
http = { version = "0.2.1" }
serde = "1.0.183"
serde_derive = "1.0.183"
serde_json = "1.0.102"
solana-program = "1.18"
solana-rpc-client = "1.18"
solana-rpc-client-api = "1.18"
stakenet-sdk = { path = "sdk", version = "0.1.0" }
thiserror = "1.0.37"
tokio = { version = "1.36.0", features = ["full"] }
tower = { version = "0.4.13", features = ["limit", "buffer", "timeout", "load-shed"] }
tower-http = { version = "0.4.0", features = ["trace"] }
tracing = { version = "0.1.37" }
tracing-core = "0.1.32"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
validator-history = { path = "programs/validator-history", version = "0.1.0" }
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@ On-chain Steward accounts for JitoSOL:
| Steward State | 9BAmGVLGxzqct6bkgjWmKSv3BFB6iKYXNBQp8GWG1LDY|
| Authority | 9eZbWiHsPRsxLSiHxzg2pkXsAuQMwAjQrda7C7e21Fw6|


# Audits

| Program | Date | Commit |
|---------|------|--------|
| Steward | [2024-07-29](security-audits/jito_steward_audit.pdf) | [f4ea93a](https://github.com/jito-foundation/stakenet/commit/f4ea93a) |
| Validator History | [2024-01-12](security-audits/jito_validator_history_audit.pdf) | [fc34c25](https://github.com/jito-foundation/stakenet/commit/fc34c25) |



## Build and Test

### Build
Expand Down
29 changes: 29 additions & 0 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[package]
name = "jito-stakenet-api"
version = "0.1.0"
edition = "2021"

[[bin]]
name = "jito-stakenet-api"
path = "src/bin/main.rs"

[dependencies]
anchor-lang = { workspace = true }
axum = { workspace = true }
clap = { workspace = true }
http = { workspace = true }
serde = { workspace = true }
serde_derive = { workspace = true }
serde_json = { workspace = true }
solana-program = { workspace = true }
solana-rpc-client = { workspace = true }
solana-rpc-client-api = { workspace = true }
stakenet-sdk = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tower = { workspace = true }
tower-http = { workspace = true }
tracing = { workspace = true }
tracing-core = { workspace = true }
tracing-subscriber = { workspace = true }
validator-history = { workspace = true }
Loading

0 comments on commit 2847b34

Please sign in to comment.