ckb-types 0.113.0-rc1

Provides the essential types for CKB.
Documentation
//! Global data, initialized in the launch phase.

use once_cell::sync::OnceCell;
use std::path::PathBuf;

/// ckb data directory path, located under root/data, initialized during the launch phase
pub static DATA_DIR: OnceCell<PathBuf> = OnceCell::new();