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
//! Keeta `"exact"` payment scheme implementation.
//!
//! The buyer signs a block containing one `SEND`. The facilitator verifies
//! that payload against `PaymentRequirements` and transmits it with a
//! fee-payer signature.
use SchemeId;
pub use *;
pub use *;
/// Keeta exact scheme identifier.
///
/// Uses CAIP-2 chain IDs (`keeta:21378`, `keeta:1413829460`) and embeds
/// requirements directly in the payload.
;