/** Maximum contract size, in bytes. */ export declare const CONTRACT_MAX_SIZE: number; /** Maximum number of witnesses. */ export declare const MAX_WITNESSES = 16; /** * Gas Price factor this is used to calculate * This is used to calculate the gas fee in Native Coins. * Ex.: transactionFee = Math.ceil( / MAX_GAS_PER_TX); */ /** Maximum length of script, in instructions. */ export declare const MAX_SCRIPT_LENGTH: number; /** Maximum length of script data, in bytes. */ export declare const MAX_SCRIPT_DATA_LENGTH: number; /** Maximum number of static contracts. */ export declare const MAX_STATIC_CONTRACTS = 255; /** Maximum length of predicate, in instructions. */ export declare const MAX_PREDICATE_LENGTH: number; /** Maximum length of predicate data, in bytes. */ export declare const MAX_PREDICATE_DATA_LENGTH: number; export declare const FAILED_REQUIRE_SIGNAL = "0xffffffffffff0000"; export declare const FAILED_TRANSFER_TO_ADDRESS_SIGNAL = "0xffffffffffff0001"; export declare const FAILED_ASSERT_EQ_SIGNAL = "0xffffffffffff0003"; export declare const FAILED_ASSERT_SIGNAL = "0xffffffffffff0004"; export declare const FAILED_ASSERT_NE_SIGNAL = "0xffffffffffff0005"; export declare const REVERT_WITH_LOG_SIGNAL = "0xffffffffffff0006"; export declare const PANIC_REASONS: string[]; export declare const PANIC_DOC_URL = "https://docs.rs/fuel-asm/latest/fuel_asm/enum.PanicReason.html"; export declare const SwaySignalErrors: { FAILED_REQUIRE_SIGNAL: string; FAILED_TRANSFER_TO_ADDRESS_SIGNAL: string; FAILED_ASSERT_EQ_SIGNAL: string; FAILED_ASSERT_SIGNAL: string; FAILED_ASSERT_NE_SIGNAL: string; REVERT_WITH_LOG_SIGNAL: string; }; //# sourceMappingURL=configs.d.ts.map