mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-16 20:11:03 +00:00
2ab3f03f0b
Removes the `bridges/snowbridge/parachain` directory and moves everything up to under `snowbridge` directly. We are cleaning up our local dev env after merging our crates into the polkadot-sdk. --------- Co-authored-by: claravanstaden <Cats 4 life!>
11 lines
333 B
Rust
11 lines
333 B
Rust
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2023 Snowfork <hello@snowfork.com>
|
|
pub const MAX_PROOF_SIZE: u32 = 20;
|
|
|
|
pub const FEE_RECIPIENT_SIZE: usize = 20;
|
|
pub const EXTRA_DATA_SIZE: usize = 32;
|
|
pub const LOGS_BLOOM_SIZE: usize = 256;
|
|
|
|
pub const PUBKEY_SIZE: usize = 48;
|
|
pub const SIGNATURE_SIZE: usize = 96;
|