0.7.39
This commit is contained in:
@@ -225,8 +225,10 @@ pub(crate) struct DemoPipeline2DexSupportMatrixEntry {
|
||||
pub family: std::string::String,
|
||||
/// Protocol version or `unknown` when not verified locally.
|
||||
pub version: std::string::String,
|
||||
/// Surface type: launch, bonding curve, AMM, CLMM, DLMM, router, aggregator or unknown.
|
||||
/// Technical surface type: launch, bonding curve, AMM, CLMM, DLMM, router, aggregator or unknown.
|
||||
pub surface_type: std::string::String,
|
||||
/// Strategic surface role: dex_effective, aggregator_router, launch_surface or to_verify.
|
||||
pub surface_role: std::string::String,
|
||||
/// Primary Solana program id, when verified in local constants or docs.
|
||||
pub program_id: std::option::Option<std::string::String>,
|
||||
/// Optional router program id, when this entry uses a distinct router.
|
||||
@@ -1263,7 +1265,7 @@ pub(crate) async fn demo_pipeline2_validate_local_pipeline(
|
||||
let service = kb_lib::LocalPipelineValidationService::new(database.clone());
|
||||
let profile_code = match request {
|
||||
Some(request) => request.profile_code,
|
||||
None => "0.7.39_launch_surface_origin_baseline".to_string(),
|
||||
None => "0.7.39_dex_first_effective_swap_surfaces".to_string(),
|
||||
};
|
||||
let run_result = match profile_code.as_str() {
|
||||
"0.7.27" | "0.7.27_dexes_non_regression" => {
|
||||
@@ -1302,7 +1304,7 @@ pub(crate) async fn demo_pipeline2_validate_local_pipeline(
|
||||
"0.7.38" | "0.7.38_token_metadata_gap_prioritization" => {
|
||||
service.validate_v0_7_38_current_database().await
|
||||
},
|
||||
"0.7.39" | "0.7.39_launch_surface_origin_baseline" => {
|
||||
"0.7.39" | "0.7.39_dex_first_effective_swap_surfaces" | "0.7.39_launch_surface_origin_baseline" => {
|
||||
service.validate_v0_7_39_current_database().await
|
||||
},
|
||||
other => Err(kb_lib::Error::InvalidState(format!(
|
||||
@@ -1762,6 +1764,7 @@ fn demo_pipeline2_map_dex_support_matrix_entry(
|
||||
family: entry.family,
|
||||
version: entry.version,
|
||||
surface_type: entry.surface_type,
|
||||
surface_role: entry.surface_role,
|
||||
program_id: entry.program_id,
|
||||
router_program_id: entry.router_program_id,
|
||||
program_id_status: entry.program_id_status,
|
||||
|
||||
Reference in New Issue
Block a user