Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file.
- Allow incremental multicast group addition without disconnecting
- Reset SIGPIPE to SIG_DFL at the start of main() in all 3 CLI binaries (doublezero, doublezero-geolocation, doublezero-admin) so the process exits silently like standard CLI tools
- Support `--type outbound-icmp` in geolocation `user add-target`, `remove-target`, and `get` commands
- Add sentinel admin commands to find and create multicast publishers for IBRL validators
- SDK
- Add Go SDK for shred subscription program with read-only account deserialization (epoch state, seat assignments, pricing, settlement, validator client rewards), PDA derivation helpers, RPC fetchers, compatibility tests, and a fetch example CLI
- Add `GeoLocationTargetTypeOutboundIcmp` to Go geolocation SDK with deserialization and round-trip test support
Expand Down
151 changes: 147 additions & 4 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ members = [
"smartcontract/programs/doublezero-geolocation",
"smartcontract/programs/common",
"e2e/docker/ledger/fork-accounts",
"crates/sentinel",
]
default-members = []
exclude = [
Expand Down Expand Up @@ -69,6 +70,7 @@ log = "0"
metrics = "0"
metrics-util = "0"
mockall = "0"
reqwest = "0"
regex = "1"
serde = "1"
serde_bytes = "0"
Expand Down Expand Up @@ -98,6 +100,7 @@ tokio = { version = "1", default-features = false, features = [
"signal",
] }
doublezero-config = { path = "config" }
doublezero-sentinel = { path = "crates/sentinel" }
doublezero_cli = { path = "smartcontract/cli" }
doublezero-program-common = { path = "smartcontract/programs/common" }
doublezero_sdk = { path = "smartcontract/sdk/rs" }
Expand Down
1 change: 1 addition & 0 deletions controlplane/doublezero-admin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ doublezero_cli.workspace = true
doublezero-config.workspace = true
doublezero-serviceability.workspace = true
doublezero-program-common.workspace = true
doublezero-sentinel.workspace = true
5 changes: 4 additions & 1 deletion controlplane/doublezero-admin/src/cli/command.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use super::multicast::MulticastCliCommand;
use super::{multicast::MulticastCliCommand, sentinel::SentinelCliCommand};
use crate::cli::{
accesspass::AccessPassCliCommand, config::ConfigCliCommand, contributor::ContributorCliCommand,
device::DeviceCliCommand, exchange::ExchangeCliCommand, globalconfig::GlobalConfigCliCommand,
Expand Down Expand Up @@ -66,6 +66,9 @@ pub enum Command {
/// Manage multicast
#[command()]
Multicast(MulticastCliCommand),
/// Sentinel admin commands
#[command()]
Sentinel(SentinelCliCommand),
/// Export all data to files
#[command()]
Export(ExportCliCommand),
Expand Down
1 change: 1 addition & 0 deletions controlplane/doublezero-admin/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ pub mod location;
pub mod multicast;
pub mod multicastgroup;
pub mod permission;
pub mod sentinel;
pub mod tenant;
pub mod user;
Loading
Loading