frame-decode 0.17.2

Decode extrinsics and storage from Substrate based chains
Documentation
// Copyright (C) 2022-2025 Parity Technologies (UK) Ltd. (admin@parity.io)
// This file is a part of the frame-decode crate.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//         http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

mod decodable_values;
mod decode_with_error_tracing;
mod either;
mod encodable_values;
#[cfg(feature = "legacy")]
mod type_registry_from_metadata;

pub use decodable_values::{DecodableValues, IntoDecodableValues};
pub use encodable_values::{EncodableValues, IntoEncodableValues};

pub use decode_with_error_tracing::{DecodeErrorTrace, decode_with_error_tracing};
pub use either::Either;

#[cfg(feature = "legacy")]
pub use type_registry_from_metadata::{
    ToTypeRegistry, type_registry_from_metadata, type_registry_from_metadata_any,
};

/// A utility function to unwrap the `DecodeDifferent` enum found in earlier metadata versions.
#[cfg(feature = "legacy")]
pub fn as_decoded<A, B>(item: &frame_metadata::decode_different::DecodeDifferent<A, B>) -> &B {
    match item {
        frame_metadata::decode_different::DecodeDifferent::Encode(_a) => {
            panic!("Expecting decoded data")
        }
        frame_metadata::decode_different::DecodeDifferent::Decoded(b) => b,
    }
}