rialo_stake_cache_interface/pda.rs
1// Copyright (c) Subzero Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Self-bond PDA helpers.
5//!
6//! The canonical definitions now live in [`rialo_validator_registry_interface::pda`]
7//! because the self-bond PDA is derived from that program's ID. These re-exports
8//! are kept for backward compatibility.
9
10pub use rialo_validator_registry_interface::pda::{
11 derive_self_bond_address, derive_self_bond_address_with_bump, SELF_BOND_SEED,
12};