blueprint-pricing-engine 0.3.0-alpha.3

Tangle Cloud Pricing Engine for service offerings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
use crate::benchmark_cache::BenchmarkCache;
use crate::config::OperatorConfig;
use crate::pow::{DEFAULT_POW_DIFFICULTY, generate_challenge, generate_proof, verify_proof};
use crate::pricing::{
    SubscriptionPricing, calculate_event_price, calculate_price_with_curve,
    calculate_subscription_price,
};
use crate::signer::{OperatorSigner, SignableQuote, SignedQuote as SignerSignedQuote};
use blueprint_core::{error, info, warn};
use blueprint_crypto::BytesEncoding;
use chrono::Utc;
use rust_decimal::prelude::ToPrimitive;
use std::sync::Arc;
use tokio::sync::Mutex;
use tonic::{Request, Response, Status, transport::Server};
use tower_http::cors::{Any, CorsLayer};

use crate::pricing_engine::{
    AssetSecurityCommitment, GetJobPriceRequest, GetJobPriceResponse, GetPriceRequest,
    GetPriceResponse, JobQuoteDetails as ProtoJobQuoteDetails, PricingModelHint, QuoteDetails,
    ResourcePricing as ProtoResourcePricing,
    pricing_engine_server::{PricingEngine, PricingEngineServer},
};

/// Per-job pricing configuration: (service_id, job_index) → price in wei
///
/// Operators configure per-job prices either statically (TOML config) or dynamically.
/// If no entry exists for a (service_id, job_index) pair, the RPC returns NOT_FOUND.
pub type JobPricingConfig = std::collections::HashMap<(u64, u32), alloy_primitives::U256>;

/// x402 settlement configuration for cross-chain payment options.
///
/// When set, the RPC server will include settlement options in `GetJobPriceResponse`,
/// allowing clients to pay via x402 on any supported chain/token.
///
/// Note: `X402AcceptedToken` mirrors `blueprint_x402::config::AcceptedToken`.
/// A cyclic dependency (`runner -> qos -> remote-providers -> pricing-engine`)
/// prevents importing from `blueprint-x402` directly. If you change the
/// conversion logic here, update `AcceptedToken::convert_wei_to_amount` in
/// `crates/x402/src/config.rs` as well.
#[derive(Debug, Clone)]
pub struct X402SettlementConfig {
    /// Operator's x402 gateway endpoint URL.
    pub x402_endpoint: String,
    /// Accepted tokens for x402 settlement, with conversion rates.
    pub accepted_tokens: Vec<X402AcceptedToken>,
}

/// An accepted token for x402 settlement.
///
/// Mirrors `blueprint_x402::config::AcceptedToken`. See [`X402SettlementConfig`]
/// for why this is duplicated.
#[derive(Debug, Clone)]
pub struct X402AcceptedToken {
    /// CAIP-2 network identifier, e.g. `"eip155:8453"` for Base.
    pub network: String,
    /// Token contract address on the EVM chain.
    pub asset: String,
    /// Human-readable symbol.
    pub symbol: String,
    /// Token decimals.
    pub decimals: u8,
    /// Operator's receive address on this chain.
    pub pay_to: String,
    /// Exchange rate: token units per native unit (e.g. 3200 USDC per ETH).
    pub rate_per_native_unit: rust_decimal::Decimal,
    /// Markup in basis points.
    pub markup_bps: u16,
}

/// Subscription pricing config: `Option<blueprint_id>` → `SubscriptionPricing`.
pub type SubscriptionPricingConfig = std::collections::HashMap<Option<u64>, SubscriptionPricing>;

/// Maximum allowed clock drift between client and server for PoW challenge timestamps.
const CHALLENGE_TIMESTAMP_TOLERANCE_SECS: u64 = 30;

pub struct PricingEngineService {
    config: Arc<OperatorConfig>,
    benchmark_cache: Arc<BenchmarkCache>,
    pricing_config:
        Arc<Mutex<std::collections::HashMap<Option<u64>, Vec<crate::pricing::ResourcePricing>>>>,
    job_pricing_config: Arc<Mutex<JobPricingConfig>>,
    subscription_config: Arc<Mutex<SubscriptionPricingConfig>>,
    signer: Arc<Mutex<OperatorSigner>>,
    pow_difficulty: u32,
    /// Optional x402 settlement config. When set, `GetJobPriceResponse` includes
    /// cross-chain payment options alongside the signed quote.
    x402_config: Option<X402SettlementConfig>,
    /// TEE pricing configuration. Controls availability, multiplier, and provider name.
    tee_config: crate::pricing::TeePricing,
    /// Optional TTL pricing curve for non-linear duration-based pricing.
    ttl_curve: Option<crate::pricing::TtlPricingCurve>,
}

impl PricingEngineService {
    /// Backward-compatible constructor for deployments that only need PAY_ONCE quotes.
    /// `GetJobPrice` requests return NOT_FOUND unless job pricing is attached.
    pub fn new(
        config: Arc<OperatorConfig>,
        benchmark_cache: Arc<BenchmarkCache>,
        pricing_config: Arc<
            Mutex<std::collections::HashMap<Option<u64>, Vec<crate::pricing::ResourcePricing>>>,
        >,
        signer: Arc<Mutex<OperatorSigner>>,
    ) -> Self {
        Self::new_with_configs(
            config,
            benchmark_cache,
            pricing_config,
            Arc::new(Mutex::new(JobPricingConfig::new())),
            SubscriptionPricingConfig::new(),
            signer,
        )
    }

    /// Fully configured constructor including per-job and subscription pricing maps.
    pub fn new_with_configs(
        config: Arc<OperatorConfig>,
        benchmark_cache: Arc<BenchmarkCache>,
        pricing_config: Arc<
            Mutex<std::collections::HashMap<Option<u64>, Vec<crate::pricing::ResourcePricing>>>,
        >,
        job_pricing_config: Arc<Mutex<JobPricingConfig>>,
        subscription_config: SubscriptionPricingConfig,
        signer: Arc<Mutex<OperatorSigner>>,
    ) -> Self {
        Self {
            config,
            benchmark_cache,
            pricing_config,
            job_pricing_config,
            subscription_config: Arc::new(Mutex::new(subscription_config)),
            signer,
            pow_difficulty: DEFAULT_POW_DIFFICULTY,
            x402_config: None,
            tee_config: crate::pricing::TeePricing::default(),
            ttl_curve: None,
        }
    }

    /// Backward-compatible constructor for deployments that only use per-job RFQ.
    /// Subscription and event-driven GetPrice requests will return NOT_FOUND unless
    /// subscription config is attached via `with_subscription_pricing`.
    pub fn with_job_pricing(
        config: Arc<OperatorConfig>,
        benchmark_cache: Arc<BenchmarkCache>,
        pricing_config: Arc<
            Mutex<std::collections::HashMap<Option<u64>, Vec<crate::pricing::ResourcePricing>>>,
        >,
        job_pricing_config: Arc<Mutex<JobPricingConfig>>,
        signer: Arc<Mutex<OperatorSigner>>,
    ) -> Self {
        Self::new_with_configs(
            config,
            benchmark_cache,
            pricing_config,
            job_pricing_config,
            SubscriptionPricingConfig::new(),
            signer,
        )
    }

    /// Attach subscription/event-driven pricing config after construction.
    pub fn with_subscription_pricing(
        mut self,
        subscription_config: SubscriptionPricingConfig,
    ) -> Self {
        self.subscription_config = Arc::new(Mutex::new(subscription_config));
        self
    }

    /// Enable x402 settlement options in `GetJobPriceResponse`.
    ///
    /// When configured, every job quote response will include cross-chain
    /// payment options that clients can use to settle via x402.
    pub fn with_x402_settlement(mut self, config: X402SettlementConfig) -> Self {
        self.x402_config = Some(config);
        self
    }

    /// Attach TEE pricing configuration.
    ///
    /// Controls whether this operator advertises TEE capability and
    /// what price multiplier to apply for TEE-attested quotes.
    pub fn with_tee_pricing(mut self, tee_config: crate::pricing::TeePricing) -> Self {
        self.tee_config = tee_config;
        self
    }

    /// Attach a TTL pricing curve for non-linear duration-based pricing.
    ///
    /// When set, the pricing engine applies a curve multiplier to TTL-based
    /// quotes instead of pure linear scaling. This allows operators to offer
    /// volume discounts for longer commitments.
    pub fn with_ttl_curve(mut self, curve: crate::pricing::TtlPricingCurve) -> Self {
        self.ttl_curve = Some(curve);
        self
    }

    /// Override the proof-of-work difficulty for testing.
    ///
    /// The default difficulty (`DEFAULT_POW_DIFFICULTY = 20`) can take too long
    /// on slow CI runners, causing challenge timestamps to expire. Use a low
    /// value (e.g. 1) in integration tests.
    pub fn with_pow_difficulty(mut self, difficulty: u32) -> Self {
        self.pow_difficulty = difficulty;
        self
    }
}

#[tonic::async_trait]
impl PricingEngine for PricingEngineService {
    async fn get_price(
        &self,
        request: Request<GetPriceRequest>,
    ) -> Result<Response<GetPriceResponse>, Status> {
        let req = request.into_inner();
        let blueprint_id = req.blueprint_id;
        let ttl_blocks = req.ttl_blocks;
        let proof_of_work = req.proof_of_work;
        let pricing_model = req.pricing_model; // 0=PayOnce, 1=Subscription, 2=EventDriven

        info!(
            "Received GetPrice request for blueprint ID: {} (pricing_model={})",
            blueprint_id, pricing_model
        );

        let current_timestamp = Utc::now().timestamp() as u64;
        let challenge_timestamp = if req.challenge_timestamp > 0 {
            if req.challenge_timestamp
                < current_timestamp.saturating_sub(CHALLENGE_TIMESTAMP_TOLERANCE_SECS)
            {
                warn!(
                    "Challenge timestamp is too old: {}",
                    req.challenge_timestamp
                );
                return Err(Status::invalid_argument("Challenge timestamp is too old"));
            }
            if req.challenge_timestamp > current_timestamp + CHALLENGE_TIMESTAMP_TOLERANCE_SECS {
                warn!(
                    "Challenge timestamp is too far in the future: {}",
                    req.challenge_timestamp
                );
                return Err(Status::invalid_argument(
                    "Challenge timestamp is too far in the future",
                ));
            }
            req.challenge_timestamp
        } else {
            return Err(Status::invalid_argument(
                "Challenge timestamp is missing or invalid",
            ));
        };

        let challenge = generate_challenge(blueprint_id, challenge_timestamp);
        if !verify_proof(&challenge, &proof_of_work, self.pow_difficulty).map_err(|e| {
            warn!("Failed to verify proof of work: {}", e);
            Status::invalid_argument("Invalid proof of work")
        })? {
            warn!("Invalid proof of work for blueprint ID: {}", blueprint_id);
            return Err(Status::invalid_argument("Invalid proof of work"));
        }

        let security_requirements = match req.security_requirements {
            Some(requirements) => requirements.clone(),
            None => {
                return Err(Status::invalid_argument("Missing security requirements"));
            }
        };

        // Branch on pricing model BEFORE benchmark lookup.
        // Subscription and event-driven modes don't need benchmarks.
        let model = PricingModelHint::try_from(pricing_model).map_err(|_| {
            Status::invalid_argument(format!(
                "Unknown pricing_model value: {pricing_model}. Expected 0 (PAY_ONCE), 1 (SUBSCRIPTION), or 2 (EVENT_DRIVEN)"
            ))
        })?;
        let price_model = match model {
            PricingModelHint::Subscription => {
                // SUBSCRIPTION: flat rate per billing interval
                let sub_config = self.subscription_config.lock().await;
                let pricing = sub_config
                    .get(&Some(blueprint_id))
                    .or_else(|| sub_config.get(&None))
                    .ok_or_else(|| {
                        Status::not_found(format!(
                            "No subscription pricing configured for blueprint {blueprint_id}"
                        ))
                    })?;
                info!(
                    "Subscription pricing for blueprint {}: rate={}, interval={}s",
                    blueprint_id, pricing.subscription_rate, pricing.subscription_interval
                );
                calculate_subscription_price(pricing, Some(&security_requirements))
            }
            PricingModelHint::EventDriven => {
                // EVENT_DRIVEN: flat rate per event
                let sub_config = self.subscription_config.lock().await;
                let pricing = sub_config
                    .get(&Some(blueprint_id))
                    .or_else(|| sub_config.get(&None))
                    .ok_or_else(|| {
                        Status::not_found(format!(
                            "No event pricing configured for blueprint {blueprint_id}"
                        ))
                    })?;
                calculate_event_price(pricing, Some(&security_requirements))
            }
            PricingModelHint::PayOnce => {
                // PAY_ONCE: resource-based pricing with benchmarks
                let benchmark_profile = match self.benchmark_cache.get_profile(blueprint_id) {
                    Ok(Some(profile)) => profile,
                    _ => {
                        warn!(
                            "No benchmark profile found for blueprint ID: {}",
                            blueprint_id
                        );
                        return Err(Status::not_found(format!(
                            "No benchmark profile found for blueprint ID: {blueprint_id}"
                        )));
                    }
                };

                let pricing_config = self.pricing_config.lock().await;
                match calculate_price_with_curve(
                    benchmark_profile,
                    &pricing_config,
                    Some(blueprint_id),
                    ttl_blocks,
                    Some(&security_requirements),
                    self.ttl_curve.as_ref(),
                ) {
                    Ok(model) => model,
                    Err(e) => {
                        error!(
                            "Failed to calculate price for blueprint ID {}: {:?}",
                            blueprint_id, e
                        );
                        return Err(Status::internal("Failed to calculate price"));
                    }
                }
            }
        };

        // Get the total cost from the price model
        let crate::pricing::PriceModel {
            resources: price_resources,
            total_cost: base_cost,
            ..
        } = price_model;

        // Apply TEE pricing multiplier if requested
        let require_tee = req.require_tee;
        let total_cost =
            crate::pricing::apply_tee_pricing(base_cost, require_tee, &self.tee_config).map_err(
                |e| match e {
                    crate::error::PricingError::TeeNotAvailable => {
                        Status::unavailable("TEE execution is not available on this operator")
                    }
                    other => Status::internal(format!("TEE pricing error: {other}")),
                },
            )?;
        let (tee_attested, tee_provider) = if require_tee && self.tee_config.available {
            (true, self.tee_config.provider.clone())
        } else {
            (false, String::new())
        };

        let security_commitment = AssetSecurityCommitment {
            asset: security_requirements.asset.clone(),
            exposure_percent: security_requirements.minimum_exposure_percent,
        };

        // Prepare the response
        let expiry_time = Utc::now().timestamp() as u64 + self.config.quote_validity_duration_secs;
        let timestamp = Utc::now().timestamp() as u64;

        // Convert our internal resource pricing to proto resource pricing
        let proto_resources: Vec<ProtoResourcePricing> = price_resources
            .iter()
            .map(|rp| {
                let rate = rp.price_per_unit_rate.to_f64().ok_or_else(|| {
                    Status::internal(format!(
                        "Price rate {} for {:?} exceeds f64 range",
                        rp.price_per_unit_rate, rp.kind
                    ))
                })?;
                Ok(ProtoResourcePricing {
                    kind: format!("{:?}", rp.kind),
                    count: rp.count,
                    price_per_unit_rate: rate,
                })
            })
            .collect::<std::result::Result<Vec<_>, Status>>()?;

        // Precision limitation: the proto field `total_cost_rate` is `double` (f64),
        // so Decimal values exceeding f64's 53-bit mantissa will lose precision.
        // Changing this requires a proto schema migration.
        let total_cost_f64 = total_cost.to_f64().ok_or_else(|| {
            Status::internal(format!("Total cost {total_cost} exceeds f64 range"))
        })?;

        // Create the quote details directly using proto types
        let quote_details = QuoteDetails {
            blueprint_id,
            ttl_blocks,
            total_cost_rate: total_cost_f64,
            timestamp,
            expiry: expiry_time,
            resources: proto_resources,
            security_commitments: vec![security_commitment],
        };

        let confidentiality = if require_tee {
            crate::signer::Confidentiality::Required
        } else {
            crate::signer::Confidentiality::Any
        };
        let signable_quote =
            SignableQuote::with_confidentiality(quote_details, total_cost, confidentiality)
                .map_err(|e| {
                    error!(
                        "Failed to prepare signable quote for blueprint ID {}: {}",
                        blueprint_id, e
                    );
                    Status::internal("Failed to build signable quote")
                })?;

        // Generate proof of work for the response
        let response_pow = generate_proof(&challenge, self.pow_difficulty)
            .await
            .map_err(|e| {
                error!("Failed to generate proof of work: {}", e);
                Status::internal("Failed to generate proof of work")
            })?;

        // Sign the quote using the hash-based approach
        let signed_quote: SignerSignedQuote = match self
            .signer
            .lock()
            .await
            .sign_quote(signable_quote, response_pow.clone())
        {
            Ok(quote) => quote,
            Err(e) => {
                error!("Failed to sign quote for {}: {}", blueprint_id, e);
                return Err(Status::internal("Failed to sign price quote"));
            }
        };

        // Create the response with 65-byte signature (r || s || v)
        let mut sig_bytes = signed_quote.signature.to_bytes().to_vec();
        sig_bytes.push(27 + signed_quote.recovery_id);
        let response = GetPriceResponse {
            quote_details: Some(signed_quote.quote_details.clone()),
            signature: sig_bytes,
            operator_id: signed_quote.operator_id.0.to_vec(),
            proof_of_work: signed_quote.proof_of_work,
            tee_attested,
            tee_provider,
        };

        info!("Sending signed quote for blueprint ID: {}", blueprint_id);
        Ok(Response::new(response))
    }

    async fn get_job_price(
        &self,
        request: Request<GetJobPriceRequest>,
    ) -> Result<Response<GetJobPriceResponse>, Status> {
        let req = request.into_inner();
        let service_id = req.service_id;
        let job_index = req.job_index;

        info!(
            "Received GetJobPrice request for service {} job index {}",
            service_id, job_index
        );

        // Validate challenge timestamp
        let current_timestamp = Utc::now().timestamp() as u64;
        let challenge_timestamp = if req.challenge_timestamp > 0 {
            if req.challenge_timestamp
                < current_timestamp.saturating_sub(CHALLENGE_TIMESTAMP_TOLERANCE_SECS)
            {
                return Err(Status::invalid_argument("Challenge timestamp is too old"));
            }
            if req.challenge_timestamp > current_timestamp + CHALLENGE_TIMESTAMP_TOLERANCE_SECS {
                return Err(Status::invalid_argument(
                    "Challenge timestamp is too far in the future",
                ));
            }
            req.challenge_timestamp
        } else {
            return Err(Status::invalid_argument(
                "Challenge timestamp is missing or invalid",
            ));
        };

        // Verify proof of work (use service_id as the challenge seed)
        let challenge = generate_challenge(service_id, challenge_timestamp);
        if !verify_proof(&challenge, &req.proof_of_work, self.pow_difficulty).map_err(|e| {
            warn!("Failed to verify proof of work: {}", e);
            Status::invalid_argument("Invalid proof of work")
        })? {
            return Err(Status::invalid_argument("Invalid proof of work"));
        }

        // Reject TEE requests if operator doesn't support TEE
        let require_tee = req.require_tee;
        if require_tee && !self.tee_config.available {
            return Err(Status::unavailable(
                "TEE execution is not available on this operator",
            ));
        }

        // Look up per-job price from config
        let job_pricing = self.job_pricing_config.lock().await;
        let price = match job_pricing.get(&(service_id, job_index)) {
            Some(p) => *p,
            None => {
                warn!(
                    "No job pricing configured for service {} job index {}",
                    service_id, job_index
                );
                return Err(Status::not_found(format!(
                    "No pricing configured for service {service_id} job index {job_index}"
                )));
            }
        };
        drop(job_pricing);

        // Apply TEE multiplier to the wei price if TEE is requested.
        let price = if require_tee {
            // Convert U256 → Decimal, apply multiplier, convert back
            let price_dec = rust_decimal::Decimal::from_str_exact(&price.to_string())
                .map_err(|e| Status::internal(format!("price→Decimal: {e}")))?;
            let adjusted = price_dec * self.tee_config.multiplier;
            let adjusted_str = adjusted.floor().to_string();
            alloy_primitives::U256::from_str_radix(&adjusted_str, 10)
                .map_err(|e| Status::internal(format!("Decimal→U256: {e}")))?
        } else {
            price
        };

        let (tee_attested, tee_provider) = if require_tee && self.tee_config.available {
            (true, self.tee_config.provider.clone())
        } else {
            (false, String::new())
        };

        let timestamp = current_timestamp;
        let expiry = timestamp + self.config.quote_validity_duration_secs;

        let confidentiality = if require_tee { 1u32 } else { 0u32 };
        let proto_details = ProtoJobQuoteDetails {
            service_id,
            job_index,
            price: price.to_be_bytes_vec(),
            timestamp,
            expiry,
            confidentiality,
        };

        // Generate proof of work for response
        let response_pow = generate_proof(&challenge, self.pow_difficulty)
            .await
            .map_err(|e| {
                error!("Failed to generate proof of work: {}", e);
                Status::internal("Failed to generate proof of work")
            })?;

        // Sign with EIP-712
        let signed = self
            .signer
            .lock()
            .await
            .sign_job_quote(&proto_details, response_pow)
            .map_err(|e| {
                error!(
                    "Failed to sign job quote for service {} job {}: {}",
                    service_id, job_index, e
                );
                Status::internal("Failed to sign job price quote")
            })?;

        // Build x402 settlement options if configured
        let (settlement_options, x402_endpoint) = if let Some(x402) = &self.x402_config {
            let options = compute_settlement_options(&x402.accepted_tokens, price)
                .into_iter()
                .map(|opt| crate::pricing_engine::SettlementOption {
                    network: opt.network,
                    asset: opt.asset,
                    symbol: opt.symbol,
                    amount: opt.amount,
                    pay_to: opt.pay_to,
                    scheme: opt.scheme,
                })
                .collect();
            (options, x402.x402_endpoint.clone())
        } else {
            (vec![], String::new())
        };

        // 65-byte signature (r || s || v)
        let mut sig_bytes = signed.signature.to_bytes().to_vec();
        sig_bytes.push(27 + signed.recovery_id);
        let response = GetJobPriceResponse {
            quote_details: Some(signed.quote_details),
            signature: sig_bytes,
            operator_id: signed.operator_id.0.to_vec(),
            proof_of_work: signed.proof_of_work,
            settlement_options,
            x402_endpoint,
            tee_attested,
            tee_provider,
        };

        info!(
            "Sending signed job quote for service {} job index {}",
            service_id, job_index
        );
        Ok(Response::new(response))
    }
}

/// Internal settlement option (pre-proto conversion).
struct SettlementOptionInternal {
    network: String,
    asset: String,
    symbol: String,
    amount: String,
    pay_to: String,
    scheme: String,
}

/// Convert a wei price into settlement options for each accepted token.
///
/// Note: this conversion logic is intentionally kept in sync with
/// `AcceptedToken::convert_wei_to_amount` in `crates/x402/src/config.rs`.
/// A cyclic dependency prevents importing it directly.
fn convert_settlement_token(
    token: &X402AcceptedToken,
    price_wei: alloy_primitives::U256,
) -> std::result::Result<SettlementOptionInternal, String> {
    let wei_decimal = rust_decimal::Decimal::from_str_exact(&price_wei.to_string())
        .map_err(|e| format!("wei→Decimal: {e}"))?;
    let native_unit = rust_decimal::Decimal::from(10u64.pow(18));
    let native_amount = wei_decimal / native_unit;
    let token_amount = native_amount * token.rate_per_native_unit;
    let markup = rust_decimal::Decimal::ONE
        + rust_decimal::Decimal::from(token.markup_bps) / rust_decimal::Decimal::from(10_000u32);
    let final_amount = token_amount * markup;
    let token_unit = rust_decimal::Decimal::from(10u64.pow(u32::from(token.decimals)));
    let smallest_units = (final_amount * token_unit).floor().to_string();

    Ok(SettlementOptionInternal {
        network: token.network.clone(),
        asset: token.asset.clone(),
        symbol: token.symbol.clone(),
        amount: smallest_units,
        pay_to: token.pay_to.clone(),
        scheme: "exact".into(),
    })
}

fn compute_settlement_options(
    accepted_tokens: &[X402AcceptedToken],
    price_wei: alloy_primitives::U256,
) -> Vec<SettlementOptionInternal> {
    accepted_tokens
        .iter()
        .filter_map(|token| match convert_settlement_token(token, price_wei) {
            Ok(opt) => Some(opt),
            Err(e) => {
                warn!("Dropping settlement option for {}: {e}", token.symbol);
                None
            }
        })
        .collect()
}

// Function to run the server (called from main.rs)
pub async fn run_rpc_server(
    config: Arc<OperatorConfig>,
    benchmark_cache: Arc<BenchmarkCache>,
    pricing_config: Arc<
        Mutex<std::collections::HashMap<Option<u64>, Vec<crate::pricing::ResourcePricing>>>,
    >,
    job_pricing_config: Arc<Mutex<JobPricingConfig>>,
    subscription_config: SubscriptionPricingConfig,
    signer: Arc<Mutex<OperatorSigner>>,
) -> anyhow::Result<()> {
    run_rpc_server_with_tee(
        config,
        benchmark_cache,
        pricing_config,
        job_pricing_config,
        subscription_config,
        signer,
        crate::pricing::TeePricing::default(),
    )
    .await
}

/// Run the gRPC server with TEE pricing configuration.
pub async fn run_rpc_server_with_tee(
    config: Arc<OperatorConfig>,
    benchmark_cache: Arc<BenchmarkCache>,
    pricing_config: Arc<
        Mutex<std::collections::HashMap<Option<u64>, Vec<crate::pricing::ResourcePricing>>>,
    >,
    job_pricing_config: Arc<Mutex<JobPricingConfig>>,
    subscription_config: SubscriptionPricingConfig,
    signer: Arc<Mutex<OperatorSigner>>,
    tee_config: crate::pricing::TeePricing,
) -> anyhow::Result<()> {
    let addr = format!("{}:{}", config.rpc_bind_address, config.rpc_port).parse()?;
    info!("gRPC server listening on {}", addr);

    let pricing_service = PricingEngineService::new_with_configs(
        config,
        benchmark_cache,
        pricing_config,
        job_pricing_config,
        subscription_config,
        signer,
    )
    .with_tee_pricing(tee_config);
    let server = PricingEngineServer::new(pricing_service);

    let cors = CorsLayer::new()
        .allow_origin(Any)
        .allow_headers(Any)
        .allow_methods(Any)
        .expose_headers(Any);

    Server::builder()
        .accept_http1(true)
        .layer(cors)
        .layer(tonic_web::GrpcWebLayer::new())
        .add_service(server)
        .serve(addr)
        .await?;

    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::signer::QuoteSigningDomain;
    use alloy_primitives::U256;
    use blueprint_crypto::BytesEncoding;
    use blueprint_crypto::k256::K256SigningKey;

    /// Deterministic test key (32 bytes, non-zero)
    const TEST_KEY: [u8; 32] = [
        1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
        26, 27, 28, 29, 30, 31, 32,
    ];

    fn test_config() -> Arc<OperatorConfig> {
        Arc::new(OperatorConfig {
            quote_validity_duration_secs: 300,
            ..OperatorConfig::default()
        })
    }

    fn test_signer() -> Arc<Mutex<OperatorSigner>> {
        let keypair = K256SigningKey::from_bytes(&TEST_KEY).unwrap();
        let domain = QuoteSigningDomain {
            chain_id: 1,
            verifying_contract: alloy_primitives::Address::ZERO,
        };
        let signer = OperatorSigner::new(&OperatorConfig::default(), keypair, domain).unwrap();
        Arc::new(Mutex::new(signer))
    }

    fn test_benchmark_cache() -> Arc<BenchmarkCache> {
        Arc::new(BenchmarkCache::new("/tmp/test_bench_cache").unwrap())
    }

    fn test_pricing_config()
    -> Arc<Mutex<std::collections::HashMap<Option<u64>, Vec<crate::pricing::ResourcePricing>>>>
    {
        Arc::new(Mutex::new(std::collections::HashMap::new()))
    }

    fn test_job_pricing_config(entries: Vec<((u64, u32), U256)>) -> Arc<Mutex<JobPricingConfig>> {
        let mut map = JobPricingConfig::new();
        for ((sid, idx), price) in entries {
            map.insert((sid, idx), price);
        }
        Arc::new(Mutex::new(map))
    }

    /// Trivial difficulty for test PoW — avoids 30s+ proof generation on slow CI.
    const TEST_POW_DIFFICULTY: u32 = 1;

    fn make_service(job_entries: Vec<((u64, u32), U256)>) -> PricingEngineService {
        let mut svc = PricingEngineService::new_with_configs(
            test_config(),
            test_benchmark_cache(),
            test_pricing_config(),
            test_job_pricing_config(job_entries),
            SubscriptionPricingConfig::new(),
            test_signer(),
        );
        svc.pow_difficulty = TEST_POW_DIFFICULTY;
        svc
    }

    /// Generate a valid PoW + timestamp for a given service_id.
    async fn valid_pow(service_id: u64) -> (u64, Vec<u8>) {
        let timestamp = chrono::Utc::now().timestamp() as u64;
        let challenge = crate::pow::generate_challenge(service_id, timestamp);
        let proof = crate::pow::generate_proof(&challenge, TEST_POW_DIFFICULTY)
            .await
            .unwrap();
        (timestamp, proof)
    }

    // ── Success path ────────────────────────────────────────────────────

    #[tokio::test]
    async fn test_get_job_price_success() {
        let price = U256::from(1_000_000u64); // 1M wei
        let svc = make_service(vec![((42, 0), price)]);
        let (ts, pow) = valid_pow(42).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 42,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: false,
        });

        let resp = svc.get_job_price(req).await.unwrap().into_inner();
        let details = resp.quote_details.unwrap();
        assert_eq!(details.service_id, 42);
        assert_eq!(details.job_index, 0);
        assert_eq!(U256::from_be_slice(&details.price), price);
        assert!(details.expiry > details.timestamp);
        assert!(!resp.signature.is_empty());
        assert!(!resp.operator_id.is_empty());
        assert!(!resp.proof_of_work.is_empty());
    }

    #[tokio::test]
    async fn test_get_job_price_different_jobs_different_prices() {
        let svc = make_service(vec![
            ((10, 0), U256::from(100u64)),
            ((10, 1), U256::from(500u64)),
            ((10, 2), U256::from(999u64)),
        ]);

        for (idx, expected) in [(0u32, 100u64), (1, 500), (2, 999)] {
            let (ts, pow) = valid_pow(10).await;
            let req = Request::new(GetJobPriceRequest {
                service_id: 10,
                job_index: idx,
                proof_of_work: pow,
                challenge_timestamp: ts,
                require_tee: false,
            });
            let resp = svc.get_job_price(req).await.unwrap().into_inner();
            let details = resp.quote_details.unwrap();
            assert_eq!(
                U256::from_be_slice(&details.price),
                U256::from(expected),
                "job index {idx} should have price {expected}"
            );
        }
    }

    #[tokio::test]
    async fn test_get_job_price_large_price() {
        // Near-max U256 value
        let price = U256::MAX / U256::from(2);
        let svc = make_service(vec![((1, 0), price)]);
        let (ts, pow) = valid_pow(1).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 1,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: false,
        });

        let resp = svc.get_job_price(req).await.unwrap().into_inner();
        let details = resp.quote_details.unwrap();
        assert_eq!(U256::from_be_slice(&details.price), price);
    }

    // ── Missing job pricing ─────────────────────────────────────────────

    #[tokio::test]
    async fn test_get_job_price_not_found() {
        let svc = make_service(vec![]); // No pricing configured
        let (ts, pow) = valid_pow(42).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 42,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: false,
        });

        let err = svc.get_job_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::NotFound);
        assert!(err.message().contains("No pricing configured"));
    }

    #[tokio::test]
    async fn test_get_job_price_wrong_job_index() {
        // Pricing exists for job_index 0 but not 1
        let svc = make_service(vec![((42, 0), U256::from(100u64))]);
        let (ts, pow) = valid_pow(42).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 42,
            job_index: 1,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: false,
        });

        let err = svc.get_job_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::NotFound);
    }

    #[tokio::test]
    async fn test_get_job_price_wrong_service_id() {
        let svc = make_service(vec![((42, 0), U256::from(100u64))]);
        let (ts, pow) = valid_pow(99).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 99,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: false,
        });

        let err = svc.get_job_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::NotFound);
    }

    // ── Timestamp validation ────────────────────────────────────────────

    #[tokio::test]
    async fn test_get_job_price_missing_timestamp() {
        let svc = make_service(vec![((1, 0), U256::from(1u64))]);

        let req = Request::new(GetJobPriceRequest {
            service_id: 1,
            job_index: 0,
            proof_of_work: vec![],
            challenge_timestamp: 0, // 0 = missing
            require_tee: false,
        });

        let err = svc.get_job_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::InvalidArgument);
        assert!(err.message().contains("missing"));
    }

    #[tokio::test]
    async fn test_get_job_price_timestamp_too_old() {
        let svc = make_service(vec![((1, 0), U256::from(1u64))]);
        let old_ts = chrono::Utc::now().timestamp() as u64 - 60; // 60s ago

        let req = Request::new(GetJobPriceRequest {
            service_id: 1,
            job_index: 0,
            proof_of_work: vec![],
            challenge_timestamp: old_ts,
            require_tee: false,
        });

        let err = svc.get_job_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::InvalidArgument);
        assert!(err.message().contains("too old"));
    }

    #[tokio::test]
    async fn test_get_job_price_timestamp_too_far_in_future() {
        let svc = make_service(vec![((1, 0), U256::from(1u64))]);
        let future_ts = chrono::Utc::now().timestamp() as u64 + 60; // 60s from now

        let req = Request::new(GetJobPriceRequest {
            service_id: 1,
            job_index: 0,
            proof_of_work: vec![],
            challenge_timestamp: future_ts,
            require_tee: false,
        });

        let err = svc.get_job_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::InvalidArgument);
        assert!(err.message().contains("future"));
    }

    // ── Invalid proof of work ───────────────────────────────────────────

    #[tokio::test]
    async fn test_get_job_price_invalid_pow() {
        let svc = make_service(vec![((1, 0), U256::from(1u64))]);
        let ts = chrono::Utc::now().timestamp() as u64;

        let req = Request::new(GetJobPriceRequest {
            service_id: 1,
            job_index: 0,
            proof_of_work: vec![0u8; 32], // garbage PoW
            challenge_timestamp: ts,
            require_tee: false,
        });

        let err = svc.get_job_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::InvalidArgument);
        assert!(err.message().contains("proof of work"));
    }

    #[tokio::test]
    async fn test_get_job_price_empty_pow() {
        let svc = make_service(vec![((1, 0), U256::from(1u64))]);
        let ts = chrono::Utc::now().timestamp() as u64;

        let req = Request::new(GetJobPriceRequest {
            service_id: 1,
            job_index: 0,
            proof_of_work: vec![], // empty PoW
            challenge_timestamp: ts,
            require_tee: false,
        });

        let err = svc.get_job_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::InvalidArgument);
    }

    // ── Quote expiry validation ─────────────────────────────────────────

    #[tokio::test]
    async fn test_get_job_price_expiry_uses_config() {
        let mut config = OperatorConfig::default();
        config.quote_validity_duration_secs = 600; // 10 minutes

        let mut svc = PricingEngineService::new_with_configs(
            Arc::new(config),
            test_benchmark_cache(),
            test_pricing_config(),
            test_job_pricing_config(vec![((1, 0), U256::from(100u64))]),
            SubscriptionPricingConfig::new(),
            test_signer(),
        );
        svc.pow_difficulty = TEST_POW_DIFFICULTY;
        let (ts, pow) = valid_pow(1).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 1,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: false,
        });

        let resp = svc.get_job_price(req).await.unwrap().into_inner();
        let details = resp.quote_details.unwrap();
        // Expiry should be ~600s after timestamp
        let duration = details.expiry - details.timestamp;
        assert!(
            (590..=610).contains(&duration),
            "expected ~600s validity, got {duration}s"
        );
    }

    // ── Signature is valid ──────────────────────────────────────────────

    #[tokio::test]
    async fn test_get_job_price_signature_verifies() {
        let keypair = K256SigningKey::from_bytes(&TEST_KEY).unwrap();
        let domain = QuoteSigningDomain {
            chain_id: 1,
            verifying_contract: alloy_primitives::Address::ZERO,
        };
        let verifying_key = keypair.verifying_key();

        let svc = make_service(vec![((42, 0), U256::from(500u64))]);
        let (ts, pow) = valid_pow(42).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 42,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: false,
        });

        let resp = svc.get_job_price(req).await.unwrap().into_inner();
        let details = resp.quote_details.unwrap();

        // Reconstruct the digest and verify the 65-byte signature (r||s||v)
        let digest = crate::signer::job_quote_digest_eip712(&details, domain).unwrap();
        assert_eq!(
            resp.signature.len(),
            65,
            "signature should be 65 bytes (r||s||v)"
        );
        let sig = blueprint_crypto::k256::K256Signature::from_bytes(&resp.signature[..64]).unwrap();
        {
            use k256::ecdsa::signature::hazmat::PrehashVerifier;
            assert!(
                verifying_key.0.verify_prehash(&digest, &sig.0).is_ok(),
                "signature should verify with the operator's key (prehash)"
            );
        }
    }

    // ── Subscription pricing (GetPrice with pricing_model=1) ────────

    fn make_subscription_service(sub_config: SubscriptionPricingConfig) -> PricingEngineService {
        let mut svc = PricingEngineService::new_with_configs(
            test_config(),
            test_benchmark_cache(),
            test_pricing_config(),
            Arc::new(Mutex::new(JobPricingConfig::new())),
            sub_config,
            test_signer(),
        );
        svc.pow_difficulty = TEST_POW_DIFFICULTY;
        svc
    }

    fn default_sub_config() -> SubscriptionPricingConfig {
        let mut m = SubscriptionPricingConfig::new();
        m.insert(
            None,
            crate::pricing::SubscriptionPricing {
                subscription_rate: rust_decimal::Decimal::from_str_exact("0.001").unwrap(),
                subscription_interval: 86400,
                event_rate: rust_decimal::Decimal::from_str_exact("0.0001").unwrap(),
            },
        );
        m
    }

    /// Generate a valid PoW + timestamp for a GetPrice request.
    async fn valid_price_pow(blueprint_id: u64) -> (u64, Vec<u8>) {
        let timestamp = chrono::Utc::now().timestamp() as u64;
        let challenge = crate::pow::generate_challenge(blueprint_id, timestamp);
        let proof = crate::pow::generate_proof(&challenge, TEST_POW_DIFFICULTY)
            .await
            .unwrap();
        (timestamp, proof)
    }

    #[tokio::test]
    async fn test_get_price_subscription_mode() {
        let svc = make_subscription_service(default_sub_config());
        let (ts, pow) = valid_price_pow(1).await;

        let req = Request::new(GetPriceRequest {
            blueprint_id: 1,
            ttl_blocks: 600,
            proof_of_work: pow,
            challenge_timestamp: ts,
            resource_requirements: vec![],
            security_requirements: Some(crate::pricing_engine::AssetSecurityRequirements {
                asset: Some(crate::pricing_engine::Asset {
                    asset_type: Some(crate::pricing_engine::asset::AssetType::Erc20(vec![
                        0u8;
                        20
                    ])),
                }),
                minimum_exposure_percent: 10,
                maximum_exposure_percent: 100,
            }),
            pricing_model: 1, // SUBSCRIPTION
            require_tee: false,
        });

        let resp = svc.get_price(req).await.unwrap().into_inner();
        let details = resp.quote_details.unwrap();

        // total_cost_rate should match our subscription rate (0.001)
        assert!(
            (details.total_cost_rate - 0.001).abs() < 1e-9,
            "expected subscription rate 0.001, got {}",
            details.total_cost_rate
        );
        assert!(!resp.signature.is_empty());
        assert!(!resp.operator_id.is_empty());
    }

    #[tokio::test]
    async fn test_get_price_subscription_no_benchmark_needed() {
        // Service has NO benchmark profiles cached — subscription should still work
        let svc = make_subscription_service(default_sub_config());
        let (ts, pow) = valid_price_pow(999).await;

        let req = Request::new(GetPriceRequest {
            blueprint_id: 999, // no benchmark for this ID
            ttl_blocks: 100,
            proof_of_work: pow,
            challenge_timestamp: ts,
            resource_requirements: vec![],
            security_requirements: Some(crate::pricing_engine::AssetSecurityRequirements {
                asset: Some(crate::pricing_engine::Asset {
                    asset_type: Some(crate::pricing_engine::asset::AssetType::Erc20(vec![
                        0u8;
                        20
                    ])),
                }),
                minimum_exposure_percent: 10,
                maximum_exposure_percent: 100,
            }),
            pricing_model: 1, // SUBSCRIPTION
            require_tee: false,
        });

        // Should succeed despite no benchmark profile
        let resp = svc.get_price(req).await;
        assert!(
            resp.is_ok(),
            "subscription should not need benchmark: {:?}",
            resp.err()
        );
    }

    #[tokio::test]
    async fn test_get_price_subscription_no_config() {
        // Service has NO subscription config (empty map)
        let mut svc = PricingEngineService::new_with_configs(
            test_config(),
            test_benchmark_cache(),
            test_pricing_config(),
            Arc::new(Mutex::new(JobPricingConfig::new())),
            SubscriptionPricingConfig::new(),
            test_signer(),
        );
        svc.pow_difficulty = TEST_POW_DIFFICULTY;

        let (ts, pow) = valid_price_pow(1).await;
        let req = Request::new(GetPriceRequest {
            blueprint_id: 1,
            ttl_blocks: 100,
            proof_of_work: pow,
            challenge_timestamp: ts,
            resource_requirements: vec![],
            security_requirements: Some(crate::pricing_engine::AssetSecurityRequirements {
                asset: Some(crate::pricing_engine::Asset {
                    asset_type: Some(crate::pricing_engine::asset::AssetType::Erc20(vec![
                        0u8;
                        20
                    ])),
                }),
                minimum_exposure_percent: 10,
                maximum_exposure_percent: 100,
            }),
            pricing_model: 1, // SUBSCRIPTION
            require_tee: false,
        });

        let err = svc.get_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::NotFound);
        assert!(err.message().contains("subscription"));
    }

    #[tokio::test]
    async fn test_get_price_default_is_payonce() {
        // pricing_model = 0 (PAY_ONCE / default) — needs benchmark, fails without one
        let svc = make_subscription_service(default_sub_config());
        let (ts, pow) = valid_price_pow(1).await;

        let req = Request::new(GetPriceRequest {
            blueprint_id: 1,
            ttl_blocks: 100,
            proof_of_work: pow,
            challenge_timestamp: ts,
            resource_requirements: vec![],
            security_requirements: Some(crate::pricing_engine::AssetSecurityRequirements {
                asset: Some(crate::pricing_engine::Asset {
                    asset_type: Some(crate::pricing_engine::asset::AssetType::Erc20(vec![
                        0u8;
                        20
                    ])),
                }),
                minimum_exposure_percent: 10,
                maximum_exposure_percent: 100,
            }),
            pricing_model: 0, // PAY_ONCE (default)
            require_tee: false,
        });

        // Should fail because no benchmark profile exists
        let err = svc.get_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::NotFound);
        assert!(err.message().contains("benchmark"));
    }

    #[tokio::test]
    async fn test_get_price_event_driven_mode() {
        let svc = make_subscription_service(default_sub_config());
        let (ts, pow) = valid_price_pow(1).await;

        let req = Request::new(GetPriceRequest {
            blueprint_id: 1,
            ttl_blocks: 100,
            proof_of_work: pow,
            challenge_timestamp: ts,
            resource_requirements: vec![],
            security_requirements: Some(crate::pricing_engine::AssetSecurityRequirements {
                asset: Some(crate::pricing_engine::Asset {
                    asset_type: Some(crate::pricing_engine::asset::AssetType::Erc20(vec![
                        0u8;
                        20
                    ])),
                }),
                minimum_exposure_percent: 10,
                maximum_exposure_percent: 100,
            }),
            pricing_model: 2, // EVENT_DRIVEN
            require_tee: false,
        });

        let resp = svc.get_price(req).await.unwrap().into_inner();
        let details = resp.quote_details.unwrap();
        // event_rate = 0.0001
        assert!(
            (details.total_cost_rate - 0.0001).abs() < 1e-9,
            "expected event rate 0.0001, got {}",
            details.total_cost_rate
        );
    }

    #[tokio::test]
    async fn test_get_price_unknown_pricing_model() {
        let svc = make_subscription_service(default_sub_config());
        let (ts, pow) = valid_price_pow(1).await;

        let req = Request::new(GetPriceRequest {
            blueprint_id: 1,
            ttl_blocks: 100,
            proof_of_work: pow,
            challenge_timestamp: ts,
            resource_requirements: vec![],
            security_requirements: Some(crate::pricing_engine::AssetSecurityRequirements {
                asset: Some(crate::pricing_engine::Asset {
                    asset_type: Some(crate::pricing_engine::asset::AssetType::Erc20(vec![
                        0u8;
                        20
                    ])),
                }),
                minimum_exposure_percent: 10,
                maximum_exposure_percent: 100,
            }),
            pricing_model: 99, // Unknown
            require_tee: false,
        });

        let err = svc.get_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::InvalidArgument);
        assert!(err.message().contains("Unknown pricing_model"));
    }

    // ── TEE pricing (GetJobPrice with require_tee) ─────────────────────

    fn make_tee_service(job_entries: Vec<((u64, u32), U256)>) -> PricingEngineService {
        let mut svc = PricingEngineService::new_with_configs(
            test_config(),
            test_benchmark_cache(),
            test_pricing_config(),
            test_job_pricing_config(job_entries),
            SubscriptionPricingConfig::new(),
            test_signer(),
        );
        svc.pow_difficulty = TEST_POW_DIFFICULTY;
        svc = svc.with_tee_pricing(crate::pricing::TeePricing {
            available: true,
            multiplier: rust_decimal::Decimal::new(15, 1), // 1.5x
            provider: "aws_nitro".to_string(),
        });
        svc
    }

    #[tokio::test]
    async fn test_get_job_price_tee_multiplier() {
        let base_price = U256::from(1_000_000u64);
        let svc = make_tee_service(vec![((42, 0), base_price)]);
        let (ts, pow) = valid_pow(42).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 42,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: true,
        });

        let resp = svc.get_job_price(req).await.unwrap().into_inner();
        let details = resp.quote_details.unwrap();
        let returned_price = U256::from_be_slice(&details.price);
        // 1.5x multiplier: 1_000_000 * 1.5 = 1_500_000
        assert_eq!(
            returned_price,
            U256::from(1_500_000u64),
            "TEE price should be 1.5x base: expected 1500000, got {returned_price}"
        );
    }

    #[tokio::test]
    async fn test_get_job_price_tee_unavailable_rejects() {
        // Default service has TEE unavailable
        let svc = make_service(vec![((42, 0), U256::from(1_000_000u64))]);
        let (ts, pow) = valid_pow(42).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 42,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: true,
        });

        let err = svc.get_job_price(req).await.unwrap_err();
        assert_eq!(err.code(), tonic::Code::Unavailable);
        assert!(
            err.message().contains("TEE"),
            "error should mention TEE: {}",
            err.message()
        );
    }

    #[tokio::test]
    async fn test_get_job_price_tee_response_fields() {
        let svc = make_tee_service(vec![((10, 0), U256::from(100u64))]);
        let (ts, pow) = valid_pow(10).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 10,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: true,
        });

        let resp = svc.get_job_price(req).await.unwrap().into_inner();
        assert!(resp.tee_attested, "tee_attested should be true");
        assert_eq!(
            resp.tee_provider, "aws_nitro",
            "tee_provider should be aws_nitro"
        );
    }

    #[tokio::test]
    async fn test_get_job_price_tee_confidentiality_bound() {
        let svc = make_tee_service(vec![((10, 0), U256::from(100u64))]);
        let (ts, pow) = valid_pow(10).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 10,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: true,
        });

        let resp = svc.get_job_price(req).await.unwrap().into_inner();
        let details = resp.quote_details.unwrap();
        assert_eq!(
            details.confidentiality, 1,
            "confidentiality should be 1 when require_tee=true"
        );
    }

    #[tokio::test]
    async fn test_get_job_price_no_tee_confidentiality_zero() {
        let svc = make_service(vec![((10, 0), U256::from(100u64))]);
        let (ts, pow) = valid_pow(10).await;

        let req = Request::new(GetJobPriceRequest {
            service_id: 10,
            job_index: 0,
            proof_of_work: pow,
            challenge_timestamp: ts,
            require_tee: false,
        });

        let resp = svc.get_job_price(req).await.unwrap().into_inner();
        let details = resp.quote_details.unwrap();
        assert_eq!(
            details.confidentiality, 0,
            "confidentiality should be 0 when require_tee=false"
        );
    }
}