clear_signing/resolver/
mod.rs1mod nested_resolution;
7mod source;
8mod typed_selection;
9
10#[cfg(feature = "github-registry")]
11mod github_registry;
12
13#[cfg(test)]
14pub(crate) mod test_support;
15
16pub use nested_resolution::{resolve_descriptors_for_tx, resolve_descriptors_for_typed_data};
17pub use source::{DescriptorSource, ResolvedDescriptor, StaticSource, TypedDescriptorLookup};
18
19#[cfg(feature = "github-registry")]
20pub use github_registry::{Eip712IndexEntry, GitHubRegistrySource};
21
22pub(crate) use typed_selection::{select_typed_outer_descriptor, TypedOuterSelection};