openzeppelin_relayer/constants/
relayer.rs

1//! Default minimum balance constants for different blockchain networks
2//! These values are used to ensure relayers maintain sufficient funds for operation.
3pub const DEFAULT_EVM_MIN_BALANCE: u128 = 1; // 0.001 ETH in wei
4pub const DEFAULT_STELLAR_MIN_BALANCE: u64 = 1_000_000; // 1 XLM
5pub const DEFAULT_SOLANA_MIN_BALANCE: u64 = 10_000_000; // 0.01 Lamport
6pub const MAX_SOLANA_TX_DATA_SIZE: u16 = 1232;
7pub const EVM_SMALLEST_UNIT_NAME: &str = "wei";
8pub const ZERO_ADDRESS: &str = "0x0000000000000000000000000000000000000000";
9#[allow(dead_code)]
10pub const STELLAR_SMALLEST_UNIT_NAME: &str = "stroop";
11pub const SOLANA_SMALLEST_UNIT_NAME: &str = "lamport";
12
13pub const DEFAULT_RPC_WEIGHT: u8 = 100;