platform_version/version/fee/data_contract_registration/
v1.rs

1use crate::version::fee::data_contract_registration::FeeDataContractRegistrationVersion;
2
3// There were no fees for these things before Protocol version 9 (version 2.0)
4pub const FEE_DATA_CONTRACT_REGISTRATION_VERSION1: FeeDataContractRegistrationVersion =
5    FeeDataContractRegistrationVersion {
6        base_contract_registration_fee: 0,
7        document_type_registration_fee: 0,
8        document_type_base_non_unique_index_registration_fee: 0,
9        document_type_base_unique_index_registration_fee: 0,
10        document_type_base_contested_index_registration_fee: 0,
11        token_registration_fee: 0,
12        token_uses_perpetual_distribution_fee: 0,
13        token_uses_pre_programmed_distribution_fee: 0,
14        search_keyword_fee: 0,
15    };