Skip to main content

rialo_a_transaction_view/
lib.rs

1// Copyright (c) Subzero Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3// This file is either (a) original to Subzero Labs, Inc. or (b) derived from the Anza codebase and modified by Subzero Labs, Inc.
4
5#![allow(unsafe_code)]
6#![allow(clippy::ptr_as_ptr)]
7
8// Parsing helpers only need to be public for benchmarks.
9#[cfg(feature = "dev-context-only-utils")]
10pub mod bytes;
11#[cfg(not(feature = "dev-context-only-utils"))]
12mod bytes;
13
14mod instructions_frame;
15mod message_header_frame;
16pub mod resolved_transaction_view;
17pub mod result;
18mod sanitize;
19mod signature_frame;
20pub mod static_account_keys_frame;
21pub mod transaction_data;
22mod transaction_frame;
23pub mod transaction_version;
24pub mod transaction_view;