1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
// Copyright 2020 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0
//!
//! All human readable values (e.g base58 encoded hashes and addresses)
//! implement the Base58Checked encoding <https://en.bitcoin.it/wiki/Base58Check_encoding>
//!
//! This adds a unique prefix byte to each type of encoding so they cannot be confused
//! (e.g. a hash cannot be used as an address). It also adds checksum bytes to the end.
//!
// TODO: Move the entire version_bytes.rs under crypto crate here
/// base58 version check byte for ledger hash
pub const LEDGER_HASH: u8 = 0x05;
/// base58 version check byte for coinbase hash
pub const COINBASE_HASH: u8 = 0x0c;
/// base58 version check byte for epoch seed hash
pub const EPOCH_SEED: u8 = 0x0d;
/// base58 version check byte for state hash
pub const STATE_HASH: u8 = 0x10;
/// base58 version check byte for state body hash
pub const STATE_BODY_HASH: u8 = 0x11;
/// base58 version check byte for vrf output hash
pub const VRF_TRUNCATED_OUTPUT: u8 = 0x15;
/// base58 version check byte for aux hash
pub const STAGED_LEDGER_HASH_AUX_HASH: u8 = 0x0e;
/// base58 version check byte for pending coinbase aux hash
pub const STAGED_LEDGER_HASH_PENDING_COINBASE_AUX: u8 = 0x0f;
/// base58 version check byte for user command memo
pub const USER_COMMAND_MEMO: u8 = 0x14;
/// base58 version check byte for signature
pub const SIGNATURE: u8 = 0x9a;
/// base58 version check byte for coinbase stack data
pub const COINBASE_STACK_DATA: u8 = 0x17;
/// base58 version check byte for coinbase stack hash
pub const COINBASE_STACK_HASH: u8 = 0x18;