init of subxt-core crate

This commit is contained in:
Tadeo hepperle
2024-01-29 15:08:42 +01:00
parent fbee16dfb6
commit a3ec38f8b6
34 changed files with 4107 additions and 5 deletions
+25
View File
@@ -0,0 +1,25 @@
// Copyright 2019-2023 Parity Technologies (UK) Ltd.
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
// see LICENSE for license details.
//! # Subxt-core
//!
//! `#[no_std]` compatible core crate for subxt.
#![cfg_attr(not(feature = "std"), no_std)]
pub mod client;
pub mod config;
pub mod dynamic;
pub mod metadata;
pub mod prelude;
pub mod tx;
pub mod utils;
pub use config::{
BlockHash, Config, ExtrinsicParams, ExtrinsicParamsEncoder, PolkadotConfig,
PolkadotExtrinsicParams, SubstrateConfig, SubstrateExtrinsicParams,
};
#[macro_use]
mod macros;