platform_version/version/fee/data_contract_registration/
v2.rs

1use crate::version::fee::data_contract_registration::FeeDataContractRegistrationVersion;
2
3/// Introduced in protocol version 9 (version 2.0)
4pub const FEE_DATA_CONTRACT_REGISTRATION_VERSION2: FeeDataContractRegistrationVersion =
5    FeeDataContractRegistrationVersion {
6        base_contract_registration_fee: 10_000_000_000, // 0.1 Dash
7        document_type_registration_fee: 2_000_000_000,  // 0.02 Dash
8        document_type_base_non_unique_index_registration_fee: 1_000_000_000, // 0.01 Dash
9        document_type_base_unique_index_registration_fee: 1_000_000_000, // 0.01 Dash
10        document_type_base_contested_index_registration_fee: 100_000_000_000, // 1 Dash
11        token_registration_fee: 10_000_000_000,         // 0.1 Dash
12        token_uses_perpetual_distribution_fee: 10_000_000_000, // 0.1 Dash
13        token_uses_pre_programmed_distribution_fee: 10_000_000_000, // 0.1 Dash
14        search_keyword_fee: 10_000_000_000,             // 0.1 Dash
15    };