timechain_runtime/
version.rsuse polkadot_sdk::*;
use sp_version::{Cow, RuntimeVersion};
use crate::apis::RUNTIME_API_VERSIONS;
#[cfg(not(any(feature = "testnet", feature = "develop")))]
#[sp_version::runtime_version]
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: Cow::Borrowed("analog-timechain"),
impl_name: Cow::Borrowed("analog-timechain"),
authoring_version: 0,
spec_version: 46,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
system_version: 1,
};
#[cfg(all(not(feature = "testnet"), feature = "develop"))]
#[sp_version::runtime_version]
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: Cow::Borrowed("analog-staging"),
impl_name: Cow::Borrowed("analog-staging"),
authoring_version: 0,
spec_version: 46,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
system_version: 1,
};
#[cfg(all(feature = "testnet", not(feature = "develop")))]
#[sp_version::runtime_version]
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: Cow::Borrowed("analog-testnet"),
impl_name: Cow::Borrowed("analog-testnet"),
authoring_version: 0,
spec_version: 46,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
system_version: 1,
};
#[cfg(all(feature = "testnet", feature = "develop"))]
#[sp_version::runtime_version]
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: Cow::Borrowed("analog-develop"),
impl_name: Cow::Borrowed("analog-develop"),
authoring_version: 0,
spec_version: 46,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
system_version: 1,
};