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
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
/// Params defines the set of params for the metadata module.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Params {}
/// ScopeIdInfo contains various info regarding a scope id.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeIdInfo {
/// scope_id is the raw bytes of the scope address.
#[prost(bytes = "vec", tag = "1")]
pub scope_id: ::prost::alloc::vec::Vec<u8>,
/// scope_id_prefix is the prefix portion of the scope_id.
#[prost(bytes = "vec", tag = "2")]
pub scope_id_prefix: ::prost::alloc::vec::Vec<u8>,
/// scope_id_scope_uuid is the scope_uuid portion of the scope_id.
#[prost(bytes = "vec", tag = "3")]
pub scope_id_scope_uuid: ::prost::alloc::vec::Vec<u8>,
/// scope_addr is the bech32 string version of the scope_id.
#[prost(string, tag = "4")]
pub scope_addr: ::prost::alloc::string::String,
/// scope_uuid is the uuid hex string of the scope_id_scope_uuid.
#[prost(string, tag = "5")]
pub scope_uuid: ::prost::alloc::string::String,
}
/// SessionIdInfo contains various info regarding a session id.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SessionIdInfo {
/// session_id is the raw bytes of the session address.
#[prost(bytes = "vec", tag = "1")]
pub session_id: ::prost::alloc::vec::Vec<u8>,
/// session_id_prefix is the prefix portion of the session_id.
#[prost(bytes = "vec", tag = "2")]
pub session_id_prefix: ::prost::alloc::vec::Vec<u8>,
/// session_id_scope_uuid is the scope_uuid portion of the session_id.
#[prost(bytes = "vec", tag = "3")]
pub session_id_scope_uuid: ::prost::alloc::vec::Vec<u8>,
/// session_id_session_uuid is the session_uuid portion of the session_id.
#[prost(bytes = "vec", tag = "4")]
pub session_id_session_uuid: ::prost::alloc::vec::Vec<u8>,
/// session_addr is the bech32 string version of the session_id.
#[prost(string, tag = "5")]
pub session_addr: ::prost::alloc::string::String,
/// session_uuid is the uuid hex string of the session_id_session_uuid.
#[prost(string, tag = "6")]
pub session_uuid: ::prost::alloc::string::String,
/// scope_id_info is information about the scope id referenced in the session_id.
#[prost(message, optional, tag = "7")]
pub scope_id_info: ::core::option::Option<ScopeIdInfo>,
}
/// RecordIdInfo contains various info regarding a record id.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordIdInfo {
/// record_id is the raw bytes of the record address.
#[prost(bytes = "vec", tag = "1")]
pub record_id: ::prost::alloc::vec::Vec<u8>,
/// record_id_prefix is the prefix portion of the record_id.
#[prost(bytes = "vec", tag = "2")]
pub record_id_prefix: ::prost::alloc::vec::Vec<u8>,
/// record_id_scope_uuid is the scope_uuid portion of the record_id.
#[prost(bytes = "vec", tag = "3")]
pub record_id_scope_uuid: ::prost::alloc::vec::Vec<u8>,
/// record_id_hashed_name is the hashed name portion of the record_id.
#[prost(bytes = "vec", tag = "4")]
pub record_id_hashed_name: ::prost::alloc::vec::Vec<u8>,
/// record_addr is the bech32 string version of the record_id.
#[prost(string, tag = "5")]
pub record_addr: ::prost::alloc::string::String,
/// scope_id_info is information about the scope id referenced in the record_id.
#[prost(message, optional, tag = "6")]
pub scope_id_info: ::core::option::Option<ScopeIdInfo>,
}
/// ScopeSpecIdInfo contains various info regarding a scope specification id.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeSpecIdInfo {
/// scope_spec_id is the raw bytes of the scope specification address.
#[prost(bytes = "vec", tag = "1")]
pub scope_spec_id: ::prost::alloc::vec::Vec<u8>,
/// scope_spec_id_prefix is the prefix portion of the scope_spec_id.
#[prost(bytes = "vec", tag = "2")]
pub scope_spec_id_prefix: ::prost::alloc::vec::Vec<u8>,
/// scope_spec_id_scope_spec_uuid is the scope_spec_uuid portion of the scope_spec_id.
#[prost(bytes = "vec", tag = "3")]
pub scope_spec_id_scope_spec_uuid: ::prost::alloc::vec::Vec<u8>,
/// scope_spec_addr is the bech32 string version of the scope_spec_id.
#[prost(string, tag = "4")]
pub scope_spec_addr: ::prost::alloc::string::String,
/// scope_spec_uuid is the uuid hex string of the scope_spec_id_scope_spec_uuid.
#[prost(string, tag = "5")]
pub scope_spec_uuid: ::prost::alloc::string::String,
}
/// ContractSpecIdInfo contains various info regarding a contract specification id.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContractSpecIdInfo {
/// contract_spec_id is the raw bytes of the contract specification address.
#[prost(bytes = "vec", tag = "1")]
pub contract_spec_id: ::prost::alloc::vec::Vec<u8>,
/// contract_spec_id_prefix is the prefix portion of the contract_spec_id.
#[prost(bytes = "vec", tag = "2")]
pub contract_spec_id_prefix: ::prost::alloc::vec::Vec<u8>,
/// contract_spec_id_contract_spec_uuid is the contract_spec_uuid portion of the contract_spec_id.
#[prost(bytes = "vec", tag = "3")]
pub contract_spec_id_contract_spec_uuid: ::prost::alloc::vec::Vec<u8>,
/// contract_spec_addr is the bech32 string version of the contract_spec_id.
#[prost(string, tag = "4")]
pub contract_spec_addr: ::prost::alloc::string::String,
/// contract_spec_uuid is the uuid hex string of the contract_spec_id_contract_spec_uuid.
#[prost(string, tag = "5")]
pub contract_spec_uuid: ::prost::alloc::string::String,
}
/// RecordSpecIdInfo contains various info regarding a record specification id.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordSpecIdInfo {
/// record_spec_id is the raw bytes of the record specification address.
#[prost(bytes = "vec", tag = "1")]
pub record_spec_id: ::prost::alloc::vec::Vec<u8>,
/// record_spec_id_prefix is the prefix portion of the record_spec_id.
#[prost(bytes = "vec", tag = "2")]
pub record_spec_id_prefix: ::prost::alloc::vec::Vec<u8>,
/// record_spec_id_contract_spec_uuid is the contract_spec_uuid portion of the record_spec_id.
#[prost(bytes = "vec", tag = "3")]
pub record_spec_id_contract_spec_uuid: ::prost::alloc::vec::Vec<u8>,
/// record_spec_id_hashed_name is the hashed name portion of the record_spec_id.
#[prost(bytes = "vec", tag = "4")]
pub record_spec_id_hashed_name: ::prost::alloc::vec::Vec<u8>,
/// record_spec_addr is the bech32 string version of the record_spec_id.
#[prost(string, tag = "5")]
pub record_spec_addr: ::prost::alloc::string::String,
/// contract_spec_id_info is information about the contract spec id referenced in the record_spec_id.
#[prost(message, optional, tag = "6")]
pub contract_spec_id_info: ::core::option::Option<ContractSpecIdInfo>,
}
/// Defines an Locator object stored on chain, which represents a owner( blockchain address) associated with a endpoint
/// uri for it's associated object store.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ObjectStoreLocator {
/// account address the endpoint is owned by
#[prost(string, tag = "1")]
pub owner: ::prost::alloc::string::String,
/// locator endpoint uri
#[prost(string, tag = "2")]
pub locator_uri: ::prost::alloc::string::String,
/// owners encryption key address
#[prost(string, tag = "3")]
pub encryption_key: ::prost::alloc::string::String,
}
/// Params defines the parameters for the metadata-locator module methods.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsLocatorParams {
#[prost(uint32, tag = "1")]
pub max_uri_length: u32,
}
/// ScopeSpecification defines the required parties, resources, conditions, and consideration outputs for a contract
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeSpecification {
/// unique identifier for this specification on chain
#[prost(bytes = "vec", tag = "1")]
pub specification_id: ::prost::alloc::vec::Vec<u8>,
/// General information about this scope specification.
#[prost(message, optional, tag = "2")]
pub description: ::core::option::Option<Description>,
/// Addresses of the owners of this scope specification.
#[prost(string, repeated, tag = "3")]
pub owner_addresses: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// A list of parties that must be present on a scope (and their associated roles)
#[prost(enumeration = "PartyType", repeated, packed = "false", tag = "4")]
pub parties_involved: ::prost::alloc::vec::Vec<i32>,
/// A list of contract specification ids allowed for a scope based on this specification.
#[prost(bytes = "vec", repeated, tag = "5")]
pub contract_spec_ids: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec<u8>>,
}
/// ContractSpecification defines the required parties, resources, conditions, and consideration outputs for a contract
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContractSpecification {
/// unique identifier for this specification on chain
#[prost(bytes = "vec", tag = "1")]
pub specification_id: ::prost::alloc::vec::Vec<u8>,
/// Description information for this contract specification
#[prost(message, optional, tag = "2")]
pub description: ::core::option::Option<Description>,
/// Address of the account that owns this specificaiton
#[prost(string, repeated, tag = "3")]
pub owner_addresses: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// a list of party roles that must be fullfilled when signing a transaction for this contract specification
#[prost(enumeration = "PartyType", repeated, packed = "false", tag = "4")]
pub parties_involved: ::prost::alloc::vec::Vec<i32>,
/// name of the class/type of this contract executable
#[prost(string, tag = "7")]
pub class_name: ::prost::alloc::string::String,
/// Reference to a metadata record with a hash and type information for the instance of code that will process this
/// contract
#[prost(oneof = "contract_specification::Source", tags = "5, 6")]
pub source: ::core::option::Option<contract_specification::Source>,
}
/// Nested message and enum types in `ContractSpecification`.
pub mod contract_specification {
/// Reference to a metadata record with a hash and type information for the instance of code that will process this
/// contract
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Source {
/// the address of a record on chain that represents this contract
#[prost(bytes, tag = "5")]
ResourceId(::prost::alloc::vec::Vec<u8>),
/// the hash of contract binary (off-chain instance)
#[prost(string, tag = "6")]
Hash(::prost::alloc::string::String),
}
}
/// RecordSpecification defines the specification for a Record including allowed/required inputs/outputs
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordSpecification {
/// unique identifier for this specification on chain
#[prost(bytes = "vec", tag = "1")]
pub specification_id: ::prost::alloc::vec::Vec<u8>,
/// Name of Record that will be created when this specification is used
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
/// A set of inputs that must be satisified to apply this RecordSpecification and create a Record
#[prost(message, repeated, tag = "3")]
pub inputs: ::prost::alloc::vec::Vec<InputSpecification>,
/// A type name for data associated with this record (typically a class or proto name)
#[prost(string, tag = "4")]
pub type_name: ::prost::alloc::string::String,
/// Type of result for this record specification (must be RECORD or RECORD_LIST)
#[prost(enumeration = "DefinitionType", tag = "5")]
pub result_type: i32,
/// Type of party responsible for this record
#[prost(enumeration = "PartyType", repeated, packed = "false", tag = "6")]
pub responsible_parties: ::prost::alloc::vec::Vec<i32>,
}
/// InputSpecification defines a name, type_name, and source reference (either on or off chain) to define an input
/// parameter
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct InputSpecification {
/// name for this input
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// a type_name (typically a proto name or class_name)
#[prost(string, tag = "2")]
pub type_name: ::prost::alloc::string::String,
/// source is either on chain (record_id) or off-chain (hash)
#[prost(oneof = "input_specification::Source", tags = "3, 4")]
pub source: ::core::option::Option<input_specification::Source>,
}
/// Nested message and enum types in `InputSpecification`.
pub mod input_specification {
/// source is either on chain (record_id) or off-chain (hash)
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Source {
/// the address of a record on chain (For Established Records)
#[prost(bytes, tag = "3")]
RecordId(::prost::alloc::vec::Vec<u8>),
/// the hash of an off-chain piece of information (For Proposed Records)
#[prost(string, tag = "4")]
Hash(::prost::alloc::string::String),
}
}
/// Description holds general information that is handy to associate with a structure.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Description {
/// A Name for this thing.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A description of this thing.
#[prost(string, tag = "3")]
pub description: ::prost::alloc::string::String,
/// URL to find even more info.
#[prost(string, tag = "4")]
pub website_url: ::prost::alloc::string::String,
/// URL of an icon.
#[prost(string, tag = "5")]
pub icon_url: ::prost::alloc::string::String,
}
/// DefinitionType indicates the required definition type for this value
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum DefinitionType {
/// DEFINITION_TYPE_UNSPECIFIED indicates an unknown/invalid value
Unspecified = 0,
/// DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain)
Proposed = 1,
/// DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain
Record = 2,
/// DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having
/// the same name
RecordList = 3,
}
impl DefinitionType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
DefinitionType::Unspecified => "DEFINITION_TYPE_UNSPECIFIED",
DefinitionType::Proposed => "DEFINITION_TYPE_PROPOSED",
DefinitionType::Record => "DEFINITION_TYPE_RECORD",
DefinitionType::RecordList => "DEFINITION_TYPE_RECORD_LIST",
}
}
}
/// PartyType are the different roles parties on a contract may use
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PartyType {
/// PARTY_TYPE_UNSPECIFIED is an error condition
Unspecified = 0,
/// PARTY_TYPE_ORIGINATOR is an asset originator
Originator = 1,
/// PARTY_TYPE_SERVICER provides debt servicing functions
Servicer = 2,
/// PARTY_TYPE_INVESTOR is a generic investor
Investor = 3,
/// PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets
Custodian = 4,
/// PARTY_TYPE_OWNER indicates this party is an owner of the item
Owner = 5,
/// PARTY_TYPE_AFFILIATE is a party with an affiliate agreement
Affiliate = 6,
/// PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account
Omnibus = 7,
/// PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action
Provenance = 8,
/// PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote)
Controller = 10,
/// PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain
Validator = 11,
}
impl PartyType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
PartyType::Unspecified => "PARTY_TYPE_UNSPECIFIED",
PartyType::Originator => "PARTY_TYPE_ORIGINATOR",
PartyType::Servicer => "PARTY_TYPE_SERVICER",
PartyType::Investor => "PARTY_TYPE_INVESTOR",
PartyType::Custodian => "PARTY_TYPE_CUSTODIAN",
PartyType::Owner => "PARTY_TYPE_OWNER",
PartyType::Affiliate => "PARTY_TYPE_AFFILIATE",
PartyType::Omnibus => "PARTY_TYPE_OMNIBUS",
PartyType::Provenance => "PARTY_TYPE_PROVENANCE",
PartyType::Controller => "PARTY_TYPE_CONTROLLER",
PartyType::Validator => "PARTY_TYPE_VALIDATOR",
}
}
}
/// Scope defines a root reference for a collection of records owned by one or more parties.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Scope {
/// Unique ID for this scope. Implements sdk.Address interface for use where addresses are required in Cosmos
#[prost(bytes = "vec", tag = "1")]
pub scope_id: ::prost::alloc::vec::Vec<u8>,
/// the scope specification that contains the specifications for data elements allowed within this scope
#[prost(bytes = "vec", tag = "2")]
pub specification_id: ::prost::alloc::vec::Vec<u8>,
/// These parties represent top level owners of the records within. These parties must sign any requests that modify
/// the data within the scope. These addresses are in union with parties listed on the sessions.
#[prost(message, repeated, tag = "3")]
pub owners: ::prost::alloc::vec::Vec<Party>,
/// Addessses in this list are authorized to recieve off-chain data associated with this scope.
#[prost(string, repeated, tag = "4")]
pub data_access: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// An address that controls the value associated with this scope. Standard blockchain accounts and marker accounts
/// are supported for this value. This attribute may only be changed by the entity indicated once it is set.
#[prost(string, tag = "5")]
pub value_owner_address: ::prost::alloc::string::String,
}
///
/// A Session is created for an execution context against a specific specification instance
///
/// The context will have a specification and set of parties involved. The Session may be updated several
/// times so long as the parties listed are signers on the transaction. NOTE: When there are no Records within a Scope
/// that reference a Session it is removed.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Session {
#[prost(bytes = "vec", tag = "1")]
pub session_id: ::prost::alloc::vec::Vec<u8>,
/// unique id of the contract specification that was used to create this session.
#[prost(bytes = "vec", tag = "2")]
pub specification_id: ::prost::alloc::vec::Vec<u8>,
/// parties is the set of identities that signed this contract
#[prost(message, repeated, tag = "3")]
pub parties: ::prost::alloc::vec::Vec<Party>,
/// name to associate with this session execution context, typically classname
#[prost(string, tag = "4")]
pub name: ::prost::alloc::string::String,
/// context is a field for storing client specific data associated with a session.
#[prost(bytes = "vec", tag = "5")]
pub context: ::prost::alloc::vec::Vec<u8>,
/// Created by, updated by, timestamps, version number, and related info.
#[prost(message, optional, tag = "99")]
pub audit: ::core::option::Option<AuditFields>,
}
/// A record (of fact) is attached to a session or each consideration output from a contract
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Record {
/// name/identifier for this record. Value must be unique within the scope. Also known as a Fact name
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// id of the session context that was used to create this record (use with filtered kvprefix iterator)
#[prost(bytes = "vec", tag = "2")]
pub session_id: ::prost::alloc::vec::Vec<u8>,
/// process contain information used to uniquely identify an execution on or off chain that generated this record
#[prost(message, optional, tag = "3")]
pub process: ::core::option::Option<Process>,
/// inputs used with the process to achieve the output on this record
#[prost(message, repeated, tag = "4")]
pub inputs: ::prost::alloc::vec::Vec<RecordInput>,
/// output(s) is the results of executing the process on the given process indicated in this record
#[prost(message, repeated, tag = "5")]
pub outputs: ::prost::alloc::vec::Vec<RecordOutput>,
/// specification_id is the id of the record specification that was used to create this record.
#[prost(bytes = "vec", tag = "6")]
pub specification_id: ::prost::alloc::vec::Vec<u8>,
}
/// Process contains information used to uniquely identify what was used to generate this record
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Process {
/// a name associated with the process (type_name, classname or smart contract common name)
#[prost(string, tag = "3")]
pub name: ::prost::alloc::string::String,
/// method is a name or reference to a specific operation (method) within a class/contract that was invoked
#[prost(string, tag = "4")]
pub method: ::prost::alloc::string::String,
/// unique identifier for this process
#[prost(oneof = "process::ProcessId", tags = "1, 2")]
pub process_id: ::core::option::Option<process::ProcessId>,
}
/// Nested message and enum types in `Process`.
pub mod process {
/// unique identifier for this process
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum ProcessId {
/// the address of a smart contract used for this process
#[prost(string, tag = "1")]
Address(::prost::alloc::string::String),
/// the hash of an off-chain process used
#[prost(string, tag = "2")]
Hash(::prost::alloc::string::String),
}
}
/// Tracks the inputs used to establish this record
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordInput {
/// Name value included to link back to the definition spec.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// from proposed fact structure to unmarshal
#[prost(string, tag = "4")]
pub type_name: ::prost::alloc::string::String,
/// Indicates if this input was a recorded fact on chain or just a given hashed input
#[prost(enumeration = "RecordInputStatus", tag = "5")]
pub status: i32,
/// data source
#[prost(oneof = "record_input::Source", tags = "2, 3")]
pub source: ::core::option::Option<record_input::Source>,
}
/// Nested message and enum types in `RecordInput`.
pub mod record_input {
/// data source
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Source {
/// the address of a record on chain (For Established Records)
#[prost(bytes, tag = "2")]
RecordId(::prost::alloc::vec::Vec<u8>),
/// the hash of an off-chain piece of information (For Proposed Records)
#[prost(string, tag = "3")]
Hash(::prost::alloc::string::String),
}
}
/// RecordOutput encapsulates the output of a process recorded on chain
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordOutput {
/// Hash of the data output that was output/generated for this record
#[prost(string, tag = "1")]
pub hash: ::prost::alloc::string::String,
/// Status of the process execution associated with this output indicating success,failure, or pending
#[prost(enumeration = "ResultStatus", tag = "2")]
pub status: i32,
}
/// A Party is an address with/in a given role associated with a contract
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Party {
/// address of the account (on chain)
#[prost(string, tag = "1")]
pub address: ::prost::alloc::string::String,
/// a role for this account within the context of the processes used
#[prost(enumeration = "PartyType", tag = "2")]
pub role: i32,
}
/// AuditFields capture information about the last account to make modifications and when they were made
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuditFields {
/// the date/time when this entry was created
#[prost(message, optional, tag = "1")]
pub created_date: ::core::option::Option<::prost_types::Timestamp>,
/// the address of the account that created this record
#[prost(string, tag = "2")]
pub created_by: ::prost::alloc::string::String,
/// the date/time when this entry was last updated
#[prost(message, optional, tag = "3")]
pub updated_date: ::core::option::Option<::prost_types::Timestamp>,
/// the address of the account that modified this record
#[prost(string, tag = "4")]
pub updated_by: ::prost::alloc::string::String,
/// an optional version number that is incremented with each update
#[prost(uint32, tag = "5")]
pub version: u32,
/// an optional message associated with the creation/update event
#[prost(string, tag = "6")]
pub message: ::prost::alloc::string::String,
}
/// A set of types for inputs on a record (of fact)
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum RecordInputStatus {
/// RECORD_INPUT_STATUS_UNSPECIFIED indicates an invalid/unknown input type
Unspecified = 0,
/// RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed
Proposed = 1,
/// RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain
Record = 2,
}
impl RecordInputStatus {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
RecordInputStatus::Unspecified => "RECORD_INPUT_STATUS_UNSPECIFIED",
RecordInputStatus::Proposed => "RECORD_INPUT_STATUS_PROPOSED",
RecordInputStatus::Record => "RECORD_INPUT_STATUS_RECORD",
}
}
}
/// ResultStatus indicates the various states of execution of a record
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ResultStatus {
/// RESULT_STATUS_UNSPECIFIED indicates an unset condition
Unspecified = 0,
/// RESULT_STATUS_PASS indicates the execution was successfult
Pass = 1,
/// RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution
Skip = 2,
/// RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed.
Fail = 3,
}
impl ResultStatus {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
ResultStatus::Unspecified => "RESULT_STATUS_UNSPECIFIED",
ResultStatus::Pass => "RESULT_STATUS_PASS",
ResultStatus::Skip => "RESULT_STATUS_SKIP",
ResultStatus::Fail => "RESULT_STATUS_FAIL",
}
}
}
/// MsgWriteScopeRequest is the request type for the Msg/WriteScope RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteScopeRequest {
/// scope is the Scope you want added or updated.
#[prost(message, optional, tag = "1")]
pub scope: ::core::option::Option<Scope>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// scope_uuid is an optional uuid string, e.g. "91978ba2-5f35-459a-86a7-feca1b0512e0"
/// If provided, it will be used to generate the MetadataAddress for the scope which will override the scope_id in the
/// provided scope. If not provided (or it is an empty string), nothing special happens.
/// If there is a value in scope.scope_id that is different from the one created from this uuid, an error is returned.
#[prost(string, tag = "3")]
pub scope_uuid: ::prost::alloc::string::String,
/// spec_uuid is an optional scope specification uuid string, e.g. "dc83ea70-eacd-40fe-9adf-1cf6148bf8a2"
/// If provided, it will be used to generate the MetadataAddress for the scope specification which will override the
/// specification_id in the provided scope. If not provided (or it is an empty string), nothing special happens.
/// If there is a value in scope.specification_id that is different from the one created from this uuid, an error is
/// returned.
#[prost(string, tag = "4")]
pub spec_uuid: ::prost::alloc::string::String,
}
/// MsgWriteScopeResponse is the response type for the Msg/WriteScope RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteScopeResponse {
/// scope_id_info contains information about the id/address of the scope that was added or updated.
#[prost(message, optional, tag = "1")]
pub scope_id_info: ::core::option::Option<ScopeIdInfo>,
}
/// MsgDeleteScopeRequest is the request type for the Msg/DeleteScope RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteScopeRequest {
/// Unique ID for the scope to delete
#[prost(bytes = "vec", tag = "1")]
pub scope_id: ::prost::alloc::vec::Vec<u8>,
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgDeleteScopeResponse is the response type for the Msg/DeleteScope RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteScopeResponse {}
/// MsgAddScopeDataAccessRequest is the request to add data access AccAddress to scope
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgAddScopeDataAccessRequest {
/// scope MetadataAddress for updating data access
#[prost(bytes = "vec", tag = "1")]
pub scope_id: ::prost::alloc::vec::Vec<u8>,
/// AccAddress addresses to be added to scope
#[prost(string, repeated, tag = "2")]
pub data_access: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "3")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgAddScopeDataAccessResponse is the response for adding data access AccAddress to scope
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgAddScopeDataAccessResponse {}
/// MsgDeleteScopeDataAccessRequest is the request to remove data access AccAddress to scope
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteScopeDataAccessRequest {
/// scope MetadataAddress for removing data access
#[prost(bytes = "vec", tag = "1")]
pub scope_id: ::prost::alloc::vec::Vec<u8>,
/// AccAddress address to be removed from scope
#[prost(string, repeated, tag = "2")]
pub data_access: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "3")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgDeleteScopeDataAccessResponse is the response from removing data access AccAddress to scope
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteScopeDataAccessResponse {}
/// MsgAddScopeOwnerRequest is the request to add owner AccAddress to scope
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgAddScopeOwnerRequest {
/// scope MetadataAddress for updating data access
#[prost(bytes = "vec", tag = "1")]
pub scope_id: ::prost::alloc::vec::Vec<u8>,
/// AccAddress owner addresses to be added to scope
#[prost(message, repeated, tag = "2")]
pub owners: ::prost::alloc::vec::Vec<Party>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "3")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgAddScopeOwnerResponse is the response for adding owner AccAddresses to scope
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgAddScopeOwnerResponse {}
/// MsgDeleteScopeOwnerRequest is the request to remove owner AccAddresses to scope
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteScopeOwnerRequest {
/// scope MetadataAddress for removing data access
#[prost(bytes = "vec", tag = "1")]
pub scope_id: ::prost::alloc::vec::Vec<u8>,
/// AccAddress owner addresses to be removed from scope
#[prost(string, repeated, tag = "2")]
pub owners: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "3")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgDeleteScopeOwnerResponse is the response from removing owner AccAddress to scope
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteScopeOwnerResponse {}
/// MsgWriteSessionRequest is the request type for the Msg/WriteSession RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteSessionRequest {
/// session is the Session you want added or updated.
#[prost(message, optional, tag = "1")]
pub session: ::core::option::Option<Session>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// SessionIDComponents is an optional (alternate) way of defining what the session_id should be in the provided
/// session. If provided, it must have both a scope and session_uuid. Those components will be used to create the
/// MetadataAddress for the session which will override the session_id in the provided session. If not provided (or
/// all empty), nothing special happens.
/// If there is a value in session.session_id that is different from the one created from these components, an error is
/// returned.
#[prost(message, optional, tag = "3")]
pub session_id_components: ::core::option::Option<SessionIdComponents>,
/// spec_uuid is an optional contract specification uuid string, e.g. "def6bc0a-c9dd-4874-948f-5206e6060a84"
/// If provided, it will be used to generate the MetadataAddress for the contract specification which will override the
/// specification_id in the provided session. If not provided (or it is an empty string), nothing special happens.
/// If there is a value in session.specification_id that is different from the one created from this uuid, an error is
/// returned.
#[prost(string, tag = "4")]
pub spec_uuid: ::prost::alloc::string::String,
}
/// SessionIDComponents contains fields for the components that make up a session id.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SessionIdComponents {
/// session_uuid is a uuid string for identifying this session, e.g. "5803f8bc-6067-4eb5-951f-2121671c2ec0"
#[prost(string, tag = "3")]
pub session_uuid: ::prost::alloc::string::String,
/// scope is used to define the scope this session belongs to.
#[prost(oneof = "session_id_components::ScopeIdentifier", tags = "1, 2")]
pub scope_identifier: ::core::option::Option<session_id_components::ScopeIdentifier>,
}
/// Nested message and enum types in `SessionIdComponents`.
pub mod session_id_components {
/// scope is used to define the scope this session belongs to.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum ScopeIdentifier {
/// scope_uuid is the uuid string for the scope, e.g. "91978ba2-5f35-459a-86a7-feca1b0512e0"
#[prost(string, tag = "1")]
ScopeUuid(::prost::alloc::string::String),
/// scope_addr is the bech32 address string for the scope, g.g. "scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel"
#[prost(string, tag = "2")]
ScopeAddr(::prost::alloc::string::String),
}
}
/// MsgWriteSessionResponse is the response type for the Msg/WriteSession RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteSessionResponse {
/// session_id_info contains information about the id/address of the session that was added or updated.
#[prost(message, optional, tag = "1")]
pub session_id_info: ::core::option::Option<SessionIdInfo>,
}
/// MsgWriteRecordRequest is the request type for the Msg/WriteRecord RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteRecordRequest {
/// record is the Record you want added or updated.
#[prost(message, optional, tag = "1")]
pub record: ::core::option::Option<Record>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// SessionIDComponents is an optional (alternate) way of defining what the session_id should be in the provided
/// record. If provided, it must have both a scope and session_uuid. Those components will be used to create the
/// MetadataAddress for the session which will override the session_id in the provided record. If not provided (or
/// all empty), nothing special happens.
/// If there is a value in record.session_id that is different from the one created from these components, an error is
/// returned.
#[prost(message, optional, tag = "3")]
pub session_id_components: ::core::option::Option<SessionIdComponents>,
/// contract_spec_uuid is an optional contract specification uuid string, e.g. "def6bc0a-c9dd-4874-948f-5206e6060a84"
/// If provided, it will be combined with the record name to generate the MetadataAddress for the record specification
/// which will override the specification_id in the provided record. If not provided (or it is an empty string),
/// nothing special happens.
/// If there is a value in record.specification_id that is different from the one created from this uuid and
/// record.name, an error is returned.
#[prost(string, tag = "4")]
pub contract_spec_uuid: ::prost::alloc::string::String,
/// parties is the list of parties involved with this record.
#[prost(message, repeated, tag = "5")]
pub parties: ::prost::alloc::vec::Vec<Party>,
}
/// MsgWriteRecordResponse is the response type for the Msg/WriteRecord RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteRecordResponse {
/// record_id_info contains information about the id/address of the record that was added or updated.
#[prost(message, optional, tag = "1")]
pub record_id_info: ::core::option::Option<RecordIdInfo>,
}
/// MsgDeleteRecordRequest is the request type for the Msg/DeleteRecord RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteRecordRequest {
#[prost(bytes = "vec", tag = "1")]
pub record_id: ::prost::alloc::vec::Vec<u8>,
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgDeleteRecordResponse is the response type for the Msg/DeleteRecord RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteRecordResponse {}
/// MsgWriteScopeSpecificationRequest is the request type for the Msg/WriteScopeSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteScopeSpecificationRequest {
/// specification is the ScopeSpecification you want added or updated.
#[prost(message, optional, tag = "1")]
pub specification: ::core::option::Option<ScopeSpecification>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// spec_uuid is an optional scope specification uuid string, e.g. "dc83ea70-eacd-40fe-9adf-1cf6148bf8a2"
/// If provided, it will be used to generate the MetadataAddress for the scope specification which will override the
/// specification_id in the provided specification. If not provided (or it is an empty string), nothing special
/// happens.
/// If there is a value in specification.specification_id that is different from the one created from this uuid, an
/// error is returned.
#[prost(string, tag = "3")]
pub spec_uuid: ::prost::alloc::string::String,
}
/// MsgWriteScopeSpecificationResponse is the response type for the Msg/WriteScopeSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteScopeSpecificationResponse {
/// scope_spec_id_info contains information about the id/address of the scope specification that was added or updated.
#[prost(message, optional, tag = "1")]
pub scope_spec_id_info: ::core::option::Option<ScopeSpecIdInfo>,
}
/// MsgDeleteScopeSpecificationRequest is the request type for the Msg/DeleteScopeSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteScopeSpecificationRequest {
/// MetadataAddress for the scope specification to delete.
#[prost(bytes = "vec", tag = "1")]
pub specification_id: ::prost::alloc::vec::Vec<u8>,
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgDeleteScopeSpecificationResponse is the response type for the Msg/DeleteScopeSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteScopeSpecificationResponse {}
/// MsgWriteContractSpecificationRequest is the request type for the Msg/WriteContractSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteContractSpecificationRequest {
/// specification is the ContractSpecification you want added or updated.
#[prost(message, optional, tag = "1")]
pub specification: ::core::option::Option<ContractSpecification>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// spec_uuid is an optional contract specification uuid string, e.g. "def6bc0a-c9dd-4874-948f-5206e6060a84"
/// If provided, it will be used to generate the MetadataAddress for the contract specification which will override the
/// specification_id in the provided specification. If not provided (or it is an empty string), nothing special
/// happens.
/// If there is a value in specification.specification_id that is different from the one created from this uuid, an
/// error is returned.
#[prost(string, tag = "3")]
pub spec_uuid: ::prost::alloc::string::String,
}
/// MsgWriteContractSpecificationResponse is the response type for the Msg/WriteContractSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteContractSpecificationResponse {
/// contract_spec_id_info contains information about the id/address of the contract specification that was added or
/// updated.
#[prost(message, optional, tag = "1")]
pub contract_spec_id_info: ::core::option::Option<ContractSpecIdInfo>,
}
/// MsgAddContractSpecToScopeSpecRequest is the request type for the Msg/AddContractSpecToScopeSpec RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgAddContractSpecToScopeSpecRequest {
/// MetadataAddress for the contract specification to add.
#[prost(bytes = "vec", tag = "1")]
pub contract_specification_id: ::prost::alloc::vec::Vec<u8>,
/// MetadataAddress for the scope specification to add contract specification to.
#[prost(bytes = "vec", tag = "2")]
pub scope_specification_id: ::prost::alloc::vec::Vec<u8>,
#[prost(string, repeated, tag = "3")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgAddContractSpecToScopeSpecResponse is the response type for the Msg/AddContractSpecToScopeSpec RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgAddContractSpecToScopeSpecResponse {}
/// MsgDeleteContractSpecFromScopeSpecRequest is the request type for the Msg/DeleteContractSpecFromScopeSpec RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteContractSpecFromScopeSpecRequest {
/// MetadataAddress for the contract specification to add.
#[prost(bytes = "vec", tag = "1")]
pub contract_specification_id: ::prost::alloc::vec::Vec<u8>,
/// MetadataAddress for the scope specification to add contract specification to.
#[prost(bytes = "vec", tag = "2")]
pub scope_specification_id: ::prost::alloc::vec::Vec<u8>,
#[prost(string, repeated, tag = "3")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgDeleteContractSpecFromScopeSpecResponse is the response type for the Msg/DeleteContractSpecFromScopeSpec RPC
/// method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteContractSpecFromScopeSpecResponse {}
/// MsgDeleteContractSpecificationRequest is the request type for the Msg/DeleteContractSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteContractSpecificationRequest {
/// MetadataAddress for the contract specification to delete.
#[prost(bytes = "vec", tag = "1")]
pub specification_id: ::prost::alloc::vec::Vec<u8>,
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgDeleteContractSpecificationResponse is the response type for the Msg/DeleteContractSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteContractSpecificationResponse {}
/// MsgWriteRecordSpecificationRequest is the request type for the Msg/WriteRecordSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteRecordSpecificationRequest {
/// specification is the RecordSpecification you want added or updated.
#[prost(message, optional, tag = "1")]
pub specification: ::core::option::Option<RecordSpecification>,
/// signers is the list of address of those signing this request.
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// contract_spec_uuid is an optional contract specification uuid string, e.g. "def6bc0a-c9dd-4874-948f-5206e6060a84"
/// If provided, it will be combined with the record specification name to generate the MetadataAddress for the record
/// specification which will override the specification_id in the provided specification. If not provided (or it is an
/// empty string), nothing special happens.
/// If there is a value in specification.specification_id that is different from the one created from this uuid and
/// specification.name, an error is returned.
#[prost(string, tag = "3")]
pub contract_spec_uuid: ::prost::alloc::string::String,
}
/// MsgWriteRecordSpecificationResponse is the response type for the Msg/WriteRecordSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteRecordSpecificationResponse {
/// record_spec_id_info contains information about the id/address of the record specification that was added or
/// updated.
#[prost(message, optional, tag = "1")]
pub record_spec_id_info: ::core::option::Option<RecordSpecIdInfo>,
}
/// MsgDeleteRecordSpecificationRequest is the request type for the Msg/DeleteRecordSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteRecordSpecificationRequest {
/// MetadataAddress for the record specification to delete.
#[prost(bytes = "vec", tag = "1")]
pub specification_id: ::prost::alloc::vec::Vec<u8>,
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgDeleteRecordSpecificationResponse is the response type for the Msg/DeleteRecordSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteRecordSpecificationResponse {}
/// MsgWriteP8eContractSpecRequest is the request type for the Msg/WriteP8eContractSpec RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteP8eContractSpecRequest {
/// ContractSpec v39 p8e ContractSpect to be converted into a v40
#[prost(message, optional, tag = "1")]
pub contractspec: ::core::option::Option<p8e::ContractSpec>,
#[prost(string, repeated, tag = "2")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// MsgWriteP8eContractSpecResponse is the response type for the Msg/WriteP8eContractSpec RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgWriteP8eContractSpecResponse {
/// contract_spec_id_info contains information about the id/address of the contract specification that was added or
/// updated.
#[prost(message, optional, tag = "1")]
pub contract_spec_id_info: ::core::option::Option<ContractSpecIdInfo>,
/// record_spec_id_infos contains information about the ids/addresses of the record specifications that were added or
/// updated.
#[prost(message, repeated, tag = "2")]
pub record_spec_id_infos: ::prost::alloc::vec::Vec<RecordSpecIdInfo>,
}
/// MsgP8eMemorializeContractRequest is the request type for the Msg/P8eMemorializeContract RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgP8eMemorializeContractRequest {
/// The scope id of the object being add or modified on blockchain.
#[prost(string, tag = "1")]
pub scope_id: ::prost::alloc::string::String,
/// The uuid of the contract execution.
#[prost(string, tag = "2")]
pub group_id: ::prost::alloc::string::String,
/// The scope specification id.
#[prost(string, tag = "3")]
pub scope_specification_id: ::prost::alloc::string::String,
/// The new recitals for the scope. Used in leu of Contract for direct ownership changes.
#[prost(message, optional, tag = "4")]
pub recitals: ::core::option::Option<p8e::Recitals>,
/// The executed contract.
#[prost(message, optional, tag = "5")]
pub contract: ::core::option::Option<p8e::Contract>,
/// The contract signatures
#[prost(message, optional, tag = "6")]
pub signatures: ::core::option::Option<p8e::SignatureSet>,
/// The bech32 address of the notary (ie the broadcaster of this message).
#[prost(string, tag = "7")]
pub invoker: ::prost::alloc::string::String,
}
/// MsgP8eMemorializeContractResponse is the response type for the Msg/P8eMemorializeContract RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgP8eMemorializeContractResponse {
/// scope_id_info contains information about the id/address of the scope that was added or updated.
#[prost(message, optional, tag = "1")]
pub scope_id_info: ::core::option::Option<ScopeIdInfo>,
/// session_id_info contains information about the id/address of the session that was added or updated.
#[prost(message, optional, tag = "2")]
pub session_id_info: ::core::option::Option<SessionIdInfo>,
/// record_id_infos contains information about the ids/addresses of the records that were added or updated.
#[prost(message, repeated, tag = "3")]
pub record_id_infos: ::prost::alloc::vec::Vec<RecordIdInfo>,
}
/// MsgBindOSLocatorRequest is the request type for the Msg/BindOSLocator RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgBindOsLocatorRequest {
/// The object locator to bind the address to bind to the URI.
#[prost(message, optional, tag = "1")]
pub locator: ::core::option::Option<ObjectStoreLocator>,
}
/// MsgBindOSLocatorResponse is the response type for the Msg/BindOSLocator RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgBindOsLocatorResponse {
#[prost(message, optional, tag = "1")]
pub locator: ::core::option::Option<ObjectStoreLocator>,
}
/// MsgDeleteOSLocatorRequest is the request type for the Msg/DeleteOSLocator RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteOsLocatorRequest {
/// The record being removed
#[prost(message, optional, tag = "1")]
pub locator: ::core::option::Option<ObjectStoreLocator>,
}
/// MsgDeleteOSLocatorResponse is the response type for the Msg/DeleteOSLocator RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgDeleteOsLocatorResponse {
#[prost(message, optional, tag = "1")]
pub locator: ::core::option::Option<ObjectStoreLocator>,
}
/// MsgModifyOSLocatorRequest is the request type for the Msg/ModifyOSLocator RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgModifyOsLocatorRequest {
/// The object locator to bind the address to bind to the URI.
#[prost(message, optional, tag = "1")]
pub locator: ::core::option::Option<ObjectStoreLocator>,
}
/// MsgModifyOSLocatorResponse is the response type for the Msg/ModifyOSLocator RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgModifyOsLocatorResponse {
#[prost(message, optional, tag = "1")]
pub locator: ::core::option::Option<ObjectStoreLocator>,
}
/// Generated client implementations.
#[cfg(feature = "grpc")]
#[cfg_attr(docsrs, doc(cfg(feature = "grpc")))]
pub mod msg_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::http::Uri;
use tonic::codegen::*;
/// Msg defines the Metadata Msg service.
#[derive(Debug, Clone)]
pub struct MsgClient<T> {
inner: tonic::client::Grpc<T>,
}
#[cfg(feature = "grpc-transport")]
#[cfg_attr(docsrs, doc(cfg(feature = "grpc-transport")))]
impl MsgClient<tonic::transport::Channel> {
/// Attempt to create a new client by connecting to a given endpoint.
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: std::convert::TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> MsgClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(inner: T, interceptor: F) -> MsgClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<http::Request<tonic::body::BoxBody>>>::Error:
Into<StdError> + Send + Sync,
{
MsgClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// WriteScope adds or updates a scope.
pub async fn write_scope(
&mut self,
request: impl tonic::IntoRequest<super::MsgWriteScopeRequest>,
) -> Result<tonic::Response<super::MsgWriteScopeResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Msg/WriteScope");
self.inner.unary(request.into_request(), path, codec).await
}
/// DeleteScope deletes a scope and all associated Records, Sessions.
pub async fn delete_scope(
&mut self,
request: impl tonic::IntoRequest<super::MsgDeleteScopeRequest>,
) -> Result<tonic::Response<super::MsgDeleteScopeResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Msg/DeleteScope");
self.inner.unary(request.into_request(), path, codec).await
}
/// AddScopeDataAccess adds data access AccAddress to scope
pub async fn add_scope_data_access(
&mut self,
request: impl tonic::IntoRequest<super::MsgAddScopeDataAccessRequest>,
) -> Result<tonic::Response<super::MsgAddScopeDataAccessResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/AddScopeDataAccess",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// DeleteScopeDataAccess removes data access AccAddress from scope
pub async fn delete_scope_data_access(
&mut self,
request: impl tonic::IntoRequest<super::MsgDeleteScopeDataAccessRequest>,
) -> Result<tonic::Response<super::MsgDeleteScopeDataAccessResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/DeleteScopeDataAccess",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// AddScopeOwner adds new owner AccAddress to scope
pub async fn add_scope_owner(
&mut self,
request: impl tonic::IntoRequest<super::MsgAddScopeOwnerRequest>,
) -> Result<tonic::Response<super::MsgAddScopeOwnerResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Msg/AddScopeOwner");
self.inner.unary(request.into_request(), path, codec).await
}
/// DeleteScopeOwner removes data access AccAddress from scope
pub async fn delete_scope_owner(
&mut self,
request: impl tonic::IntoRequest<super::MsgDeleteScopeOwnerRequest>,
) -> Result<tonic::Response<super::MsgDeleteScopeOwnerResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/DeleteScopeOwner",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// WriteSession adds or updates a session context.
pub async fn write_session(
&mut self,
request: impl tonic::IntoRequest<super::MsgWriteSessionRequest>,
) -> Result<tonic::Response<super::MsgWriteSessionResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Msg/WriteSession");
self.inner.unary(request.into_request(), path, codec).await
}
/// WriteRecord adds or updates a record.
pub async fn write_record(
&mut self,
request: impl tonic::IntoRequest<super::MsgWriteRecordRequest>,
) -> Result<tonic::Response<super::MsgWriteRecordResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Msg/WriteRecord");
self.inner.unary(request.into_request(), path, codec).await
}
/// DeleteRecord deletes a record.
pub async fn delete_record(
&mut self,
request: impl tonic::IntoRequest<super::MsgDeleteRecordRequest>,
) -> Result<tonic::Response<super::MsgDeleteRecordResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Msg/DeleteRecord");
self.inner.unary(request.into_request(), path, codec).await
}
/// WriteScopeSpecification adds or updates a scope specification.
pub async fn write_scope_specification(
&mut self,
request: impl tonic::IntoRequest<super::MsgWriteScopeSpecificationRequest>,
) -> Result<tonic::Response<super::MsgWriteScopeSpecificationResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/WriteScopeSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// DeleteScopeSpecification deletes a scope specification.
pub async fn delete_scope_specification(
&mut self,
request: impl tonic::IntoRequest<super::MsgDeleteScopeSpecificationRequest>,
) -> Result<tonic::Response<super::MsgDeleteScopeSpecificationResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/DeleteScopeSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// WriteContractSpecification adds or updates a contract specification.
pub async fn write_contract_specification(
&mut self,
request: impl tonic::IntoRequest<super::MsgWriteContractSpecificationRequest>,
) -> Result<tonic::Response<super::MsgWriteContractSpecificationResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/WriteContractSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// DeleteContractSpecification deletes a contract specification.
pub async fn delete_contract_specification(
&mut self,
request: impl tonic::IntoRequest<super::MsgDeleteContractSpecificationRequest>,
) -> Result<tonic::Response<super::MsgDeleteContractSpecificationResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/DeleteContractSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// AddContractSpecToScopeSpec adds contract specification to a scope specification.
pub async fn add_contract_spec_to_scope_spec(
&mut self,
request: impl tonic::IntoRequest<super::MsgAddContractSpecToScopeSpecRequest>,
) -> Result<tonic::Response<super::MsgAddContractSpecToScopeSpecResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/AddContractSpecToScopeSpec",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// DeleteContractSpecFromScopeSpec deletes a contract specification from a scope specification.
pub async fn delete_contract_spec_from_scope_spec(
&mut self,
request: impl tonic::IntoRequest<super::MsgDeleteContractSpecFromScopeSpecRequest>,
) -> Result<tonic::Response<super::MsgDeleteContractSpecFromScopeSpecResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/DeleteContractSpecFromScopeSpec",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// WriteRecordSpecification adds or updates a record specification.
pub async fn write_record_specification(
&mut self,
request: impl tonic::IntoRequest<super::MsgWriteRecordSpecificationRequest>,
) -> Result<tonic::Response<super::MsgWriteRecordSpecificationResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/WriteRecordSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// DeleteRecordSpecification deletes a record specification.
pub async fn delete_record_specification(
&mut self,
request: impl tonic::IntoRequest<super::MsgDeleteRecordSpecificationRequest>,
) -> Result<tonic::Response<super::MsgDeleteRecordSpecificationResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/DeleteRecordSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// WriteP8eContractSpec adds a P8e v39 contract spec as a v40 ContractSpecification
/// It only exists to help facilitate the transition. Users should transition to WriteContractSpecification.
pub async fn write_p8e_contract_spec(
&mut self,
request: impl tonic::IntoRequest<super::MsgWriteP8eContractSpecRequest>,
) -> Result<tonic::Response<super::MsgWriteP8eContractSpecResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/WriteP8eContractSpec",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// P8EMemorializeContract records the results of a P8e contract execution as a session and set of records in a scope
/// It only exists to help facilitate the transition. Users should transition to calling the individual Write methods.
pub async fn p8e_memorialize_contract(
&mut self,
request: impl tonic::IntoRequest<super::MsgP8eMemorializeContractRequest>,
) -> Result<tonic::Response<super::MsgP8eMemorializeContractResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Msg/P8eMemorializeContract",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// BindOSLocator binds an owner address to a uri.
pub async fn bind_os_locator(
&mut self,
request: impl tonic::IntoRequest<super::MsgBindOsLocatorRequest>,
) -> Result<tonic::Response<super::MsgBindOsLocatorResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Msg/BindOSLocator");
self.inner.unary(request.into_request(), path, codec).await
}
/// DeleteOSLocator deletes an existing ObjectStoreLocator record.
pub async fn delete_os_locator(
&mut self,
request: impl tonic::IntoRequest<super::MsgDeleteOsLocatorRequest>,
) -> Result<tonic::Response<super::MsgDeleteOsLocatorResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Msg/DeleteOSLocator");
self.inner.unary(request.into_request(), path, codec).await
}
/// ModifyOSLocator updates an ObjectStoreLocator record by the current owner.
pub async fn modify_os_locator(
&mut self,
request: impl tonic::IntoRequest<super::MsgModifyOsLocatorRequest>,
) -> Result<tonic::Response<super::MsgModifyOsLocatorResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Msg/ModifyOSLocator");
self.inner.unary(request.into_request(), path, codec).await
}
}
}
/// Generated server implementations.
#[cfg(feature = "grpc")]
#[cfg_attr(docsrs, doc(cfg(feature = "grpc")))]
pub mod msg_server {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
/// Generated trait containing gRPC methods that should be implemented for use with MsgServer.
#[async_trait]
pub trait Msg: Send + Sync + 'static {
/// WriteScope adds or updates a scope.
async fn write_scope(
&self,
request: tonic::Request<super::MsgWriteScopeRequest>,
) -> Result<tonic::Response<super::MsgWriteScopeResponse>, tonic::Status>;
/// DeleteScope deletes a scope and all associated Records, Sessions.
async fn delete_scope(
&self,
request: tonic::Request<super::MsgDeleteScopeRequest>,
) -> Result<tonic::Response<super::MsgDeleteScopeResponse>, tonic::Status>;
/// AddScopeDataAccess adds data access AccAddress to scope
async fn add_scope_data_access(
&self,
request: tonic::Request<super::MsgAddScopeDataAccessRequest>,
) -> Result<tonic::Response<super::MsgAddScopeDataAccessResponse>, tonic::Status>;
/// DeleteScopeDataAccess removes data access AccAddress from scope
async fn delete_scope_data_access(
&self,
request: tonic::Request<super::MsgDeleteScopeDataAccessRequest>,
) -> Result<tonic::Response<super::MsgDeleteScopeDataAccessResponse>, tonic::Status>;
/// AddScopeOwner adds new owner AccAddress to scope
async fn add_scope_owner(
&self,
request: tonic::Request<super::MsgAddScopeOwnerRequest>,
) -> Result<tonic::Response<super::MsgAddScopeOwnerResponse>, tonic::Status>;
/// DeleteScopeOwner removes data access AccAddress from scope
async fn delete_scope_owner(
&self,
request: tonic::Request<super::MsgDeleteScopeOwnerRequest>,
) -> Result<tonic::Response<super::MsgDeleteScopeOwnerResponse>, tonic::Status>;
/// WriteSession adds or updates a session context.
async fn write_session(
&self,
request: tonic::Request<super::MsgWriteSessionRequest>,
) -> Result<tonic::Response<super::MsgWriteSessionResponse>, tonic::Status>;
/// WriteRecord adds or updates a record.
async fn write_record(
&self,
request: tonic::Request<super::MsgWriteRecordRequest>,
) -> Result<tonic::Response<super::MsgWriteRecordResponse>, tonic::Status>;
/// DeleteRecord deletes a record.
async fn delete_record(
&self,
request: tonic::Request<super::MsgDeleteRecordRequest>,
) -> Result<tonic::Response<super::MsgDeleteRecordResponse>, tonic::Status>;
/// WriteScopeSpecification adds or updates a scope specification.
async fn write_scope_specification(
&self,
request: tonic::Request<super::MsgWriteScopeSpecificationRequest>,
) -> Result<tonic::Response<super::MsgWriteScopeSpecificationResponse>, tonic::Status>;
/// DeleteScopeSpecification deletes a scope specification.
async fn delete_scope_specification(
&self,
request: tonic::Request<super::MsgDeleteScopeSpecificationRequest>,
) -> Result<tonic::Response<super::MsgDeleteScopeSpecificationResponse>, tonic::Status>;
/// WriteContractSpecification adds or updates a contract specification.
async fn write_contract_specification(
&self,
request: tonic::Request<super::MsgWriteContractSpecificationRequest>,
) -> Result<tonic::Response<super::MsgWriteContractSpecificationResponse>, tonic::Status>;
/// DeleteContractSpecification deletes a contract specification.
async fn delete_contract_specification(
&self,
request: tonic::Request<super::MsgDeleteContractSpecificationRequest>,
) -> Result<tonic::Response<super::MsgDeleteContractSpecificationResponse>, tonic::Status>;
/// AddContractSpecToScopeSpec adds contract specification to a scope specification.
async fn add_contract_spec_to_scope_spec(
&self,
request: tonic::Request<super::MsgAddContractSpecToScopeSpecRequest>,
) -> Result<tonic::Response<super::MsgAddContractSpecToScopeSpecResponse>, tonic::Status>;
/// DeleteContractSpecFromScopeSpec deletes a contract specification from a scope specification.
async fn delete_contract_spec_from_scope_spec(
&self,
request: tonic::Request<super::MsgDeleteContractSpecFromScopeSpecRequest>,
) -> Result<tonic::Response<super::MsgDeleteContractSpecFromScopeSpecResponse>, tonic::Status>;
/// WriteRecordSpecification adds or updates a record specification.
async fn write_record_specification(
&self,
request: tonic::Request<super::MsgWriteRecordSpecificationRequest>,
) -> Result<tonic::Response<super::MsgWriteRecordSpecificationResponse>, tonic::Status>;
/// DeleteRecordSpecification deletes a record specification.
async fn delete_record_specification(
&self,
request: tonic::Request<super::MsgDeleteRecordSpecificationRequest>,
) -> Result<tonic::Response<super::MsgDeleteRecordSpecificationResponse>, tonic::Status>;
/// WriteP8eContractSpec adds a P8e v39 contract spec as a v40 ContractSpecification
/// It only exists to help facilitate the transition. Users should transition to WriteContractSpecification.
async fn write_p8e_contract_spec(
&self,
request: tonic::Request<super::MsgWriteP8eContractSpecRequest>,
) -> Result<tonic::Response<super::MsgWriteP8eContractSpecResponse>, tonic::Status>;
/// P8EMemorializeContract records the results of a P8e contract execution as a session and set of records in a scope
/// It only exists to help facilitate the transition. Users should transition to calling the individual Write methods.
async fn p8e_memorialize_contract(
&self,
request: tonic::Request<super::MsgP8eMemorializeContractRequest>,
) -> Result<tonic::Response<super::MsgP8eMemorializeContractResponse>, tonic::Status>;
/// BindOSLocator binds an owner address to a uri.
async fn bind_os_locator(
&self,
request: tonic::Request<super::MsgBindOsLocatorRequest>,
) -> Result<tonic::Response<super::MsgBindOsLocatorResponse>, tonic::Status>;
/// DeleteOSLocator deletes an existing ObjectStoreLocator record.
async fn delete_os_locator(
&self,
request: tonic::Request<super::MsgDeleteOsLocatorRequest>,
) -> Result<tonic::Response<super::MsgDeleteOsLocatorResponse>, tonic::Status>;
/// ModifyOSLocator updates an ObjectStoreLocator record by the current owner.
async fn modify_os_locator(
&self,
request: tonic::Request<super::MsgModifyOsLocatorRequest>,
) -> Result<tonic::Response<super::MsgModifyOsLocatorResponse>, tonic::Status>;
}
/// Msg defines the Metadata Msg service.
#[derive(Debug)]
pub struct MsgServer<T: Msg> {
inner: _Inner<T>,
accept_compression_encodings: EnabledCompressionEncodings,
send_compression_encodings: EnabledCompressionEncodings,
}
struct _Inner<T>(Arc<T>);
impl<T: Msg> MsgServer<T> {
pub fn new(inner: T) -> Self {
Self::from_arc(Arc::new(inner))
}
pub fn from_arc(inner: Arc<T>) -> Self {
let inner = _Inner(inner);
Self {
inner,
accept_compression_encodings: Default::default(),
send_compression_encodings: Default::default(),
}
}
pub fn with_interceptor<F>(inner: T, interceptor: F) -> InterceptedService<Self, F>
where
F: tonic::service::Interceptor,
{
InterceptedService::new(Self::new(inner), interceptor)
}
/// Enable decompressing requests with the given encoding.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.accept_compression_encodings.enable(encoding);
self
}
/// Compress responses with the given encoding, if the client supports it.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.send_compression_encodings.enable(encoding);
self
}
}
impl<T, B> tonic::codegen::Service<http::Request<B>> for MsgServer<T>
where
T: Msg,
B: Body + Send + 'static,
B::Error: Into<StdError> + Send + 'static,
{
type Response = http::Response<tonic::body::BoxBody>;
type Error = std::convert::Infallible;
type Future = BoxFuture<Self::Response, Self::Error>;
fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, req: http::Request<B>) -> Self::Future {
let inner = self.inner.clone();
match req.uri().path() {
"/provenance.metadata.v1.Msg/WriteScope" => {
#[allow(non_camel_case_types)]
struct WriteScopeSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgWriteScopeRequest> for WriteScopeSvc<T> {
type Response = super::MsgWriteScopeResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgWriteScopeRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).write_scope(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = WriteScopeSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/DeleteScope" => {
#[allow(non_camel_case_types)]
struct DeleteScopeSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgDeleteScopeRequest> for DeleteScopeSvc<T> {
type Response = super::MsgDeleteScopeResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgDeleteScopeRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).delete_scope(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = DeleteScopeSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/AddScopeDataAccess" => {
#[allow(non_camel_case_types)]
struct AddScopeDataAccessSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgAddScopeDataAccessRequest>
for AddScopeDataAccessSvc<T>
{
type Response = super::MsgAddScopeDataAccessResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgAddScopeDataAccessRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).add_scope_data_access(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = AddScopeDataAccessSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/DeleteScopeDataAccess" => {
#[allow(non_camel_case_types)]
struct DeleteScopeDataAccessSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgDeleteScopeDataAccessRequest>
for DeleteScopeDataAccessSvc<T>
{
type Response = super::MsgDeleteScopeDataAccessResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgDeleteScopeDataAccessRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).delete_scope_data_access(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = DeleteScopeDataAccessSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/AddScopeOwner" => {
#[allow(non_camel_case_types)]
struct AddScopeOwnerSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgAddScopeOwnerRequest> for AddScopeOwnerSvc<T> {
type Response = super::MsgAddScopeOwnerResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgAddScopeOwnerRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).add_scope_owner(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = AddScopeOwnerSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/DeleteScopeOwner" => {
#[allow(non_camel_case_types)]
struct DeleteScopeOwnerSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgDeleteScopeOwnerRequest>
for DeleteScopeOwnerSvc<T>
{
type Response = super::MsgDeleteScopeOwnerResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgDeleteScopeOwnerRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).delete_scope_owner(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = DeleteScopeOwnerSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/WriteSession" => {
#[allow(non_camel_case_types)]
struct WriteSessionSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgWriteSessionRequest> for WriteSessionSvc<T> {
type Response = super::MsgWriteSessionResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgWriteSessionRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).write_session(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = WriteSessionSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/WriteRecord" => {
#[allow(non_camel_case_types)]
struct WriteRecordSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgWriteRecordRequest> for WriteRecordSvc<T> {
type Response = super::MsgWriteRecordResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgWriteRecordRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).write_record(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = WriteRecordSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/DeleteRecord" => {
#[allow(non_camel_case_types)]
struct DeleteRecordSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgDeleteRecordRequest> for DeleteRecordSvc<T> {
type Response = super::MsgDeleteRecordResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgDeleteRecordRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).delete_record(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = DeleteRecordSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/WriteScopeSpecification" => {
#[allow(non_camel_case_types)]
struct WriteScopeSpecificationSvc<T: Msg>(pub Arc<T>);
impl<T: Msg>
tonic::server::UnaryService<super::MsgWriteScopeSpecificationRequest>
for WriteScopeSpecificationSvc<T>
{
type Response = super::MsgWriteScopeSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgWriteScopeSpecificationRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).write_scope_specification(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = WriteScopeSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/DeleteScopeSpecification" => {
#[allow(non_camel_case_types)]
struct DeleteScopeSpecificationSvc<T: Msg>(pub Arc<T>);
impl<T: Msg>
tonic::server::UnaryService<super::MsgDeleteScopeSpecificationRequest>
for DeleteScopeSpecificationSvc<T>
{
type Response = super::MsgDeleteScopeSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgDeleteScopeSpecificationRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).delete_scope_specification(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = DeleteScopeSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/WriteContractSpecification" => {
#[allow(non_camel_case_types)]
struct WriteContractSpecificationSvc<T: Msg>(pub Arc<T>);
impl<T: Msg>
tonic::server::UnaryService<super::MsgWriteContractSpecificationRequest>
for WriteContractSpecificationSvc<T>
{
type Response = super::MsgWriteContractSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgWriteContractSpecificationRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).write_contract_specification(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = WriteContractSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/DeleteContractSpecification" => {
#[allow(non_camel_case_types)]
struct DeleteContractSpecificationSvc<T: Msg>(pub Arc<T>);
impl<T: Msg>
tonic::server::UnaryService<super::MsgDeleteContractSpecificationRequest>
for DeleteContractSpecificationSvc<T>
{
type Response = super::MsgDeleteContractSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgDeleteContractSpecificationRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move {
(*inner).delete_contract_specification(request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = DeleteContractSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/AddContractSpecToScopeSpec" => {
#[allow(non_camel_case_types)]
struct AddContractSpecToScopeSpecSvc<T: Msg>(pub Arc<T>);
impl<T: Msg>
tonic::server::UnaryService<super::MsgAddContractSpecToScopeSpecRequest>
for AddContractSpecToScopeSpecSvc<T>
{
type Response = super::MsgAddContractSpecToScopeSpecResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgAddContractSpecToScopeSpecRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move {
(*inner).add_contract_spec_to_scope_spec(request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = AddContractSpecToScopeSpecSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/DeleteContractSpecFromScopeSpec" => {
#[allow(non_camel_case_types)]
struct DeleteContractSpecFromScopeSpecSvc<T: Msg>(pub Arc<T>);
impl<T: Msg>
tonic::server::UnaryService<
super::MsgDeleteContractSpecFromScopeSpecRequest,
> for DeleteContractSpecFromScopeSpecSvc<T>
{
type Response = super::MsgDeleteContractSpecFromScopeSpecResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<
super::MsgDeleteContractSpecFromScopeSpecRequest,
>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move {
(*inner).delete_contract_spec_from_scope_spec(request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = DeleteContractSpecFromScopeSpecSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/WriteRecordSpecification" => {
#[allow(non_camel_case_types)]
struct WriteRecordSpecificationSvc<T: Msg>(pub Arc<T>);
impl<T: Msg>
tonic::server::UnaryService<super::MsgWriteRecordSpecificationRequest>
for WriteRecordSpecificationSvc<T>
{
type Response = super::MsgWriteRecordSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgWriteRecordSpecificationRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).write_record_specification(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = WriteRecordSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/DeleteRecordSpecification" => {
#[allow(non_camel_case_types)]
struct DeleteRecordSpecificationSvc<T: Msg>(pub Arc<T>);
impl<T: Msg>
tonic::server::UnaryService<super::MsgDeleteRecordSpecificationRequest>
for DeleteRecordSpecificationSvc<T>
{
type Response = super::MsgDeleteRecordSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgDeleteRecordSpecificationRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).delete_record_specification(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = DeleteRecordSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/WriteP8eContractSpec" => {
#[allow(non_camel_case_types)]
struct WriteP8eContractSpecSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgWriteP8eContractSpecRequest>
for WriteP8eContractSpecSvc<T>
{
type Response = super::MsgWriteP8eContractSpecResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgWriteP8eContractSpecRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).write_p8e_contract_spec(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = WriteP8eContractSpecSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/P8eMemorializeContract" => {
#[allow(non_camel_case_types)]
struct P8eMemorializeContractSvc<T: Msg>(pub Arc<T>);
impl<T: Msg>
tonic::server::UnaryService<super::MsgP8eMemorializeContractRequest>
for P8eMemorializeContractSvc<T>
{
type Response = super::MsgP8eMemorializeContractResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgP8eMemorializeContractRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).p8e_memorialize_contract(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = P8eMemorializeContractSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/BindOSLocator" => {
#[allow(non_camel_case_types)]
struct BindOSLocatorSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgBindOsLocatorRequest> for BindOSLocatorSvc<T> {
type Response = super::MsgBindOsLocatorResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgBindOsLocatorRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).bind_os_locator(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = BindOSLocatorSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/DeleteOSLocator" => {
#[allow(non_camel_case_types)]
struct DeleteOSLocatorSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgDeleteOsLocatorRequest>
for DeleteOSLocatorSvc<T>
{
type Response = super::MsgDeleteOsLocatorResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgDeleteOsLocatorRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).delete_os_locator(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = DeleteOSLocatorSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Msg/ModifyOSLocator" => {
#[allow(non_camel_case_types)]
struct ModifyOSLocatorSvc<T: Msg>(pub Arc<T>);
impl<T: Msg> tonic::server::UnaryService<super::MsgModifyOsLocatorRequest>
for ModifyOSLocatorSvc<T>
{
type Response = super::MsgModifyOsLocatorResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::MsgModifyOsLocatorRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).modify_os_locator(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = ModifyOSLocatorSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
_ => Box::pin(async move {
Ok(http::Response::builder()
.status(200)
.header("grpc-status", "12")
.header("content-type", "application/grpc")
.body(empty_body())
.unwrap())
}),
}
}
}
impl<T: Msg> Clone for MsgServer<T> {
fn clone(&self) -> Self {
let inner = self.inner.clone();
Self {
inner,
accept_compression_encodings: self.accept_compression_encodings,
send_compression_encodings: self.send_compression_encodings,
}
}
}
impl<T: Msg> Clone for _Inner<T> {
fn clone(&self) -> Self {
Self(self.0.clone())
}
}
impl<T: std::fmt::Debug> std::fmt::Debug for _Inner<T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
}
}
impl<T: Msg> tonic::server::NamedService for MsgServer<T> {
const NAME: &'static str = "provenance.metadata.v1.Msg";
}
}
/// EventTxCompleted is an event message indicating that a TX has completed.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventTxCompleted {
/// module is the module the TX belongs to.
#[prost(string, tag = "1")]
pub module: ::prost::alloc::string::String,
/// endpoint is the rpc endpoint that was just completed.
#[prost(string, tag = "2")]
pub endpoint: ::prost::alloc::string::String,
/// signers are the bech32 address strings of the signers of this TX.
#[prost(string, repeated, tag = "3")]
pub signers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// EventScopeCreated is an event message indicating a scope has been created.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventScopeCreated {
/// scope_addr is the bech32 address string of the scope id that was created.
#[prost(string, tag = "1")]
pub scope_addr: ::prost::alloc::string::String,
}
/// EventScopeUpdated is an event message indicating a scope has been updated.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventScopeUpdated {
/// scope_addr is the bech32 address string of the scope id that was updated.
#[prost(string, tag = "1")]
pub scope_addr: ::prost::alloc::string::String,
}
/// EventScopeDeleted is an event message indicating a scope has been deleted.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventScopeDeleted {
/// scope_addr is the bech32 address string of the scope id that was deleted.
#[prost(string, tag = "1")]
pub scope_addr: ::prost::alloc::string::String,
}
/// EventSessionCreated is an event message indicating a session has been created.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventSessionCreated {
/// session_addr is the bech32 address string of the session id that was created.
#[prost(string, tag = "1")]
pub session_addr: ::prost::alloc::string::String,
/// scope_addr is the bech32 address string of the scope id this session belongs to.
#[prost(string, tag = "2")]
pub scope_addr: ::prost::alloc::string::String,
}
/// EventSessionUpdated is an event message indicating a session has been updated.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventSessionUpdated {
/// session_addr is the bech32 address string of the session id that was updated.
#[prost(string, tag = "1")]
pub session_addr: ::prost::alloc::string::String,
/// scope_addr is the bech32 address string of the scope id this session belongs to.
#[prost(string, tag = "2")]
pub scope_addr: ::prost::alloc::string::String,
}
/// EventSessionDeleted is an event message indicating a session has been deleted.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventSessionDeleted {
/// session_addr is the bech32 address string of the session id that was deleted.
#[prost(string, tag = "1")]
pub session_addr: ::prost::alloc::string::String,
/// scope_addr is the bech32 address string of the scope id this session belongs to.
#[prost(string, tag = "2")]
pub scope_addr: ::prost::alloc::string::String,
}
/// EventRecordCreated is an event message indicating a record has been created.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventRecordCreated {
/// record_addr is the bech32 address string of the record id that was created.
#[prost(string, tag = "1")]
pub record_addr: ::prost::alloc::string::String,
/// session_addr is the bech32 address string of the session id this record belongs to.
#[prost(string, tag = "2")]
pub session_addr: ::prost::alloc::string::String,
/// scope_addr is the bech32 address string of the scope id this record belongs to.
#[prost(string, tag = "3")]
pub scope_addr: ::prost::alloc::string::String,
}
/// EventRecordUpdated is an event message indicating a record has been updated.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventRecordUpdated {
/// record_addr is the bech32 address string of the record id that was updated.
#[prost(string, tag = "1")]
pub record_addr: ::prost::alloc::string::String,
/// session_addr is the bech32 address string of the session id this record belongs to.
#[prost(string, tag = "2")]
pub session_addr: ::prost::alloc::string::String,
/// scope_addr is the bech32 address string of the scope id this record belongs to.
#[prost(string, tag = "3")]
pub scope_addr: ::prost::alloc::string::String,
}
/// EventRecordDeleted is an event message indicating a record has been deleted.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventRecordDeleted {
/// record is the bech32 address string of the record id that was deleted.
#[prost(string, tag = "1")]
pub record_addr: ::prost::alloc::string::String,
/// scope_addr is the bech32 address string of the scope id this record belonged to.
#[prost(string, tag = "3")]
pub scope_addr: ::prost::alloc::string::String,
}
/// EventScopeSpecificationCreated is an event message indicating a scope specification has been created.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventScopeSpecificationCreated {
/// scope_specification_addr is the bech32 address string of the specification id of the scope specification that was
/// created.
#[prost(string, tag = "1")]
pub scope_specification_addr: ::prost::alloc::string::String,
}
/// EventScopeSpecificationUpdated is an event message indicating a scope specification has been updated.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventScopeSpecificationUpdated {
/// scope_specification_addr is the bech32 address string of the specification id of the scope specification that was
/// updated.
#[prost(string, tag = "1")]
pub scope_specification_addr: ::prost::alloc::string::String,
}
/// EventScopeSpecificationDeleted is an event message indicating a scope specification has been deleted.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventScopeSpecificationDeleted {
/// scope_specification_addr is the bech32 address string of the specification id of the scope specification that was
/// deleted.
#[prost(string, tag = "1")]
pub scope_specification_addr: ::prost::alloc::string::String,
}
/// EventContractSpecificationCreated is an event message indicating a contract specification has been created.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventContractSpecificationCreated {
/// contract_specification_addr is the bech32 address string of the specification id of the contract specification that
/// was created.
#[prost(string, tag = "1")]
pub contract_specification_addr: ::prost::alloc::string::String,
}
/// EventContractSpecificationUpdated is an event message indicating a contract specification has been updated.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventContractSpecificationUpdated {
/// contract_specification_addr is the bech32 address string of the specification id of the contract specification that
/// was updated.
#[prost(string, tag = "1")]
pub contract_specification_addr: ::prost::alloc::string::String,
}
/// EventContractSpecificationDeleted is an event message indicating a contract specification has been deleted.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventContractSpecificationDeleted {
/// contract_specification_addr is the bech32 address string of the specification id of the contract specification that
/// was deleted.
#[prost(string, tag = "1")]
pub contract_specification_addr: ::prost::alloc::string::String,
}
/// EventRecordSpecificationCreated is an event message indicating a record specification has been created.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventRecordSpecificationCreated {
/// record_specification_addr is the bech32 address string of the specification id of the record specification that was
/// created.
#[prost(string, tag = "1")]
pub record_specification_addr: ::prost::alloc::string::String,
/// contract_specification_addr is the bech32 address string of the contract specification id this record specification
/// belongs to.
#[prost(string, tag = "2")]
pub contract_specification_addr: ::prost::alloc::string::String,
}
/// EventRecordSpecificationUpdated is an event message indicating a record specification has been updated.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventRecordSpecificationUpdated {
/// record_specification_addr is the bech32 address string of the specification id of the record specification that was
/// updated.
#[prost(string, tag = "1")]
pub record_specification_addr: ::prost::alloc::string::String,
/// contract_specification_addr is the bech32 address string of the contract specification id this record specification
/// belongs to.
#[prost(string, tag = "2")]
pub contract_specification_addr: ::prost::alloc::string::String,
}
/// EventRecordSpecificationDeleted is an event message indicating a record specification has been deleted.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventRecordSpecificationDeleted {
/// record_specification_addr is the bech32 address string of the specification id of the record specification that was
/// deleted.
#[prost(string, tag = "1")]
pub record_specification_addr: ::prost::alloc::string::String,
/// contract_specification_addr is the bech32 address string of the contract specification id this record specification
/// belongs to.
#[prost(string, tag = "2")]
pub contract_specification_addr: ::prost::alloc::string::String,
}
/// EventOSLocatorCreated is an event message indicating an object store locator has been created.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventOsLocatorCreated {
/// owner is the owner in the object store locator that was created.
#[prost(string, tag = "1")]
pub owner: ::prost::alloc::string::String,
}
/// EventOSLocatorUpdated is an event message indicating an object store locator has been updated.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventOsLocatorUpdated {
/// owner is the owner in the object store locator that was updated.
#[prost(string, tag = "1")]
pub owner: ::prost::alloc::string::String,
}
/// EventOSLocatorDeleted is an event message indicating an object store locator has been deleted.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventOsLocatorDeleted {
/// owner is the owner in the object store locator that was deleted.
#[prost(string, tag = "1")]
pub owner: ::prost::alloc::string::String,
}
/// QueryParamsRequest is the request type for the Query/Params RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryParamsRequest {}
/// QueryParamsResponse is the response type for the Query/Params RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryParamsResponse {
/// params defines the parameters of the module.
#[prost(message, optional, tag = "1")]
pub params: ::core::option::Option<Params>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<QueryParamsRequest>,
}
/// ScopeRequest is the request type for the Query/Scope RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeRequest {
/// scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
/// scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
#[prost(string, tag = "1")]
pub scope_id: ::prost::alloc::string::String,
/// session_addr is a bech32 session address, e.g.
/// session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr.
#[prost(string, tag = "2")]
pub session_addr: ::prost::alloc::string::String,
/// record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
#[prost(string, tag = "3")]
pub record_addr: ::prost::alloc::string::String,
/// include_sessions is a flag for whether or not the sessions in the scope should be included.
#[prost(bool, tag = "10")]
pub include_sessions: bool,
/// include_records is a flag for whether or not the records in the scope should be included.
#[prost(bool, tag = "11")]
pub include_records: bool,
}
/// ScopeResponse is the response type for the Query/Scope RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeResponse {
/// scope is the wrapped scope result.
#[prost(message, optional, tag = "1")]
pub scope: ::core::option::Option<ScopeWrapper>,
/// sessions is any number of wrapped sessions in this scope (if requested).
#[prost(message, repeated, tag = "2")]
pub sessions: ::prost::alloc::vec::Vec<SessionWrapper>,
/// records is any number of wrapped records in this scope (if requested).
#[prost(message, repeated, tag = "3")]
pub records: ::prost::alloc::vec::Vec<RecordWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<ScopeRequest>,
}
/// SessionWrapper contains a single scope and its uuid.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeWrapper {
/// scope is the on-chain scope message.
#[prost(message, optional, tag = "1")]
pub scope: ::core::option::Option<Scope>,
/// scope_id_info contains information about the id/address of the scope.
#[prost(message, optional, tag = "2")]
pub scope_id_info: ::core::option::Option<ScopeIdInfo>,
/// scope_spec_id_info contains information about the id/address of the scope specification.
#[prost(message, optional, tag = "3")]
pub scope_spec_id_info: ::core::option::Option<ScopeSpecIdInfo>,
}
/// ScopesAllRequest is the request type for the Query/ScopesAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopesAllRequest {
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// ScopesAllResponse is the response type for the Query/ScopesAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopesAllResponse {
/// scopes are the wrapped scopes.
#[prost(message, repeated, tag = "1")]
pub scopes: ::prost::alloc::vec::Vec<ScopeWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<ScopesAllRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// SessionsRequest is the request type for the Query/Sessions RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SessionsRequest {
/// scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
/// scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
#[prost(string, tag = "1")]
pub scope_id: ::prost::alloc::string::String,
/// session_id can either be a uuid, e.g. 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g.
/// session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. This can only be a uuid if a scope_id is also
/// provided.
#[prost(string, tag = "2")]
pub session_id: ::prost::alloc::string::String,
/// record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
#[prost(string, tag = "3")]
pub record_addr: ::prost::alloc::string::String,
/// record_name is the name of the record to find the session for in the provided scope.
#[prost(string, tag = "4")]
pub record_name: ::prost::alloc::string::String,
/// include_scope is a flag for whether or not the scope containing these sessions should be included.
#[prost(bool, tag = "10")]
pub include_scope: bool,
/// include_records is a flag for whether or not the records in these sessions should be included.
#[prost(bool, tag = "11")]
pub include_records: bool,
}
/// SessionsResponse is the response type for the Query/Sessions RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SessionsResponse {
/// scope is the wrapped scope that holds these sessions (if requested).
#[prost(message, optional, tag = "1")]
pub scope: ::core::option::Option<ScopeWrapper>,
/// sessions is any number of wrapped session results.
#[prost(message, repeated, tag = "2")]
pub sessions: ::prost::alloc::vec::Vec<SessionWrapper>,
/// records is any number of wrapped records contained in these sessions (if requested).
#[prost(message, repeated, tag = "3")]
pub records: ::prost::alloc::vec::Vec<RecordWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<SessionsRequest>,
}
/// SessionWrapper contains a single session and some extra identifiers for it.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SessionWrapper {
/// session is the on-chain session message.
#[prost(message, optional, tag = "1")]
pub session: ::core::option::Option<Session>,
/// session_id_info contains information about the id/address of the session.
#[prost(message, optional, tag = "2")]
pub session_id_info: ::core::option::Option<SessionIdInfo>,
/// contract_spec_id_info contains information about the id/address of the contract specification.
#[prost(message, optional, tag = "3")]
pub contract_spec_id_info: ::core::option::Option<ContractSpecIdInfo>,
}
/// SessionsAllRequest is the request type for the Query/SessionsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SessionsAllRequest {
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// SessionsAllResponse is the response type for the Query/SessionsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SessionsAllResponse {
/// sessions are the wrapped sessions.
#[prost(message, repeated, tag = "1")]
pub sessions: ::prost::alloc::vec::Vec<SessionWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<SessionsAllRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// RecordsRequest is the request type for the Query/Records RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordsRequest {
/// record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
#[prost(string, tag = "1")]
pub record_addr: ::prost::alloc::string::String,
/// scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
/// scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
#[prost(string, tag = "2")]
pub scope_id: ::prost::alloc::string::String,
/// session_id can either be a uuid, e.g. 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g.
/// session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. This can only be a uuid if a scope_id is also
/// provided.
#[prost(string, tag = "3")]
pub session_id: ::prost::alloc::string::String,
/// name is the name of the record to look for
#[prost(string, tag = "4")]
pub name: ::prost::alloc::string::String,
/// include_scope is a flag for whether or not the scope containing these records should be included.
#[prost(bool, tag = "10")]
pub include_scope: bool,
/// include_sessions is a flag for whether or not the sessions containing these records should be included.
#[prost(bool, tag = "11")]
pub include_sessions: bool,
}
/// RecordsResponse is the response type for the Query/Records RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordsResponse {
/// scope is the wrapped scope that holds these records (if requested).
#[prost(message, optional, tag = "1")]
pub scope: ::core::option::Option<ScopeWrapper>,
/// sessions is any number of wrapped sessions that hold these records (if requested).
#[prost(message, repeated, tag = "2")]
pub sessions: ::prost::alloc::vec::Vec<SessionWrapper>,
/// records is any number of wrapped record results.
#[prost(message, repeated, tag = "3")]
pub records: ::prost::alloc::vec::Vec<RecordWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<RecordsRequest>,
}
/// RecordWrapper contains a single record and some extra identifiers for it.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordWrapper {
/// record is the on-chain record message.
#[prost(message, optional, tag = "1")]
pub record: ::core::option::Option<Record>,
/// record_id_info contains information about the id/address of the record.
#[prost(message, optional, tag = "2")]
pub record_id_info: ::core::option::Option<RecordIdInfo>,
/// record_spec_id_info contains information about the id/address of the record specification.
#[prost(message, optional, tag = "3")]
pub record_spec_id_info: ::core::option::Option<RecordSpecIdInfo>,
}
/// RecordsAllRequest is the request type for the Query/RecordsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordsAllRequest {
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// RecordsAllResponse is the response type for the Query/RecordsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordsAllResponse {
/// records are the wrapped records.
#[prost(message, repeated, tag = "1")]
pub records: ::prost::alloc::vec::Vec<RecordWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<RecordsAllRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// OwnershipRequest is the request type for the Query/Ownership RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OwnershipRequest {
#[prost(string, tag = "1")]
pub address: ::prost::alloc::string::String,
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// OwnershipResponse is the response type for the Query/Ownership RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OwnershipResponse {
/// A list of scope ids (uuid) associated with the given address.
#[prost(string, repeated, tag = "1")]
pub scope_uuids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<OwnershipRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// ValueOwnershipRequest is the request type for the Query/ValueOwnership RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValueOwnershipRequest {
#[prost(string, tag = "1")]
pub address: ::prost::alloc::string::String,
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// ValueOwnershipResponse is the response type for the Query/ValueOwnership RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValueOwnershipResponse {
/// A list of scope ids (uuid) associated with the given address.
#[prost(string, repeated, tag = "1")]
pub scope_uuids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<ValueOwnershipRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// ScopeSpecificationRequest is the request type for the Query/ScopeSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeSpecificationRequest {
/// specification_id can either be a uuid, e.g. dc83ea70-eacd-40fe-9adf-1cf6148bf8a2 or a bech32 scope specification
/// address, e.g. scopespec1qnwg86nsatx5pl56muw0v9ytlz3qu3jx6m.
#[prost(string, tag = "1")]
pub specification_id: ::prost::alloc::string::String,
}
/// ScopeSpecificationResponse is the response type for the Query/ScopeSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeSpecificationResponse {
/// scope_specification is the wrapped scope specification.
#[prost(message, optional, tag = "1")]
pub scope_specification: ::core::option::Option<ScopeSpecificationWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<ScopeSpecificationRequest>,
}
/// ScopeSpecificationWrapper contains a single scope specification and some extra identifiers for it.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeSpecificationWrapper {
/// specification is the on-chain scope specification message.
#[prost(message, optional, tag = "1")]
pub specification: ::core::option::Option<ScopeSpecification>,
/// scope_spec_id_info contains information about the id/address of the scope specification.
#[prost(message, optional, tag = "2")]
pub scope_spec_id_info: ::core::option::Option<ScopeSpecIdInfo>,
}
/// ScopeSpecificationsAllRequest is the request type for the Query/ScopeSpecificationsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeSpecificationsAllRequest {
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// ScopeSpecificationsAllResponse is the response type for the Query/ScopeSpecificationsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScopeSpecificationsAllResponse {
/// scope_specifications are the wrapped scope specifications.
#[prost(message, repeated, tag = "1")]
pub scope_specifications: ::prost::alloc::vec::Vec<ScopeSpecificationWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<ScopeSpecificationsAllRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// ContractSpecificationRequest is the request type for the Query/ContractSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContractSpecificationRequest {
/// specification_id can either be a uuid, e.g. def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract specification
/// address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn.
/// It can also be a record specification address, e.g.
/// recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44.
#[prost(string, tag = "1")]
pub specification_id: ::prost::alloc::string::String,
/// include_record_specs is a flag for whether or not the record specifications in this contract specification should
/// be included in the result.
#[prost(bool, tag = "10")]
pub include_record_specs: bool,
}
/// ContractSpecificationResponse is the response type for the Query/ContractSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContractSpecificationResponse {
/// contract_specification is the wrapped contract specification.
#[prost(message, optional, tag = "1")]
pub contract_specification: ::core::option::Option<ContractSpecificationWrapper>,
/// record_specifications is any number or wrapped record specifications associated with this contract_specification
/// (if requested).
#[prost(message, repeated, tag = "3")]
pub record_specifications: ::prost::alloc::vec::Vec<RecordSpecificationWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<ContractSpecificationRequest>,
}
/// ContractSpecificationWrapper contains a single contract specification and some extra identifiers for it.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContractSpecificationWrapper {
/// specification is the on-chain contract specification message.
#[prost(message, optional, tag = "1")]
pub specification: ::core::option::Option<ContractSpecification>,
/// contract_spec_id_info contains information about the id/address of the contract specification.
#[prost(message, optional, tag = "2")]
pub contract_spec_id_info: ::core::option::Option<ContractSpecIdInfo>,
}
/// ContractSpecificationsAllRequest is the request type for the Query/ContractSpecificationsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContractSpecificationsAllRequest {
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// ContractSpecificationsAllResponse is the response type for the Query/ContractSpecificationsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContractSpecificationsAllResponse {
/// contract_specifications are the wrapped contract specifications.
#[prost(message, repeated, tag = "1")]
pub contract_specifications: ::prost::alloc::vec::Vec<ContractSpecificationWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<ContractSpecificationsAllRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// RecordSpecificationsForContractSpecificationRequest is the request type for the
/// Query/RecordSpecificationsForContractSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordSpecificationsForContractSpecificationRequest {
/// specification_id can either be a uuid, e.g. def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract specification
/// address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn.
/// It can also be a record specification address, e.g.
/// recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44.
#[prost(string, tag = "1")]
pub specification_id: ::prost::alloc::string::String,
}
/// RecordSpecificationsForContractSpecificationResponse is the response type for the
/// Query/RecordSpecificationsForContractSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordSpecificationsForContractSpecificationResponse {
/// record_specifications is any number of wrapped record specifications associated with this contract_specification.
#[prost(message, repeated, tag = "1")]
pub record_specifications: ::prost::alloc::vec::Vec<RecordSpecificationWrapper>,
/// contract_specification_uuid is the uuid of this contract specification.
#[prost(string, tag = "2")]
pub contract_specification_uuid: ::prost::alloc::string::String,
/// contract_specification_addr is the contract specification address as a bech32 encoded string.
#[prost(string, tag = "3")]
pub contract_specification_addr: ::prost::alloc::string::String,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<RecordSpecificationsForContractSpecificationRequest>,
}
/// RecordSpecificationRequest is the request type for the Query/RecordSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordSpecificationRequest {
/// specification_id can either be a uuid, e.g. def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract specification
/// address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn.
/// It can also be a record specification address, e.g.
/// recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44.
#[prost(string, tag = "1")]
pub specification_id: ::prost::alloc::string::String,
/// name is the name of the record to look up.
/// It is required if the specification_id is a uuid or contract specification address.
/// It is ignored if the specification_id is a record specification address.
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
}
/// RecordSpecificationResponse is the response type for the Query/RecordSpecification RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordSpecificationResponse {
/// record_specification is the wrapped record specification.
#[prost(message, optional, tag = "1")]
pub record_specification: ::core::option::Option<RecordSpecificationWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<RecordSpecificationRequest>,
}
/// RecordSpecificationWrapper contains a single record specification and some extra identifiers for it.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordSpecificationWrapper {
/// specification is the on-chain record specification message.
#[prost(message, optional, tag = "1")]
pub specification: ::core::option::Option<RecordSpecification>,
/// record_spec_id_info contains information about the id/address of the record specification.
#[prost(message, optional, tag = "2")]
pub record_spec_id_info: ::core::option::Option<RecordSpecIdInfo>,
}
/// RecordSpecificationsAllRequest is the request type for the Query/RecordSpecificationsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordSpecificationsAllRequest {
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// RecordSpecificationsAllResponse is the response type for the Query/RecordSpecificationsAll RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RecordSpecificationsAllResponse {
/// record_specifications are the wrapped record specifications.
#[prost(message, repeated, tag = "1")]
pub record_specifications: ::prost::alloc::vec::Vec<RecordSpecificationWrapper>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<RecordSpecificationsAllRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// OSLocatorParamsRequest is the request type for the Query/OSLocatorParams RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsLocatorParamsRequest {}
/// OSLocatorParamsResponse is the response type for the Query/OSLocatorParams RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsLocatorParamsResponse {
/// params defines the parameters of the module.
#[prost(message, optional, tag = "1")]
pub params: ::core::option::Option<OsLocatorParams>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<OsLocatorParamsRequest>,
}
/// OSLocatorRequest is the request type for the Query/OSLocator RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsLocatorRequest {
#[prost(string, tag = "1")]
pub owner: ::prost::alloc::string::String,
}
/// OSLocatorResponse is the response type for the Query/OSLocator RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsLocatorResponse {
#[prost(message, optional, tag = "1")]
pub locator: ::core::option::Option<ObjectStoreLocator>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<OsLocatorRequest>,
}
/// OSLocatorsByURIRequest is the request type for the Query/OSLocatorsByURI RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsLocatorsByUriRequest {
#[prost(string, tag = "1")]
pub uri: ::prost::alloc::string::String,
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// OSLocatorsByURIResponse is the response type for the Query/OSLocatorsByURI RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsLocatorsByUriResponse {
#[prost(message, repeated, tag = "1")]
pub locators: ::prost::alloc::vec::Vec<ObjectStoreLocator>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<OsLocatorsByUriRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// OSLocatorsByScopeRequest is the request type for the Query/OSLocatorsByScope RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsLocatorsByScopeRequest {
#[prost(string, tag = "1")]
pub scope_id: ::prost::alloc::string::String,
}
/// OSLocatorsByScopeResponse is the response type for the Query/OSLocatorsByScope RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsLocatorsByScopeResponse {
#[prost(message, repeated, tag = "1")]
pub locators: ::prost::alloc::vec::Vec<ObjectStoreLocator>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<OsLocatorsByScopeRequest>,
}
/// OSAllLocatorsRequest is the request type for the Query/OSAllLocators RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsAllLocatorsRequest {
/// pagination defines optional pagination parameters for the request.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageRequest>,
}
/// OSAllLocatorsResponse is the response type for the Query/OSAllLocators RPC method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OsAllLocatorsResponse {
#[prost(message, repeated, tag = "1")]
pub locators: ::prost::alloc::vec::Vec<ObjectStoreLocator>,
/// request is a copy of the request that generated these results.
#[prost(message, optional, tag = "98")]
pub request: ::core::option::Option<OsAllLocatorsRequest>,
/// pagination provides the pagination information of this response.
#[prost(message, optional, tag = "99")]
pub pagination:
::core::option::Option<cosmos_sdk_proto::cosmos::base::query::v1beta1::PageResponse>,
}
/// Generated client implementations.
#[cfg(feature = "grpc")]
#[cfg_attr(docsrs, doc(cfg(feature = "grpc")))]
pub mod query_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::http::Uri;
use tonic::codegen::*;
/// Query defines the Metadata Query service.
#[derive(Debug, Clone)]
pub struct QueryClient<T> {
inner: tonic::client::Grpc<T>,
}
#[cfg(feature = "grpc-transport")]
#[cfg_attr(docsrs, doc(cfg(feature = "grpc-transport")))]
impl QueryClient<tonic::transport::Channel> {
/// Attempt to create a new client by connecting to a given endpoint.
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: std::convert::TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> QueryClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> QueryClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<http::Request<tonic::body::BoxBody>>>::Error:
Into<StdError> + Send + Sync,
{
QueryClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Params queries the parameters of x/metadata module.
pub async fn params(
&mut self,
request: impl tonic::IntoRequest<super::QueryParamsRequest>,
) -> Result<tonic::Response<super::QueryParamsResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/Params");
self.inner.unary(request.into_request(), path, codec).await
}
/// Scope searches for a scope.
///
/// The scope id, if provided, must either be scope uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address,
/// e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. The session addr, if provided, must be a bech32 session address,
/// e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The record_addr, if provided, must be a
/// bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
///
/// * If only a scope_id is provided, that scope is returned.
/// * If only a session_addr is provided, the scope containing that session is returned.
/// * If only a record_addr is provided, the scope containing that record is returned.
/// * If more than one of scope_id, session_addr, and record_addr are provided, and they don't refer to the same scope,
/// a bad request is returned.
///
/// Providing a session addr or record addr does not limit the sessions and records returned (if requested).
/// Those parameters are only used to find the scope.
///
/// By default, sessions and records are not included.
/// Set include_sessions and/or include_records to true to include sessions and/or records.
pub async fn scope(
&mut self,
request: impl tonic::IntoRequest<super::ScopeRequest>,
) -> Result<tonic::Response<super::ScopeResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/Scope");
self.inner.unary(request.into_request(), path, codec).await
}
/// ScopesAll retrieves all scopes.
pub async fn scopes_all(
&mut self,
request: impl tonic::IntoRequest<super::ScopesAllRequest>,
) -> Result<tonic::Response<super::ScopesAllResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/ScopesAll");
self.inner.unary(request.into_request(), path, codec).await
}
/// Sessions searches for sessions.
///
/// The scope_id can either be scope uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g.
/// scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can either be a uuid or session address, e.g.
/// session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The record_addr, if provided, must be a
/// bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
///
/// * If only a scope_id is provided, all sessions in that scope are returned.
/// * If only a session_id is provided, it must be an address, and that single session is returned.
/// * If the session_id is a uuid, then either a scope_id or record_addr must also be provided, and that single session
/// is returned.
/// * If only a record_addr is provided, the session containing that record will be returned.
/// * If a record_name is provided then either a scope_id, session_id as an address, or record_addr must also be
/// provided, and the session containing that record will be returned.
///
/// A bad request is returned if:
/// * The session_id is a uuid and is provided without a scope_id or record_addr.
/// * A record_name is provided without any way to identify the scope (e.g. a scope_id, a session_id as an address, or
/// a record_addr).
/// * Two or more of scope_id, session_id as an address, and record_addr are provided and don't all refer to the same
/// scope.
/// * A record_addr (or scope_id and record_name) is provided with a session_id and that session does not contain such
/// a record.
/// * A record_addr and record_name are both provided, but reference different records.
///
/// By default, the scope and records are not included.
/// Set include_scope and/or include_records to true to include the scope and/or records.
pub async fn sessions(
&mut self,
request: impl tonic::IntoRequest<super::SessionsRequest>,
) -> Result<tonic::Response<super::SessionsResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/Sessions");
self.inner.unary(request.into_request(), path, codec).await
}
/// SessionsAll retrieves all sessions.
pub async fn sessions_all(
&mut self,
request: impl tonic::IntoRequest<super::SessionsAllRequest>,
) -> Result<tonic::Response<super::SessionsAllResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/SessionsAll");
self.inner.unary(request.into_request(), path, codec).await
}
/// Records searches for records.
///
/// The record_addr, if provided, must be a bech32 record address, e.g.
/// record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The scope-id can either be scope uuid, e.g.
/// 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly,
/// the session_id can either be a uuid or session address, e.g.
/// session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The name is the name of the record you're
/// interested in.
///
/// * If only a record_addr is provided, that single record will be returned.
/// * If only a scope_id is provided, all records in that scope will be returned.
/// * If only a session_id (or scope_id/session_id), all records in that session will be returned.
/// * If a name is provided with a scope_id and/or session_id, that single record will be returned.
///
/// A bad request is returned if:
/// * The session_id is a uuid and no scope_id is provided.
/// * There are two or more of record_addr, session_id, and scope_id, and they don't all refer to the same scope.
/// * A name is provided, but not a scope_id and/or a session_id.
/// * A name and record_addr are provided and the name doesn't match the record_addr.
///
/// By default, the scope and sessions are not included.
/// Set include_scope and/or include_sessions to true to include the scope and/or sessions.
pub async fn records(
&mut self,
request: impl tonic::IntoRequest<super::RecordsRequest>,
) -> Result<tonic::Response<super::RecordsResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/Records");
self.inner.unary(request.into_request(), path, codec).await
}
/// RecordsAll retrieves all records.
pub async fn records_all(
&mut self,
request: impl tonic::IntoRequest<super::RecordsAllRequest>,
) -> Result<tonic::Response<super::RecordsAllResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/RecordsAll");
self.inner.unary(request.into_request(), path, codec).await
}
/// Ownership returns the scope identifiers that list the given address as either a data or value owner.
pub async fn ownership(
&mut self,
request: impl tonic::IntoRequest<super::OwnershipRequest>,
) -> Result<tonic::Response<super::OwnershipResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/Ownership");
self.inner.unary(request.into_request(), path, codec).await
}
/// ValueOwnership returns the scope identifiers that list the given address as the value owner.
pub async fn value_ownership(
&mut self,
request: impl tonic::IntoRequest<super::ValueOwnershipRequest>,
) -> Result<tonic::Response<super::ValueOwnershipResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/ValueOwnership",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// ScopeSpecification returns a scope specification for the given specification id.
///
/// The specification_id can either be a uuid, e.g. dc83ea70-eacd-40fe-9adf-1cf6148bf8a2 or a bech32 scope
/// specification address, e.g. scopespec1qnwg86nsatx5pl56muw0v9ytlz3qu3jx6m.
pub async fn scope_specification(
&mut self,
request: impl tonic::IntoRequest<super::ScopeSpecificationRequest>,
) -> Result<tonic::Response<super::ScopeSpecificationResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/ScopeSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// ScopeSpecificationsAll retrieves all scope specifications.
pub async fn scope_specifications_all(
&mut self,
request: impl tonic::IntoRequest<super::ScopeSpecificationsAllRequest>,
) -> Result<tonic::Response<super::ScopeSpecificationsAllResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/ScopeSpecificationsAll",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// ContractSpecification returns a contract specification for the given specification id.
///
/// The specification_id can either be a uuid, e.g. def6bc0a-c9dd-4874-948f-5206e6060a84, a bech32 contract
/// specification address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn, or a bech32 record specification
/// address, e.g. recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. If it is a record specification
/// address, then the contract specification that contains that record specification is looked up.
///
/// By default, the record specifications for this contract specification are not included.
/// Set include_record_specs to true to include them in the result.
pub async fn contract_specification(
&mut self,
request: impl tonic::IntoRequest<super::ContractSpecificationRequest>,
) -> Result<tonic::Response<super::ContractSpecificationResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/ContractSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// ContractSpecificationsAll retrieves all contract specifications.
pub async fn contract_specifications_all(
&mut self,
request: impl tonic::IntoRequest<super::ContractSpecificationsAllRequest>,
) -> Result<tonic::Response<super::ContractSpecificationsAllResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/ContractSpecificationsAll",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// RecordSpecificationsForContractSpecification returns the record specifications for the given input.
///
/// The specification_id can either be a uuid, e.g. def6bc0a-c9dd-4874-948f-5206e6060a84, a bech32 contract
/// specification address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn, or a bech32 record specification
/// address, e.g. recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. If it is a record specification
/// address, then the contract specification that contains that record specification is used.
pub async fn record_specifications_for_contract_specification(
&mut self,
request: impl tonic::IntoRequest<super::RecordSpecificationsForContractSpecificationRequest>,
) -> Result<
tonic::Response<super::RecordSpecificationsForContractSpecificationResponse>,
tonic::Status,
> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/RecordSpecificationsForContractSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// RecordSpecification returns a record specification for the given input.
pub async fn record_specification(
&mut self,
request: impl tonic::IntoRequest<super::RecordSpecificationRequest>,
) -> Result<tonic::Response<super::RecordSpecificationResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/RecordSpecification",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// RecordSpecificationsAll retrieves all record specifications.
pub async fn record_specifications_all(
&mut self,
request: impl tonic::IntoRequest<super::RecordSpecificationsAllRequest>,
) -> Result<tonic::Response<super::RecordSpecificationsAllResponse>, tonic::Status>
{
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/RecordSpecificationsAll",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// OSLocatorParams returns all parameters for the object store locator sub module.
pub async fn os_locator_params(
&mut self,
request: impl tonic::IntoRequest<super::OsLocatorParamsRequest>,
) -> Result<tonic::Response<super::OsLocatorParamsResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/OSLocatorParams",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// OSLocator returns an ObjectStoreLocator by its owner's address.
pub async fn os_locator(
&mut self,
request: impl tonic::IntoRequest<super::OsLocatorRequest>,
) -> Result<tonic::Response<super::OsLocatorResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/OSLocator");
self.inner.unary(request.into_request(), path, codec).await
}
/// OSLocatorsByURI returns all ObjectStoreLocator entries for a locator uri.
pub async fn os_locators_by_uri(
&mut self,
request: impl tonic::IntoRequest<super::OsLocatorsByUriRequest>,
) -> Result<tonic::Response<super::OsLocatorsByUriResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/OSLocatorsByURI",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// OSLocatorsByScope returns all ObjectStoreLocator entries for a for all signer's present in the specified scope.
pub async fn os_locators_by_scope(
&mut self,
request: impl tonic::IntoRequest<super::OsLocatorsByScopeRequest>,
) -> Result<tonic::Response<super::OsLocatorsByScopeResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/provenance.metadata.v1.Query/OSLocatorsByScope",
);
self.inner.unary(request.into_request(), path, codec).await
}
/// OSAllLocators returns all ObjectStoreLocator entries.
pub async fn os_all_locators(
&mut self,
request: impl tonic::IntoRequest<super::OsAllLocatorsRequest>,
) -> Result<tonic::Response<super::OsAllLocatorsResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/provenance.metadata.v1.Query/OSAllLocators");
self.inner.unary(request.into_request(), path, codec).await
}
}
}
/// Generated server implementations.
#[cfg(feature = "grpc")]
#[cfg_attr(docsrs, doc(cfg(feature = "grpc")))]
pub mod query_server {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
/// Generated trait containing gRPC methods that should be implemented for use with QueryServer.
#[async_trait]
pub trait Query: Send + Sync + 'static {
/// Params queries the parameters of x/metadata module.
async fn params(
&self,
request: tonic::Request<super::QueryParamsRequest>,
) -> Result<tonic::Response<super::QueryParamsResponse>, tonic::Status>;
/// Scope searches for a scope.
///
/// The scope id, if provided, must either be scope uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address,
/// e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. The session addr, if provided, must be a bech32 session address,
/// e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The record_addr, if provided, must be a
/// bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
///
/// * If only a scope_id is provided, that scope is returned.
/// * If only a session_addr is provided, the scope containing that session is returned.
/// * If only a record_addr is provided, the scope containing that record is returned.
/// * If more than one of scope_id, session_addr, and record_addr are provided, and they don't refer to the same scope,
/// a bad request is returned.
///
/// Providing a session addr or record addr does not limit the sessions and records returned (if requested).
/// Those parameters are only used to find the scope.
///
/// By default, sessions and records are not included.
/// Set include_sessions and/or include_records to true to include sessions and/or records.
async fn scope(
&self,
request: tonic::Request<super::ScopeRequest>,
) -> Result<tonic::Response<super::ScopeResponse>, tonic::Status>;
/// ScopesAll retrieves all scopes.
async fn scopes_all(
&self,
request: tonic::Request<super::ScopesAllRequest>,
) -> Result<tonic::Response<super::ScopesAllResponse>, tonic::Status>;
/// Sessions searches for sessions.
///
/// The scope_id can either be scope uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g.
/// scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can either be a uuid or session address, e.g.
/// session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The record_addr, if provided, must be a
/// bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
///
/// * If only a scope_id is provided, all sessions in that scope are returned.
/// * If only a session_id is provided, it must be an address, and that single session is returned.
/// * If the session_id is a uuid, then either a scope_id or record_addr must also be provided, and that single session
/// is returned.
/// * If only a record_addr is provided, the session containing that record will be returned.
/// * If a record_name is provided then either a scope_id, session_id as an address, or record_addr must also be
/// provided, and the session containing that record will be returned.
///
/// A bad request is returned if:
/// * The session_id is a uuid and is provided without a scope_id or record_addr.
/// * A record_name is provided without any way to identify the scope (e.g. a scope_id, a session_id as an address, or
/// a record_addr).
/// * Two or more of scope_id, session_id as an address, and record_addr are provided and don't all refer to the same
/// scope.
/// * A record_addr (or scope_id and record_name) is provided with a session_id and that session does not contain such
/// a record.
/// * A record_addr and record_name are both provided, but reference different records.
///
/// By default, the scope and records are not included.
/// Set include_scope and/or include_records to true to include the scope and/or records.
async fn sessions(
&self,
request: tonic::Request<super::SessionsRequest>,
) -> Result<tonic::Response<super::SessionsResponse>, tonic::Status>;
/// SessionsAll retrieves all sessions.
async fn sessions_all(
&self,
request: tonic::Request<super::SessionsAllRequest>,
) -> Result<tonic::Response<super::SessionsAllResponse>, tonic::Status>;
/// Records searches for records.
///
/// The record_addr, if provided, must be a bech32 record address, e.g.
/// record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The scope-id can either be scope uuid, e.g.
/// 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly,
/// the session_id can either be a uuid or session address, e.g.
/// session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The name is the name of the record you're
/// interested in.
///
/// * If only a record_addr is provided, that single record will be returned.
/// * If only a scope_id is provided, all records in that scope will be returned.
/// * If only a session_id (or scope_id/session_id), all records in that session will be returned.
/// * If a name is provided with a scope_id and/or session_id, that single record will be returned.
///
/// A bad request is returned if:
/// * The session_id is a uuid and no scope_id is provided.
/// * There are two or more of record_addr, session_id, and scope_id, and they don't all refer to the same scope.
/// * A name is provided, but not a scope_id and/or a session_id.
/// * A name and record_addr are provided and the name doesn't match the record_addr.
///
/// By default, the scope and sessions are not included.
/// Set include_scope and/or include_sessions to true to include the scope and/or sessions.
async fn records(
&self,
request: tonic::Request<super::RecordsRequest>,
) -> Result<tonic::Response<super::RecordsResponse>, tonic::Status>;
/// RecordsAll retrieves all records.
async fn records_all(
&self,
request: tonic::Request<super::RecordsAllRequest>,
) -> Result<tonic::Response<super::RecordsAllResponse>, tonic::Status>;
/// Ownership returns the scope identifiers that list the given address as either a data or value owner.
async fn ownership(
&self,
request: tonic::Request<super::OwnershipRequest>,
) -> Result<tonic::Response<super::OwnershipResponse>, tonic::Status>;
/// ValueOwnership returns the scope identifiers that list the given address as the value owner.
async fn value_ownership(
&self,
request: tonic::Request<super::ValueOwnershipRequest>,
) -> Result<tonic::Response<super::ValueOwnershipResponse>, tonic::Status>;
/// ScopeSpecification returns a scope specification for the given specification id.
///
/// The specification_id can either be a uuid, e.g. dc83ea70-eacd-40fe-9adf-1cf6148bf8a2 or a bech32 scope
/// specification address, e.g. scopespec1qnwg86nsatx5pl56muw0v9ytlz3qu3jx6m.
async fn scope_specification(
&self,
request: tonic::Request<super::ScopeSpecificationRequest>,
) -> Result<tonic::Response<super::ScopeSpecificationResponse>, tonic::Status>;
/// ScopeSpecificationsAll retrieves all scope specifications.
async fn scope_specifications_all(
&self,
request: tonic::Request<super::ScopeSpecificationsAllRequest>,
) -> Result<tonic::Response<super::ScopeSpecificationsAllResponse>, tonic::Status>;
/// ContractSpecification returns a contract specification for the given specification id.
///
/// The specification_id can either be a uuid, e.g. def6bc0a-c9dd-4874-948f-5206e6060a84, a bech32 contract
/// specification address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn, or a bech32 record specification
/// address, e.g. recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. If it is a record specification
/// address, then the contract specification that contains that record specification is looked up.
///
/// By default, the record specifications for this contract specification are not included.
/// Set include_record_specs to true to include them in the result.
async fn contract_specification(
&self,
request: tonic::Request<super::ContractSpecificationRequest>,
) -> Result<tonic::Response<super::ContractSpecificationResponse>, tonic::Status>;
/// ContractSpecificationsAll retrieves all contract specifications.
async fn contract_specifications_all(
&self,
request: tonic::Request<super::ContractSpecificationsAllRequest>,
) -> Result<tonic::Response<super::ContractSpecificationsAllResponse>, tonic::Status>;
/// RecordSpecificationsForContractSpecification returns the record specifications for the given input.
///
/// The specification_id can either be a uuid, e.g. def6bc0a-c9dd-4874-948f-5206e6060a84, a bech32 contract
/// specification address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn, or a bech32 record specification
/// address, e.g. recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. If it is a record specification
/// address, then the contract specification that contains that record specification is used.
async fn record_specifications_for_contract_specification(
&self,
request: tonic::Request<super::RecordSpecificationsForContractSpecificationRequest>,
) -> Result<
tonic::Response<super::RecordSpecificationsForContractSpecificationResponse>,
tonic::Status,
>;
/// RecordSpecification returns a record specification for the given input.
async fn record_specification(
&self,
request: tonic::Request<super::RecordSpecificationRequest>,
) -> Result<tonic::Response<super::RecordSpecificationResponse>, tonic::Status>;
/// RecordSpecificationsAll retrieves all record specifications.
async fn record_specifications_all(
&self,
request: tonic::Request<super::RecordSpecificationsAllRequest>,
) -> Result<tonic::Response<super::RecordSpecificationsAllResponse>, tonic::Status>;
/// OSLocatorParams returns all parameters for the object store locator sub module.
async fn os_locator_params(
&self,
request: tonic::Request<super::OsLocatorParamsRequest>,
) -> Result<tonic::Response<super::OsLocatorParamsResponse>, tonic::Status>;
/// OSLocator returns an ObjectStoreLocator by its owner's address.
async fn os_locator(
&self,
request: tonic::Request<super::OsLocatorRequest>,
) -> Result<tonic::Response<super::OsLocatorResponse>, tonic::Status>;
/// OSLocatorsByURI returns all ObjectStoreLocator entries for a locator uri.
async fn os_locators_by_uri(
&self,
request: tonic::Request<super::OsLocatorsByUriRequest>,
) -> Result<tonic::Response<super::OsLocatorsByUriResponse>, tonic::Status>;
/// OSLocatorsByScope returns all ObjectStoreLocator entries for a for all signer's present in the specified scope.
async fn os_locators_by_scope(
&self,
request: tonic::Request<super::OsLocatorsByScopeRequest>,
) -> Result<tonic::Response<super::OsLocatorsByScopeResponse>, tonic::Status>;
/// OSAllLocators returns all ObjectStoreLocator entries.
async fn os_all_locators(
&self,
request: tonic::Request<super::OsAllLocatorsRequest>,
) -> Result<tonic::Response<super::OsAllLocatorsResponse>, tonic::Status>;
}
/// Query defines the Metadata Query service.
#[derive(Debug)]
pub struct QueryServer<T: Query> {
inner: _Inner<T>,
accept_compression_encodings: EnabledCompressionEncodings,
send_compression_encodings: EnabledCompressionEncodings,
}
struct _Inner<T>(Arc<T>);
impl<T: Query> QueryServer<T> {
pub fn new(inner: T) -> Self {
Self::from_arc(Arc::new(inner))
}
pub fn from_arc(inner: Arc<T>) -> Self {
let inner = _Inner(inner);
Self {
inner,
accept_compression_encodings: Default::default(),
send_compression_encodings: Default::default(),
}
}
pub fn with_interceptor<F>(inner: T, interceptor: F) -> InterceptedService<Self, F>
where
F: tonic::service::Interceptor,
{
InterceptedService::new(Self::new(inner), interceptor)
}
/// Enable decompressing requests with the given encoding.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.accept_compression_encodings.enable(encoding);
self
}
/// Compress responses with the given encoding, if the client supports it.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.send_compression_encodings.enable(encoding);
self
}
}
impl<T, B> tonic::codegen::Service<http::Request<B>> for QueryServer<T>
where
T: Query,
B: Body + Send + 'static,
B::Error: Into<StdError> + Send + 'static,
{
type Response = http::Response<tonic::body::BoxBody>;
type Error = std::convert::Infallible;
type Future = BoxFuture<Self::Response, Self::Error>;
fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, req: http::Request<B>) -> Self::Future {
let inner = self.inner.clone();
match req.uri().path() {
"/provenance.metadata.v1.Query/Params" => {
#[allow(non_camel_case_types)]
struct ParamsSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::QueryParamsRequest> for ParamsSvc<T> {
type Response = super::QueryParamsResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::QueryParamsRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).params(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = ParamsSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/Scope" => {
#[allow(non_camel_case_types)]
struct ScopeSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::ScopeRequest> for ScopeSvc<T> {
type Response = super::ScopeResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::ScopeRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).scope(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = ScopeSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/ScopesAll" => {
#[allow(non_camel_case_types)]
struct ScopesAllSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::ScopesAllRequest> for ScopesAllSvc<T> {
type Response = super::ScopesAllResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::ScopesAllRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).scopes_all(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = ScopesAllSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/Sessions" => {
#[allow(non_camel_case_types)]
struct SessionsSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::SessionsRequest> for SessionsSvc<T> {
type Response = super::SessionsResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::SessionsRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).sessions(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = SessionsSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/SessionsAll" => {
#[allow(non_camel_case_types)]
struct SessionsAllSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::SessionsAllRequest> for SessionsAllSvc<T> {
type Response = super::SessionsAllResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::SessionsAllRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).sessions_all(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = SessionsAllSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/Records" => {
#[allow(non_camel_case_types)]
struct RecordsSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::RecordsRequest> for RecordsSvc<T> {
type Response = super::RecordsResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::RecordsRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).records(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = RecordsSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/RecordsAll" => {
#[allow(non_camel_case_types)]
struct RecordsAllSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::RecordsAllRequest> for RecordsAllSvc<T> {
type Response = super::RecordsAllResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::RecordsAllRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).records_all(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = RecordsAllSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/Ownership" => {
#[allow(non_camel_case_types)]
struct OwnershipSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::OwnershipRequest> for OwnershipSvc<T> {
type Response = super::OwnershipResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::OwnershipRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).ownership(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = OwnershipSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/ValueOwnership" => {
#[allow(non_camel_case_types)]
struct ValueOwnershipSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::ValueOwnershipRequest> for ValueOwnershipSvc<T> {
type Response = super::ValueOwnershipResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::ValueOwnershipRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).value_ownership(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = ValueOwnershipSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/ScopeSpecification" => {
#[allow(non_camel_case_types)]
struct ScopeSpecificationSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::ScopeSpecificationRequest>
for ScopeSpecificationSvc<T>
{
type Response = super::ScopeSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::ScopeSpecificationRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).scope_specification(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = ScopeSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/ScopeSpecificationsAll" => {
#[allow(non_camel_case_types)]
struct ScopeSpecificationsAllSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::ScopeSpecificationsAllRequest>
for ScopeSpecificationsAllSvc<T>
{
type Response = super::ScopeSpecificationsAllResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::ScopeSpecificationsAllRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).scope_specifications_all(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = ScopeSpecificationsAllSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/ContractSpecification" => {
#[allow(non_camel_case_types)]
struct ContractSpecificationSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::ContractSpecificationRequest>
for ContractSpecificationSvc<T>
{
type Response = super::ContractSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::ContractSpecificationRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).contract_specification(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = ContractSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/ContractSpecificationsAll" => {
#[allow(non_camel_case_types)]
struct ContractSpecificationsAllSvc<T: Query>(pub Arc<T>);
impl<T: Query>
tonic::server::UnaryService<super::ContractSpecificationsAllRequest>
for ContractSpecificationsAllSvc<T>
{
type Response = super::ContractSpecificationsAllResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::ContractSpecificationsAllRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).contract_specifications_all(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = ContractSpecificationsAllSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/RecordSpecificationsForContractSpecification" => {
#[allow(non_camel_case_types)]
struct RecordSpecificationsForContractSpecificationSvc<T: Query>(pub Arc<T>);
impl<T: Query>
tonic::server::UnaryService<
super::RecordSpecificationsForContractSpecificationRequest,
> for RecordSpecificationsForContractSpecificationSvc<T>
{
type Response = super::RecordSpecificationsForContractSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<
super::RecordSpecificationsForContractSpecificationRequest,
>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move {
(*inner)
.record_specifications_for_contract_specification(request)
.await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = RecordSpecificationsForContractSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/RecordSpecification" => {
#[allow(non_camel_case_types)]
struct RecordSpecificationSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::RecordSpecificationRequest>
for RecordSpecificationSvc<T>
{
type Response = super::RecordSpecificationResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::RecordSpecificationRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).record_specification(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = RecordSpecificationSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/RecordSpecificationsAll" => {
#[allow(non_camel_case_types)]
struct RecordSpecificationsAllSvc<T: Query>(pub Arc<T>);
impl<T: Query>
tonic::server::UnaryService<super::RecordSpecificationsAllRequest>
for RecordSpecificationsAllSvc<T>
{
type Response = super::RecordSpecificationsAllResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::RecordSpecificationsAllRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut =
async move { (*inner).record_specifications_all(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = RecordSpecificationsAllSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/OSLocatorParams" => {
#[allow(non_camel_case_types)]
struct OSLocatorParamsSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::OsLocatorParamsRequest>
for OSLocatorParamsSvc<T>
{
type Response = super::OsLocatorParamsResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::OsLocatorParamsRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).os_locator_params(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = OSLocatorParamsSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/OSLocator" => {
#[allow(non_camel_case_types)]
struct OSLocatorSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::OsLocatorRequest> for OSLocatorSvc<T> {
type Response = super::OsLocatorResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::OsLocatorRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).os_locator(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = OSLocatorSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/OSLocatorsByURI" => {
#[allow(non_camel_case_types)]
struct OSLocatorsByURISvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::OsLocatorsByUriRequest>
for OSLocatorsByURISvc<T>
{
type Response = super::OsLocatorsByUriResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::OsLocatorsByUriRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).os_locators_by_uri(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = OSLocatorsByURISvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/OSLocatorsByScope" => {
#[allow(non_camel_case_types)]
struct OSLocatorsByScopeSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::OsLocatorsByScopeRequest>
for OSLocatorsByScopeSvc<T>
{
type Response = super::OsLocatorsByScopeResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::OsLocatorsByScopeRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).os_locators_by_scope(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = OSLocatorsByScopeSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/provenance.metadata.v1.Query/OSAllLocators" => {
#[allow(non_camel_case_types)]
struct OSAllLocatorsSvc<T: Query>(pub Arc<T>);
impl<T: Query> tonic::server::UnaryService<super::OsAllLocatorsRequest> for OSAllLocatorsSvc<T> {
type Response = super::OsAllLocatorsResponse;
type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>;
fn call(
&mut self,
request: tonic::Request<super::OsAllLocatorsRequest>,
) -> Self::Future {
let inner = self.0.clone();
let fut = async move { (*inner).os_all_locators(request).await };
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let inner = self.inner.clone();
let fut = async move {
let inner = inner.0;
let method = OSAllLocatorsSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec).apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
_ => Box::pin(async move {
Ok(http::Response::builder()
.status(200)
.header("grpc-status", "12")
.header("content-type", "application/grpc")
.body(empty_body())
.unwrap())
}),
}
}
}
impl<T: Query> Clone for QueryServer<T> {
fn clone(&self) -> Self {
let inner = self.inner.clone();
Self {
inner,
accept_compression_encodings: self.accept_compression_encodings,
send_compression_encodings: self.send_compression_encodings,
}
}
}
impl<T: Query> Clone for _Inner<T> {
fn clone(&self) -> Self {
Self(self.0.clone())
}
}
impl<T: std::fmt::Debug> std::fmt::Debug for _Inner<T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
}
}
impl<T: Query> tonic::server::NamedService for QueryServer<T> {
const NAME: &'static str = "provenance.metadata.v1.Query";
}
}
/// GenesisState defines the account module's genesis state.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenesisState {
/// params defines all the parameters of the module.
#[prost(message, optional, tag = "1")]
pub params: ::core::option::Option<Params>,
/// A collection of metadata scopes and specs to create on start
#[prost(message, repeated, tag = "2")]
pub scopes: ::prost::alloc::vec::Vec<Scope>,
#[prost(message, repeated, tag = "3")]
pub sessions: ::prost::alloc::vec::Vec<Session>,
#[prost(message, repeated, tag = "4")]
pub records: ::prost::alloc::vec::Vec<Record>,
#[prost(message, repeated, tag = "5")]
pub scope_specifications: ::prost::alloc::vec::Vec<ScopeSpecification>,
#[prost(message, repeated, tag = "6")]
pub contract_specifications: ::prost::alloc::vec::Vec<ContractSpecification>,
#[prost(message, repeated, tag = "7")]
pub record_specifications: ::prost::alloc::vec::Vec<RecordSpecification>,
#[prost(message, optional, tag = "8")]
pub o_s_locator_params: ::core::option::Option<OsLocatorParams>,
#[prost(message, repeated, tag = "9")]
pub object_store_locators: ::prost::alloc::vec::Vec<ObjectStoreLocator>,
}