meshtrade 1.0.1__py3-none-any.whl → 1.29.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. meshtrade/common/__init__.py +2 -4
  2. meshtrade/common/config.py +3 -4
  3. meshtrade/common/grpc_client.py +140 -0
  4. meshtrade/common/service_options.py +46 -0
  5. meshtrade/compliance/client/v1/__init__.py +0 -2
  6. meshtrade/compliance/client/v1/client_pb2.py +15 -4
  7. meshtrade/compliance/client/v1/client_pb2.pyi +1 -0
  8. meshtrade/compliance/client/v1/company_pb2.py +25 -8
  9. meshtrade/compliance/client/v1/company_pb2.pyi +1 -0
  10. meshtrade/compliance/client/v1/company_representative_pb2.py +9 -4
  11. meshtrade/compliance/client/v1/company_representative_pb2.pyi +1 -0
  12. meshtrade/compliance/client/v1/company_representative_role_pb2.py +2 -2
  13. meshtrade/compliance/client/v1/fund_pb2.py +13 -4
  14. meshtrade/compliance/client/v1/fund_pb2.pyi +1 -0
  15. meshtrade/compliance/client/v1/identification_document_type_pb2.py +2 -2
  16. meshtrade/compliance/client/v1/industry_classification_pb2.py +2 -2
  17. meshtrade/compliance/client/v1/natural_person_connection_type_pb2.py +2 -2
  18. meshtrade/compliance/client/v1/natural_person_pb2.py +19 -4
  19. meshtrade/compliance/client/v1/natural_person_pb2.pyi +1 -0
  20. meshtrade/compliance/client/v1/pep_status_pb2.py +2 -2
  21. meshtrade/compliance/client/v1/service_meshpy.py +2 -1
  22. meshtrade/compliance/client/v1/service_pb2.py +21 -17
  23. meshtrade/compliance/client/v1/service_pb2.pyi +2 -2
  24. meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.py +2 -2
  25. meshtrade/compliance/client/v1/tax_residency_pb2.py +9 -4
  26. meshtrade/compliance/client/v1/tax_residency_pb2.pyi +1 -0
  27. meshtrade/compliance/client/v1/trust_pb2.py +13 -4
  28. meshtrade/compliance/client/v1/trust_pb2.pyi +1 -0
  29. meshtrade/compliance/client/v1/verification_status_pb2.py +2 -2
  30. meshtrade/iam/api_user/v1/__init__.py +34 -26
  31. meshtrade/iam/api_user/v1/api_credentials_pb2.py +5 -5
  32. meshtrade/iam/api_user/v1/api_user_pb2.py +13 -9
  33. meshtrade/iam/api_user/v1/api_user_pb2.pyi +2 -4
  34. meshtrade/iam/api_user/v1/api_user_state_machine.py +104 -0
  35. meshtrade/iam/api_user/v1/service_meshpy.py +96 -61
  36. meshtrade/iam/api_user/v1/service_pb2.py +61 -40
  37. meshtrade/iam/api_user/v1/service_pb2.pyi +26 -11
  38. meshtrade/iam/api_user/v1/service_pb2_grpc.py +179 -135
  39. meshtrade/iam/group/v1/__init__.py +4 -2
  40. meshtrade/iam/group/v1/group_pb2.py +13 -4
  41. meshtrade/iam/group/v1/group_pb2.pyi +9 -2
  42. meshtrade/iam/group/v1/service_meshpy.py +41 -6
  43. meshtrade/iam/group/v1/service_pb2.py +47 -20
  44. meshtrade/iam/group/v1/service_pb2.pyi +46 -13
  45. meshtrade/iam/group/v1/service_pb2_grpc.py +151 -16
  46. meshtrade/iam/role/v1/__init__.py +17 -4
  47. meshtrade/iam/role/v1/role.py +162 -11
  48. meshtrade/iam/role/v1/role_pb2.py +4 -7
  49. meshtrade/iam/role/v1/role_pb2.pyi +53 -23
  50. meshtrade/iam/user/v1/__init__.py +22 -4
  51. meshtrade/iam/user/v1/service_meshpy.py +129 -7
  52. meshtrade/iam/user/v1/service_pb2.py +66 -16
  53. meshtrade/iam/user/v1/service_pb2.pyi +81 -9
  54. meshtrade/iam/user/v1/service_pb2_grpc.py +385 -14
  55. meshtrade/iam/user/v1/user_pb2.py +13 -4
  56. meshtrade/iam/user/v1/user_pb2.pyi +7 -2
  57. meshtrade/ledger/transaction/v1/__init__.py +25 -1
  58. meshtrade/ledger/transaction/v1/service_meshpy.py +176 -0
  59. meshtrade/ledger/transaction/v1/service_pb2.py +56 -0
  60. meshtrade/ledger/transaction/v1/service_pb2.pyi +32 -0
  61. meshtrade/ledger/transaction/v1/service_pb2_grpc.py +131 -0
  62. meshtrade/ledger/transaction/v1/transaction_action_pb2.py +2 -2
  63. meshtrade/ledger/transaction/v1/transaction_state_machine.py +75 -0
  64. meshtrade/ledger/transaction/v1/transaction_state_pb2.py +2 -2
  65. meshtrade/{reporting/income_report → market_data/price}/v1/__init__.py +11 -20
  66. meshtrade/market_data/price/v1/price_pb2.py +40 -0
  67. meshtrade/market_data/price/v1/price_pb2.pyi +23 -0
  68. meshtrade/market_data/price/v1/service_meshpy.py +152 -0
  69. meshtrade/market_data/price/v1/service_pb2.py +49 -0
  70. meshtrade/market_data/price/v1/service_pb2.pyi +18 -0
  71. meshtrade/market_data/price/v1/service_pb2_grpc.py +84 -0
  72. meshtrade/option/method_options/v1/__init__.py +41 -0
  73. meshtrade/option/method_options/v1/method_options_pb2.py +43 -0
  74. meshtrade/option/method_options/v1/method_options_pb2.pyi +40 -0
  75. meshtrade/reporting/account_report/v1/__init__.py +66 -0
  76. meshtrade/reporting/account_report/v1/account_report_pb2.py +46 -0
  77. meshtrade/reporting/account_report/v1/account_report_pb2.pyi +49 -0
  78. meshtrade/reporting/{income_report → account_report}/v1/disclaimer_pb2.py +7 -7
  79. meshtrade/reporting/account_report/v1/fee_entry_pb2.py +39 -0
  80. meshtrade/reporting/account_report/v1/fee_entry_pb2.pyi +26 -0
  81. meshtrade/reporting/account_report/v1/fee_entry_pb2_grpc.py +4 -0
  82. meshtrade/reporting/account_report/v1/income_entry.py +35 -0
  83. meshtrade/reporting/account_report/v1/income_entry_pb2.py +42 -0
  84. meshtrade/reporting/{income_report/v1/entry_pb2.pyi → account_report/v1/income_entry_pb2.pyi} +18 -10
  85. meshtrade/reporting/account_report/v1/income_entry_pb2_grpc.py +4 -0
  86. meshtrade/reporting/{income_report → account_report}/v1/service_meshpy.py +37 -36
  87. meshtrade/reporting/account_report/v1/service_pb2.py +72 -0
  88. meshtrade/reporting/account_report/v1/service_pb2.pyi +43 -0
  89. meshtrade/reporting/account_report/v1/service_pb2_grpc.py +161 -0
  90. meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.py +39 -0
  91. meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.pyi +30 -0
  92. meshtrade/reporting/account_report/v1/trading_statement_entry_pb2_grpc.py +4 -0
  93. meshtrade/studio/instrument/v1/__init__.py +43 -0
  94. meshtrade/studio/instrument/v1/instrument_pb2.py +45 -0
  95. meshtrade/studio/instrument/v1/instrument_pb2.pyi +20 -0
  96. meshtrade/studio/instrument/v1/instrument_pb2_grpc.py +4 -0
  97. meshtrade/studio/instrument/v1/instrument_type_pb2.py +37 -0
  98. meshtrade/studio/instrument/v1/instrument_type_pb2.pyi +64 -0
  99. meshtrade/studio/instrument/v1/instrument_type_pb2_grpc.py +4 -0
  100. meshtrade/studio/instrument/v1/unit_pb2.py +37 -0
  101. meshtrade/studio/instrument/v1/unit_pb2.pyi +46 -0
  102. meshtrade/studio/instrument/v1/unit_pb2_grpc.py +4 -0
  103. meshtrade/trading/limit_order/v1/__init__.py +22 -4
  104. meshtrade/trading/limit_order/v1/limit_order_pb2.py +24 -4
  105. meshtrade/trading/limit_order/v1/limit_order_pb2.pyi +55 -5
  106. meshtrade/trading/limit_order/v1/service_meshpy.py +113 -2
  107. meshtrade/trading/limit_order/v1/service_pb2.py +49 -9
  108. meshtrade/trading/limit_order/v1/service_pb2.pyi +67 -7
  109. meshtrade/trading/limit_order/v1/service_pb2_grpc.py +321 -4
  110. meshtrade/trading/market_order/v1/__init__.py +0 -2
  111. meshtrade/trading/market_order/v1/market_order_pb2.py +2 -2
  112. meshtrade/trading/market_order/v1/service_meshpy.py +3 -2
  113. meshtrade/trading/market_order/v1/service_pb2.py +8 -9
  114. meshtrade/trading/market_order/v1/service_pb2.pyi +1 -2
  115. meshtrade/type/v1/__init__.py +82 -12
  116. meshtrade/type/v1/address_pb2.py +2 -2
  117. meshtrade/type/v1/amount.py +429 -5
  118. meshtrade/type/v1/amount_pb2.py +2 -2
  119. meshtrade/type/v1/contact_details_pb2.py +2 -2
  120. meshtrade/type/v1/date_pb2.py +2 -2
  121. meshtrade/type/v1/decimal_built_in_conversions.py +8 -3
  122. meshtrade/type/v1/decimal_operations.py +354 -0
  123. meshtrade/type/v1/decimal_pb2.py +2 -2
  124. meshtrade/type/v1/ledger.py +76 -1
  125. meshtrade/type/v1/ledger_pb2.py +2 -2
  126. meshtrade/type/v1/sorting_pb2.py +2 -2
  127. meshtrade/type/v1/time_of_day_pb2.py +2 -2
  128. meshtrade/type/v1/token.py +144 -0
  129. meshtrade/type/v1/token_pb2.py +2 -2
  130. meshtrade/wallet/account/v1/__init__.py +21 -3
  131. meshtrade/wallet/account/v1/account_pb2.py +28 -4
  132. meshtrade/wallet/account/v1/account_pb2.pyi +57 -3
  133. meshtrade/wallet/account/v1/service_meshpy.py +72 -1
  134. meshtrade/wallet/account/v1/service_pb2.py +67 -23
  135. meshtrade/wallet/account/v1/service_pb2.pyi +81 -21
  136. meshtrade/wallet/account/v1/service_pb2_grpc.py +242 -8
  137. {meshtrade-1.0.1.dist-info → meshtrade-1.29.0.dist-info}/METADATA +1 -1
  138. meshtrade-1.29.0.dist-info/RECORD +217 -0
  139. meshtrade/compliance/client/v1/service_options_meshpy.py +0 -65
  140. meshtrade/iam/api_user/v1/service.py +0 -58
  141. meshtrade/iam/api_user/v1/service_options_meshpy.py +0 -65
  142. meshtrade/iam/group/v1/service_options_meshpy.py +0 -65
  143. meshtrade/iam/user/v1/service_options_meshpy.py +0 -65
  144. meshtrade/option/v1/method_type_pb2.py +0 -38
  145. meshtrade/option/v1/method_type_pb2.pyi +0 -17
  146. meshtrade/reporting/income_report/v1/entry_pb2.py +0 -42
  147. meshtrade/reporting/income_report/v1/income_report_pb2.py +0 -44
  148. meshtrade/reporting/income_report/v1/income_report_pb2.pyi +0 -42
  149. meshtrade/reporting/income_report/v1/service_options_meshpy.py +0 -65
  150. meshtrade/reporting/income_report/v1/service_pb2.py +0 -58
  151. meshtrade/reporting/income_report/v1/service_pb2.pyi +0 -37
  152. meshtrade/reporting/income_report/v1/service_pb2_grpc.py +0 -170
  153. meshtrade/trading/limit_order/v1/service_options_meshpy.py +0 -65
  154. meshtrade/trading/market_order/v1/service_options_meshpy.py +0 -65
  155. meshtrade/wallet/account/v1/service_options_meshpy.py +0 -65
  156. meshtrade-1.0.1.dist-info/RECORD +0 -191
  157. /meshtrade/{option/v1/method_type_pb2_grpc.py → market_data/price/v1/price_pb2_grpc.py} +0 -0
  158. /meshtrade/{reporting/income_report/v1/disclaimer_pb2_grpc.py → option/method_options/v1/method_options_pb2_grpc.py} +0 -0
  159. /meshtrade/reporting/{income_report/v1/entry_pb2_grpc.py → account_report/v1/account_report_pb2_grpc.py} +0 -0
  160. /meshtrade/reporting/{income_report → account_report}/v1/disclaimer_pb2.pyi +0 -0
  161. /meshtrade/reporting/{income_report/v1/income_report_pb2_grpc.py → account_report/v1/disclaimer_pb2_grpc.py} +0 -0
  162. {meshtrade-1.0.1.dist-info → meshtrade-1.29.0.dist-info}/WHEEL +0 -0
  163. {meshtrade-1.0.1.dist-info → meshtrade-1.29.0.dist-info}/top_level.txt +0 -0
@@ -1,170 +0,0 @@
1
- # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
- """Client and server classes corresponding to protobuf-defined services."""
3
- import grpc
4
-
5
- from meshtrade.reporting.income_report.v1 import income_report_pb2 as meshtrade_dot_reporting_dot_income__report_dot_v1_dot_income__report__pb2
6
- from meshtrade.reporting.income_report.v1 import service_pb2 as meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2
7
-
8
-
9
- class IncomeReportServiceStub(object):
10
- """
11
- IncomeReportService manages income report generation and export.
12
-
13
- This service allows clients to retrieve structured income reports
14
- and download them as Excel files. Reports are generated for a
15
- specified account over a given time range and denominated in
16
- a selected reporting currency.
17
-
18
- All operations require access to financial reporting permissions.
19
- """
20
-
21
- def __init__(self, channel):
22
- """Constructor.
23
-
24
- Args:
25
- channel: A grpc.Channel.
26
- """
27
- self.GetIncomeReport = channel.unary_unary(
28
- '/meshtrade.reporting.income_report.v1.IncomeReportService/GetIncomeReport',
29
- request_serializer=meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2.GetIncomeReportRequest.SerializeToString,
30
- response_deserializer=meshtrade_dot_reporting_dot_income__report_dot_v1_dot_income__report__pb2.IncomeReport.FromString,
31
- _registered_method=True)
32
- self.GetExcelIncomeReport = channel.unary_unary(
33
- '/meshtrade.reporting.income_report.v1.IncomeReportService/GetExcelIncomeReport',
34
- request_serializer=meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2.GetExcelIncomeReportRequest.SerializeToString,
35
- response_deserializer=meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2.GetExcelIncomeReportResponse.FromString,
36
- _registered_method=True)
37
-
38
-
39
- class IncomeReportServiceServicer(object):
40
- """
41
- IncomeReportService manages income report generation and export.
42
-
43
- This service allows clients to retrieve structured income reports
44
- and download them as Excel files. Reports are generated for a
45
- specified account over a given time range and denominated in
46
- a selected reporting currency.
47
-
48
- All operations require access to financial reporting permissions.
49
- """
50
-
51
- def GetIncomeReport(self, request, context):
52
- """
53
- Retrieves a structured income report for a specific account and time range.
54
-
55
- Parameters:
56
- - account_num: Unique account identifier
57
- - from: Start timestamp for the report period
58
- - to: End timestamp for the report period
59
- - reporting_currency_token: Token in which report values are denominated
60
-
61
- Returns:
62
- - GetIncomeReportResponse: Structured income report with earnings breakdown
63
- """
64
- context.set_code(grpc.StatusCode.UNIMPLEMENTED)
65
- context.set_details('Method not implemented!')
66
- raise NotImplementedError('Method not implemented!')
67
-
68
- def GetExcelIncomeReport(self, request, context):
69
- """
70
- Exports an income report to Excel format for download.
71
-
72
- Parameters:
73
- - account_num: Unique account identifier
74
- - from: Start timestamp for the report period
75
- - to: End timestamp for the report period
76
- - reporting_currency_token: Token in which report values are denominated
77
-
78
- Returns:
79
- - GetExcelIncomeReportResponse: Base64-encoded Excel file containing the report
80
- """
81
- context.set_code(grpc.StatusCode.UNIMPLEMENTED)
82
- context.set_details('Method not implemented!')
83
- raise NotImplementedError('Method not implemented!')
84
-
85
-
86
- def add_IncomeReportServiceServicer_to_server(servicer, server):
87
- rpc_method_handlers = {
88
- 'GetIncomeReport': grpc.unary_unary_rpc_method_handler(
89
- servicer.GetIncomeReport,
90
- request_deserializer=meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2.GetIncomeReportRequest.FromString,
91
- response_serializer=meshtrade_dot_reporting_dot_income__report_dot_v1_dot_income__report__pb2.IncomeReport.SerializeToString,
92
- ),
93
- 'GetExcelIncomeReport': grpc.unary_unary_rpc_method_handler(
94
- servicer.GetExcelIncomeReport,
95
- request_deserializer=meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2.GetExcelIncomeReportRequest.FromString,
96
- response_serializer=meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2.GetExcelIncomeReportResponse.SerializeToString,
97
- ),
98
- }
99
- generic_handler = grpc.method_handlers_generic_handler(
100
- 'meshtrade.reporting.income_report.v1.IncomeReportService', rpc_method_handlers)
101
- server.add_generic_rpc_handlers((generic_handler,))
102
- server.add_registered_method_handlers('meshtrade.reporting.income_report.v1.IncomeReportService', rpc_method_handlers)
103
-
104
-
105
- # This class is part of an EXPERIMENTAL API.
106
- class IncomeReportService(object):
107
- """
108
- IncomeReportService manages income report generation and export.
109
-
110
- This service allows clients to retrieve structured income reports
111
- and download them as Excel files. Reports are generated for a
112
- specified account over a given time range and denominated in
113
- a selected reporting currency.
114
-
115
- All operations require access to financial reporting permissions.
116
- """
117
-
118
- @staticmethod
119
- def GetIncomeReport(request,
120
- target,
121
- options=(),
122
- channel_credentials=None,
123
- call_credentials=None,
124
- insecure=False,
125
- compression=None,
126
- wait_for_ready=None,
127
- timeout=None,
128
- metadata=None):
129
- return grpc.experimental.unary_unary(
130
- request,
131
- target,
132
- '/meshtrade.reporting.income_report.v1.IncomeReportService/GetIncomeReport',
133
- meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2.GetIncomeReportRequest.SerializeToString,
134
- meshtrade_dot_reporting_dot_income__report_dot_v1_dot_income__report__pb2.IncomeReport.FromString,
135
- options,
136
- channel_credentials,
137
- insecure,
138
- call_credentials,
139
- compression,
140
- wait_for_ready,
141
- timeout,
142
- metadata,
143
- _registered_method=True)
144
-
145
- @staticmethod
146
- def GetExcelIncomeReport(request,
147
- target,
148
- options=(),
149
- channel_credentials=None,
150
- call_credentials=None,
151
- insecure=False,
152
- compression=None,
153
- wait_for_ready=None,
154
- timeout=None,
155
- metadata=None):
156
- return grpc.experimental.unary_unary(
157
- request,
158
- target,
159
- '/meshtrade.reporting.income_report.v1.IncomeReportService/GetExcelIncomeReport',
160
- meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2.GetExcelIncomeReportRequest.SerializeToString,
161
- meshtrade_dot_reporting_dot_income__report_dot_v1_dot_service__pb2.GetExcelIncomeReportResponse.FromString,
162
- options,
163
- channel_credentials,
164
- insecure,
165
- call_credentials,
166
- compression,
167
- wait_for_ready,
168
- timeout,
169
- metadata,
170
- _registered_method=True)
@@ -1,65 +0,0 @@
1
- # Code generated by protoc-gen-meshpy. DO NOT EDIT.
2
- # source: meshtrade/trading/limit_order/v1/service.proto
3
-
4
- """
5
- Configuration options for LimitOrderService gRPC service.
6
- This module provides a clean, extensible way to configure the service with optional
7
- parameters while maintaining backward compatibility and readability.
8
- """
9
-
10
- from datetime import timedelta
11
-
12
-
13
- class ServiceOptions:
14
- """Configuration options for LimitOrderService gRPC service.
15
-
16
- This class provides a clean, extensible way to configure the service with optional
17
- parameters while maintaining backward compatibility and readability.
18
- """
19
-
20
- def __init__(
21
- self,
22
- tls: bool = True,
23
- url: str | None = None,
24
- port: int | None = None,
25
- api_key: str | None = None,
26
- group: str | None = None,
27
- timeout: timedelta = timedelta(seconds=30),
28
- ):
29
- """Initialize service options.
30
-
31
- Args:
32
- tls: Whether to use TLS encryption for the gRPC connection.
33
- When True, establishes a secure connection using TLS.
34
- When False, uses an insecure connection.
35
- Default: True (secure connection)
36
-
37
- url: The server hostname or IP address (e.g., "api.example.com", "localhost").
38
- Default: Uses DEFAULT_GRPC_URL from common module
39
-
40
- port: The server port number (e.g., 443 for HTTPS, 8080 for development).
41
- Default: Uses DEFAULT_GRPC_PORT from common module
42
-
43
- api_key: The API key string (without "Bearer " prefix) for authentication.
44
- The API key will be sent as a Bearer token in the Authorization header.
45
- This is the primary authentication method for service-to-service communication.
46
-
47
- group: The group resource name in format groups/{group_id} required for all API requests.
48
- The group determines the authorization context for operations
49
- and is sent as an "x-group" header with every request.
50
-
51
- timeout: The default timeout for all gRPC method calls.
52
- This timeout applies to individual method calls and helps prevent hanging requests.
53
- If a request takes longer than the specified timeout, it will be cancelled.
54
- Default: 30 seconds
55
- """
56
- self.tls = tls
57
- self.url = url
58
- self.port = port
59
- self.api_key = api_key
60
- self.group = group
61
- self.timeout = timeout
62
-
63
-
64
- # Create alias to match expected exports
65
- ClientOptions = ServiceOptions
@@ -1,65 +0,0 @@
1
- # Code generated by protoc-gen-meshpy. DO NOT EDIT.
2
- # source: meshtrade/trading/market_order/v1/service.proto
3
-
4
- """
5
- Configuration options for MarketOrderService gRPC service.
6
- This module provides a clean, extensible way to configure the service with optional
7
- parameters while maintaining backward compatibility and readability.
8
- """
9
-
10
- from datetime import timedelta
11
-
12
-
13
- class ServiceOptions:
14
- """Configuration options for MarketOrderService gRPC service.
15
-
16
- This class provides a clean, extensible way to configure the service with optional
17
- parameters while maintaining backward compatibility and readability.
18
- """
19
-
20
- def __init__(
21
- self,
22
- tls: bool = True,
23
- url: str | None = None,
24
- port: int | None = None,
25
- api_key: str | None = None,
26
- group: str | None = None,
27
- timeout: timedelta = timedelta(seconds=30),
28
- ):
29
- """Initialize service options.
30
-
31
- Args:
32
- tls: Whether to use TLS encryption for the gRPC connection.
33
- When True, establishes a secure connection using TLS.
34
- When False, uses an insecure connection.
35
- Default: True (secure connection)
36
-
37
- url: The server hostname or IP address (e.g., "api.example.com", "localhost").
38
- Default: Uses DEFAULT_GRPC_URL from common module
39
-
40
- port: The server port number (e.g., 443 for HTTPS, 8080 for development).
41
- Default: Uses DEFAULT_GRPC_PORT from common module
42
-
43
- api_key: The API key string (without "Bearer " prefix) for authentication.
44
- The API key will be sent as a Bearer token in the Authorization header.
45
- This is the primary authentication method for service-to-service communication.
46
-
47
- group: The group resource name in format groups/{group_id} required for all API requests.
48
- The group determines the authorization context for operations
49
- and is sent as an "x-group" header with every request.
50
-
51
- timeout: The default timeout for all gRPC method calls.
52
- This timeout applies to individual method calls and helps prevent hanging requests.
53
- If a request takes longer than the specified timeout, it will be cancelled.
54
- Default: 30 seconds
55
- """
56
- self.tls = tls
57
- self.url = url
58
- self.port = port
59
- self.api_key = api_key
60
- self.group = group
61
- self.timeout = timeout
62
-
63
-
64
- # Create alias to match expected exports
65
- ClientOptions = ServiceOptions
@@ -1,65 +0,0 @@
1
- # Code generated by protoc-gen-meshpy. DO NOT EDIT.
2
- # source: meshtrade/wallet/account/v1/service.proto
3
-
4
- """
5
- Configuration options for AccountService gRPC service.
6
- This module provides a clean, extensible way to configure the service with optional
7
- parameters while maintaining backward compatibility and readability.
8
- """
9
-
10
- from datetime import timedelta
11
-
12
-
13
- class ServiceOptions:
14
- """Configuration options for AccountService gRPC service.
15
-
16
- This class provides a clean, extensible way to configure the service with optional
17
- parameters while maintaining backward compatibility and readability.
18
- """
19
-
20
- def __init__(
21
- self,
22
- tls: bool = True,
23
- url: str | None = None,
24
- port: int | None = None,
25
- api_key: str | None = None,
26
- group: str | None = None,
27
- timeout: timedelta = timedelta(seconds=30),
28
- ):
29
- """Initialize service options.
30
-
31
- Args:
32
- tls: Whether to use TLS encryption for the gRPC connection.
33
- When True, establishes a secure connection using TLS.
34
- When False, uses an insecure connection.
35
- Default: True (secure connection)
36
-
37
- url: The server hostname or IP address (e.g., "api.example.com", "localhost").
38
- Default: Uses DEFAULT_GRPC_URL from common module
39
-
40
- port: The server port number (e.g., 443 for HTTPS, 8080 for development).
41
- Default: Uses DEFAULT_GRPC_PORT from common module
42
-
43
- api_key: The API key string (without "Bearer " prefix) for authentication.
44
- The API key will be sent as a Bearer token in the Authorization header.
45
- This is the primary authentication method for service-to-service communication.
46
-
47
- group: The group resource name in format groups/{group_id} required for all API requests.
48
- The group determines the authorization context for operations
49
- and is sent as an "x-group" header with every request.
50
-
51
- timeout: The default timeout for all gRPC method calls.
52
- This timeout applies to individual method calls and helps prevent hanging requests.
53
- If a request takes longer than the specified timeout, it will be cancelled.
54
- Default: 30 seconds
55
- """
56
- self.tls = tls
57
- self.url = url
58
- self.port = port
59
- self.api_key = api_key
60
- self.group = group
61
- self.timeout = timeout
62
-
63
-
64
- # Create alias to match expected exports
65
- ClientOptions = ServiceOptions
@@ -1,191 +0,0 @@
1
- buf/validate/validate_pb2.py,sha256=o1fP90GZz_DPMchPV02HBcVus2k6HzqgBDnbBlFfA3Q,153929
2
- buf/validate/validate_pb2.pyi,sha256=fUPIBbzonV2mNAClFBYe0BBALoKeFoR_oCYordTjyy0,30793
3
- meshtrade/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- meshtrade/common/__init__.py,sha256=VETjILxahtkNgHygm5fvRmVAm7faL4DWp3SRmSnIzks,615
5
- meshtrade/common/config.py,sha256=E-71swWWX8EPjmjHpLl0i5eb6TcG_Ejf85qG3fEp_1E,904
6
- meshtrade/common/grpc_client.py,sha256=xb-E1uFSH_gC1P8CMn-oRzASgcHHfvGoH5wBR0bzYeU,6950
7
- meshtrade/compliance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- meshtrade/compliance/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- meshtrade/compliance/client/v1/__init__.py,sha256=2bxbtTqqNQE18mQVovbeeY6JBjBbgT8uS9lr4qMuOMo,3045
10
- meshtrade/compliance/client/v1/client_pb2.py,sha256=HyRGFKv3ESSh7txZOMpHqTE8ayWmM01LlMGD8W_qR4w,3633
11
- meshtrade/compliance/client/v1/client_pb2.pyi,sha256=TTRVskF2-GWz9vpgYG7DLQ9RTpBSS07wWIAPkte5IeM,2598
12
- meshtrade/compliance/client/v1/client_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
13
- meshtrade/compliance/client/v1/company_pb2.py,sha256=JuYz6b5z5TriY27uxgkxorWg2CCMx5oJNeJPiSEJi0g,5905
14
- meshtrade/compliance/client/v1/company_pb2.pyi,sha256=vVAZY0eLTImihbMKvI8Ojfw60Cux3yGehPXKEfyfcLg,6551
15
- meshtrade/compliance/client/v1/company_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
16
- meshtrade/compliance/client/v1/company_representative_pb2.py,sha256=rGLnPF5nbXhcAZOtgvWXkqVEPvujR6rNEXl5_A773UE,3145
17
- meshtrade/compliance/client/v1/company_representative_pb2.pyi,sha256=jlmg_p6kkDzcSrJiuXIr9Km4JvO44-OGvFnvrCM2ufQ,1925
18
- meshtrade/compliance/client/v1/company_representative_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
19
- meshtrade/compliance/client/v1/company_representative_role_pb2.py,sha256=i2Nvo7KfUgGBV05NfGGKxdcDA4sga9XXXYrHQ2E2bwE,2300
20
- meshtrade/compliance/client/v1/company_representative_role_pb2.pyi,sha256=-1G5XsOHquw6VXtdTzEAcurclTZm-Odm5rQA110gkk8,1697
21
- meshtrade/compliance/client/v1/company_representative_role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
22
- meshtrade/compliance/client/v1/fund_pb2.py,sha256=7lw7-bjOWRCO3RXBIc4l1wS6-MCATvdMQh9nJPLR6Zw,2076
23
- meshtrade/compliance/client/v1/fund_pb2.pyi,sha256=am7O53ZrkOQSgAc2RbbbYPWhIpNQQKUeCUZpwY7bqqI,1137
24
- meshtrade/compliance/client/v1/fund_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
25
- meshtrade/compliance/client/v1/identification_document_type_pb2.py,sha256=ZbrPhxFcD7bWh2esF6zhr6_u7JG1eknjSOZVW27krPI,2071
26
- meshtrade/compliance/client/v1/identification_document_type_pb2.pyi,sha256=Sl7t5fW9oC04jMWpYwKFZ-LsIJoLpG0NdJE2JkOxxxk,1094
27
- meshtrade/compliance/client/v1/identification_document_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
28
- meshtrade/compliance/client/v1/industry_classification_pb2.py,sha256=TXK_dcK-oKegrSqYldHugkcas88B4c4TvsndYNa_OOc,2223
29
- meshtrade/compliance/client/v1/industry_classification_pb2.pyi,sha256=sWu7pheba8b1cfwc3FBb_IKwsBMTb9OjB7bqNl3oLbU,1364
30
- meshtrade/compliance/client/v1/industry_classification_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
31
- meshtrade/compliance/client/v1/natural_person_connection_type_pb2.py,sha256=wGK_ofoXRLjt3cMAk_6RREvsLtQTPi8PoxVkxm5fLHs,2748
32
- meshtrade/compliance/client/v1/natural_person_connection_type_pb2.pyi,sha256=BXVfJJnIzy6P5UBGKFQogIvLd62LIdljFWo5CMDXXV4,2908
33
- meshtrade/compliance/client/v1/natural_person_connection_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
34
- meshtrade/compliance/client/v1/natural_person_pb2.py,sha256=ekbYSGLr6p7zZ8FLTRjSxdDiCoYjWM5pnpMf-FOmVMU,4226
35
- meshtrade/compliance/client/v1/natural_person_pb2.pyi,sha256=sjtLLxbCQWsXUprMzzVGrplrkUK_yACweEDhc5VjOwI,3800
36
- meshtrade/compliance/client/v1/natural_person_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
37
- meshtrade/compliance/client/v1/pep_status_pb2.py,sha256=nyLNhJbGhrWEGN5Y6YIVm3a3OORLiTyl4TXJ5n81iFE,1817
38
- meshtrade/compliance/client/v1/pep_status_pb2.pyi,sha256=jBJjLEjA16K53Ss85Yab_KtrRG_2lWxFYcMJ0QuQpUk,622
39
- meshtrade/compliance/client/v1/pep_status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
40
- meshtrade/compliance/client/v1/service_meshpy.py,sha256=oLD6eh6gsSxsDA8tl1oCMpe4DK2zJlpKMAF0m2KVXw4,6859
41
- meshtrade/compliance/client/v1/service_options_meshpy.py,sha256=7h5Pt-5G50NRvNcsqo3BFVs7qfnRuBlG7h-f370HjX0,2544
42
- meshtrade/compliance/client/v1/service_pb2.py,sha256=E7z_nwBwuCvGHtp_ewddCEAgMTkV61AMAnXzY5oTuWM,4105
43
- meshtrade/compliance/client/v1/service_pb2.pyi,sha256=0EBxdT7VlxVWiMDVAPBRq3TAqLqimjDIUAf4oOed9J0,1383
44
- meshtrade/compliance/client/v1/service_pb2_grpc.py,sha256=_gDQ7jNUpTbjh7YGhgDFLwq4_Y0rgmzCMlNPW-s8JWI,8438
45
- meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.py,sha256=zhCWGPuHOz8wAfgjvWZHyTD9o6fskwQv22XmaHl26Tg,3162
46
- meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.pyi,sha256=c2RuUjrykzgnuiIfn1i-ClFdGocEhZjnFolNKFzn7Ac,3883
47
- meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
48
- meshtrade/compliance/client/v1/tax_residency_pb2.py,sha256=R2ZiOT8LW05DxemjFuEV75471PP9tLIkBYdk0KVpI_g,1766
49
- meshtrade/compliance/client/v1/tax_residency_pb2.pyi,sha256=J2o8MGBTMY40_mlesQHwayM_ijx-MGPQ3AJKoaIWH2c,502
50
- meshtrade/compliance/client/v1/tax_residency_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
51
- meshtrade/compliance/client/v1/trust_pb2.py,sha256=ruHHjn4dnwACOpJBfOVvzPwB86e8sH14jOetr0wKs2c,2080
52
- meshtrade/compliance/client/v1/trust_pb2.pyi,sha256=9gxetO-sEGVEvg3OpsuI7--MTd32V0nH63BwAURVdpg,1138
53
- meshtrade/compliance/client/v1/trust_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
54
- meshtrade/compliance/client/v1/verification_status_pb2.py,sha256=I9nSlMztg1wJ-2BXEsyntZSu60qhypdFK9AszJ47Wgs,1962
55
- meshtrade/compliance/client/v1/verification_status_pb2.pyi,sha256=kqP24po3o2Ks8HWAoQ-tLlMirCJCKwxlQlWJXWkRmAI,880
56
- meshtrade/compliance/client/v1/verification_status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
57
- meshtrade/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- meshtrade/iam/api_user/v1/__init__.py,sha256=aCPxJxlwo3TRlVvyTx_QqgJcufQFV-48VIfMJgR0tIk,2969
59
- meshtrade/iam/api_user/v1/api_credentials.py,sha256=apo3p_YcncNphbxLXegqoYh35bPydhjR-ULsZ7kj4D4,5272
60
- meshtrade/iam/api_user/v1/api_credentials_pb2.py,sha256=s5ToUuEU6xyIXqitzsbNyXqq0UyUNNd4scpsj3AqzCY,3616
61
- meshtrade/iam/api_user/v1/api_credentials_pb2.pyi,sha256=TRv0xnm4VJ62sCMz_utdLvQR_vNQqWH_wCE0mtF3ZsY,547
62
- meshtrade/iam/api_user/v1/api_credentials_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
63
- meshtrade/iam/api_user/v1/api_user_pb2.py,sha256=3-kUZrf1LT6QK214MlMhTRR4DIXgqXdGogS4mJhOvAE,4774
64
- meshtrade/iam/api_user/v1/api_user_pb2.pyi,sha256=s-62eSyhiTKpRcBb38iHLU9-K417RP6K7mJK76mVpV0,2307
65
- meshtrade/iam/api_user/v1/api_user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
66
- meshtrade/iam/api_user/v1/service.py,sha256=_7-LK9LDkKh7JOQHOryNBE1Xgr-DclAMO2QQhGoumUg,1827
67
- meshtrade/iam/api_user/v1/service_meshpy.py,sha256=hLkfRqm1NPll_GVLlCOXnAsJEQo888tNacnM4Fu6Po4,9315
68
- meshtrade/iam/api_user/v1/service_options_meshpy.py,sha256=hkWJmNCsNDQ_OBdwZBK_zAUgl-B9ZsddmcrPfF7PyZI,2541
69
- meshtrade/iam/api_user/v1/service_pb2.py,sha256=VUcxM629vCkz4nGoxLXfL3XK4rvvC1mbbmaIAPE3wxE,8298
70
- meshtrade/iam/api_user/v1/service_pb2.pyi,sha256=cmQuOBMR0C1IRB8CoAcri6YiGtaSjf7p7QmBHvX_bt4,2607
71
- meshtrade/iam/api_user/v1/service_pb2_grpc.py,sha256=rcATRQXzuusn0VxNlkFIKK0rC4YdqxyR_oXC1WaAJuY,19214
72
- meshtrade/iam/group/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- meshtrade/iam/group/v1/__init__.py,sha256=ROAaDtQDxNt7RHOfUlTmc4Oh5xoJo2x8UN-UPofIVuA,1969
74
- meshtrade/iam/group/v1/group_pb2.py,sha256=CiOEf0edDOEl4EnRNyJRElfZPG3Vb0nJG8jQW0HKjBg,1592
75
- meshtrade/iam/group/v1/group_pb2.pyi,sha256=hYHylacNV2llToNzhISbJ5GFXuGtZeEK95LHNnylK90,380
76
- meshtrade/iam/group/v1/group_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
77
- meshtrade/iam/group/v1/service_meshpy.py,sha256=wEwaMZeNdr-sYcxlUysCMpFuwn6NTONLdHkZK0Cfj9M,6832
78
- meshtrade/iam/group/v1/service_options_meshpy.py,sha256=04luV1eQlZ6yeJVdgl6XqR3mpaQyxc0XASfSQt_C0jY,2534
79
- meshtrade/iam/group/v1/service_pb2.py,sha256=RZLJDVkwJQevJdWYuGL96_R7bHGMRF0fU_WmNMwLsAE,4197
80
- meshtrade/iam/group/v1/service_pb2.pyi,sha256=iRJatuY5NV8VSi1qnntCEFH4liq8Y-Jd8814HTr8wgw,1603
81
- meshtrade/iam/group/v1/service_pb2_grpc.py,sha256=1eCMHXbtrCxokUUoWkRVpL_xpzxTTYqqg9NIZ1Hm1OA,7001
82
- meshtrade/iam/role/v1/__init__.py,sha256=xW5_jhEKdb9xYNri0thNpvXAsEa1cqPmjI0XS8BPvQM,1527
83
- meshtrade/iam/role/v1/role.py,sha256=4uIWnaM5RcrTUlkv8NLHrjPU9AonoPJotdQ496IQnLM,795
84
- meshtrade/iam/role/v1/role_pb2.py,sha256=DRCDmkZHLtOMTrW9dRAWazAVzxd22stCwffQjet_nz0,2755
85
- meshtrade/iam/role/v1/role_pb2.pyi,sha256=yOX0Niw910j-7aJz8Nc12v8BcQRh9yQraZsUpQc7UJo,1826
86
- meshtrade/iam/role/v1/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
87
- meshtrade/iam/user/v1/__init__.py,sha256=Of7OG_BzVdVqnmSFdu0b_8s6JSXsDrQ1SCUdNW2cO5M,1762
88
- meshtrade/iam/user/v1/service_meshpy.py,sha256=a_1TSUDBD4WXfsfDG1uWN05ZD_69_uEJD0ymwSNpaC0,5672
89
- meshtrade/iam/user/v1/service_options_meshpy.py,sha256=KPdpKUBF0iZsW6TshxgI6j0SNl7t-iLOXlhnYP3IlJ0,2531
90
- meshtrade/iam/user/v1/service_pb2.py,sha256=XC73hKhxgNJPtyysUt35xZ3Jg_uvYmGjH7n2w2bIwN0,4431
91
- meshtrade/iam/user/v1/service_pb2.pyi,sha256=X2VRSPoakeecULYt3C2XI7qAjaPd5MjlUhu6mwadigU,868
92
- meshtrade/iam/user/v1/service_pb2_grpc.py,sha256=wUyNL1jVc4YoACrHMZ2qyNqk3CBY0tgJ1JnfKS5qilo,3185
93
- meshtrade/iam/user/v1/user_pb2.py,sha256=gL3P-l3rrCwLKZmG01dVMv80A7CVc2FxCs5yIxVfex4,1624
94
- meshtrade/iam/user/v1/user_pb2.pyi,sha256=tlvJ9Z12ucdR9truPTpxVPJ2DEYBrhhgyev-b1z6YpI,640
95
- meshtrade/iam/user/v1/user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
96
- meshtrade/ledger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
- meshtrade/ledger/transaction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
- meshtrade/ledger/transaction/v1/__init__.py,sha256=LGIlhzpgewn0u_wQ_IH-jHJqs4Af_BsxKshYnnmIWyU,1507
99
- meshtrade/ledger/transaction/v1/transaction_action_pb2.py,sha256=_BumHE2VF1Xs31u6iVfn-ogaIx3XM_TtiUdtfSh_5tk,2060
100
- meshtrade/ledger/transaction/v1/transaction_action_pb2.pyi,sha256=h85ohgkpEu2K6qP4Ge66PowcU2FNaEjXVLlOwff7Log,1067
101
- meshtrade/ledger/transaction/v1/transaction_action_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
102
- meshtrade/ledger/transaction/v1/transaction_state_pb2.py,sha256=lhgS7XbQnQFTUe882i1Pb7oq0gbp8XNJq1VqYw1TyB8,2112
103
- meshtrade/ledger/transaction/v1/transaction_state_pb2.pyi,sha256=pl93a9UVYiVEPPrF1SuKUz47CDjytstLLROZ-YpvR8Y,1205
104
- meshtrade/ledger/transaction/v1/transaction_state_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
105
- meshtrade/option/v1/__init__.py,sha256=B8U0UVf7gUA3D5si5m8H5il7Hy_-KLeLaeGtizQVVJc,1405
106
- meshtrade/option/v1/method_type_pb2.py,sha256=zUEIrZTPEh2ZTwvQlh9W6_be5i4e211D7EYXrHPxJ58,1937
107
- meshtrade/option/v1/method_type_pb2.pyi,sha256=dR04xeb0M19uqhXb8veCxlWylJ7G_G32-mkuzztGaQw,680
108
- meshtrade/option/v1/method_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
109
- meshtrade/reporting/income_report/v1/__init__.py,sha256=qe-9R7JcuNMf3C6RPHHVTpWCTVUPI_yHr6GQXypfOnU,2099
110
- meshtrade/reporting/income_report/v1/disclaimer_pb2.py,sha256=speGv3q1ZQ-TKSuOUIQbo0Q4NoLXWA7VsrgXTZNioh0,1820
111
- meshtrade/reporting/income_report/v1/disclaimer_pb2.pyi,sha256=bQfBKSVLo5flu6ZO36weavNoRdF9OgO293GpxdeLQic,504
112
- meshtrade/reporting/income_report/v1/disclaimer_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
113
- meshtrade/reporting/income_report/v1/entry_pb2.py,sha256=zc-tAMwVnYpkypaFYLMkR8CQjhLB6m2X7DmOmG5uGeY,2862
114
- meshtrade/reporting/income_report/v1/entry_pb2.pyi,sha256=BNyF7nnbP9bn77oaK3gZtHnuQtl4Ddo5wnr95ZnCh_Y,1949
115
- meshtrade/reporting/income_report/v1/entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
116
- meshtrade/reporting/income_report/v1/income_report_pb2.py,sha256=uilAj-ubdxqnlpZGIPBRRGa2nrPip5Fx0C2YqP_P850,3579
117
- meshtrade/reporting/income_report/v1/income_report_pb2.pyi,sha256=KKqRXI25p22UsQraZNNeUYeJQHfeFRHhV-Q5ymCwjrc,2624
118
- meshtrade/reporting/income_report/v1/income_report_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
119
- meshtrade/reporting/income_report/v1/service_meshpy.py,sha256=OrS0IvshVs-kycQhZXmFH1ffnbXCC1qxQLQElfraUVo,6543
120
- meshtrade/reporting/income_report/v1/service_options_meshpy.py,sha256=IaqBrM2I7Fzlx3b3Ae_457hX_Jt0wPc1HN5Vu8BjKdg,2562
121
- meshtrade/reporting/income_report/v1/service_pb2.py,sha256=JLf0YlVMe9if99iRriq8S1KK1uKo2yBnaDbmWXlPNf4,5621
122
- meshtrade/reporting/income_report/v1/service_pb2.pyi,sha256=Hbw74AT3awpEHPZ81NonqxFHk8I2F0uwGZmhArUiLQ0,1700
123
- meshtrade/reporting/income_report/v1/service_pb2_grpc.py,sha256=ZhfhVsqK9LNIKXeeegl-hd3nO9kTcSmWcZYYJtu-PHI,7463
124
- meshtrade/trading/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
- meshtrade/trading/limit_order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
- meshtrade/trading/limit_order/v1/__init__.py,sha256=1XwHm6cYfkFdWr1wf-ukjnvoYA-uhh86jjzTBB5xzQI,1818
127
- meshtrade/trading/limit_order/v1/limit_order_pb2.py,sha256=6hXZ2N2EQvxKfbYkSGTiXT62rRIgDbnEy8qoFk7evgE,1720
128
- meshtrade/trading/limit_order/v1/limit_order_pb2.pyi,sha256=qqW6yIlOa146Cr7vuiHBLd8DSOvhhUy3CwJJeC52zFU,393
129
- meshtrade/trading/limit_order/v1/limit_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
130
- meshtrade/trading/limit_order/v1/service_meshpy.py,sha256=ZjqVEjrrSObzCDgyzxDdD4dL1ec8wSI2yAKG-lQKxAM,5794
131
- meshtrade/trading/limit_order/v1/service_options_meshpy.py,sha256=B8H-GWdi7mrnwLaQ_TP6CSaRyFtSIEe9mGZuHjapvEY,2554
132
- meshtrade/trading/limit_order/v1/service_pb2.py,sha256=ApcxidLeLOSLxI3AWSb5cH6Y3z5-IwbRGq9Kd7UYMqY,2807
133
- meshtrade/trading/limit_order/v1/service_pb2.pyi,sha256=L9ZgLzBDaxqIsAYABtVlrY_qe0Co0Ht99USR_307SXc,608
134
- meshtrade/trading/limit_order/v1/service_pb2_grpc.py,sha256=ALpSeJl1-3r7jKkcWU7g_QOtks_ZZ7ciVbJgdHvew5k,3390
135
- meshtrade/trading/market_order/v1/__init__.py,sha256=SULATh4Gddsa6A8959ZYXFgE7acwewAo0jx_9tHZ9MM,1830
136
- meshtrade/trading/market_order/v1/market_order_pb2.py,sha256=miDtNnqxWAbZ_Ub9Oqo8_GsOLFwWjEeNz3JSzzFIpys,1740
137
- meshtrade/trading/market_order/v1/market_order_pb2.pyi,sha256=NaWtrs1iNO8jY5XQRvS1ex3skmVJFTGxdDHdknIDvfI,394
138
- meshtrade/trading/market_order/v1/market_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
139
- meshtrade/trading/market_order/v1/service_meshpy.py,sha256=oruk-y11EhY22pOFoZEpqhudmtYey61TjHq3nKtzObg,5826
140
- meshtrade/trading/market_order/v1/service_options_meshpy.py,sha256=Ido0GNgd1FSpqzjj-tknXMwYot6g8tAV5fa3oIzYVmk,2557
141
- meshtrade/trading/market_order/v1/service_pb2.py,sha256=tB6aQqnDwAg8Ogya2AYPKs_6YXgdIe_hslAKd2SxQSA,2841
142
- meshtrade/trading/market_order/v1/service_pb2.pyi,sha256=MIGhHksXG6hw6N-afJEEAR3fUqKoNU2EdfffDcLMO3c,612
143
- meshtrade/trading/market_order/v1/service_pb2_grpc.py,sha256=MvjbM6EO7A4jFr8e68umjIIxw5swzoVpuxrLvmxr7es,3430
144
- meshtrade/type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- meshtrade/type/v1/__init__.py,sha256=eqJu43Vhe1MWwJ5iMTvAK6uoFQEFdrs80gP0_EzW1Pk,3521
146
- meshtrade/type/v1/address_pb2.py,sha256=uZQcUd_Nr1gQrWMZz6dmbcOvqMPuJ-T6daQmeJzI-jw,1858
147
- meshtrade/type/v1/address_pb2.pyi,sha256=A1PdvzCZpd-JKQhTwwQ3gz2Kw9mOkH3S1imSm78_4Uw,1107
148
- meshtrade/type/v1/address_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
149
- meshtrade/type/v1/amount.py,sha256=pBQqWAU88r2DXyXyD1hmxRVVXxEyGOD0u5SQykuC-Vs,3658
150
- meshtrade/type/v1/amount_pb2.py,sha256=ZU1JWZNZ98MXEgfqeXImxApl-n2SUfQnDHlz4vt1AkI,1918
151
- meshtrade/type/v1/amount_pb2.pyi,sha256=uI8D2Ch66e2hvzQCA5SARE8lrGdU_BYby__P_H-QwvY,749
152
- meshtrade/type/v1/amount_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
153
- meshtrade/type/v1/contact_details_pb2.py,sha256=QHbiNCwaAZhWWOy5ATXPSQbSY8nLJaretF2kPFVlAyk,2070
154
- meshtrade/type/v1/contact_details_pb2.pyi,sha256=Wk9EFWI_rPuuOvPdKsW9Qo0_c8uNg61U-w__YwPQD9E,1292
155
- meshtrade/type/v1/contact_details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
156
- meshtrade/type/v1/date.py,sha256=kUtGimBRyxmoVqktjF3ThMiK9n8ifrLVgtNxZhIbs_o,10629
157
- meshtrade/type/v1/date_pb2.py,sha256=cQPlctiZ5pDD6vqnmDiLhQ63NZ8iEXVb_yf01XZZHe4,1648
158
- meshtrade/type/v1/date_pb2.pyi,sha256=knrar5r3GE7weH87Ie0IWv-jN57W3EJN6pTJeXGGPTw,554
159
- meshtrade/type/v1/date_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
160
- meshtrade/type/v1/decimal_built_in_conversions.py,sha256=_T6JfN_3YErRtRLGD3-z2BWJYjasEKue03nsbDybJv8,910
161
- meshtrade/type/v1/decimal_pb2.py,sha256=8FEO-YAJe3KAZ_5v0XVStapGQ0E-RLEYawinSfld2qM,1572
162
- meshtrade/type/v1/decimal_pb2.pyi,sha256=8qhL7jqAhoYJNzTpEiEPKDSRAYSWgvKd8altyVLISFg,386
163
- meshtrade/type/v1/decimal_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
164
- meshtrade/type/v1/ledger.py,sha256=Nh8ySOE2G78oWoJ0PF2_7QahF6Lbsy4K4vymO0by_3Y,719
165
- meshtrade/type/v1/ledger_pb2.py,sha256=QTJWEH9XAkM-aKorcUKEqf4OcDv2UwDfBOYZMx76wng,1813
166
- meshtrade/type/v1/ledger_pb2.pyi,sha256=r3emyUDafn9p3XTzwpnM0gzLiwrmgXYTp8GwZxw8_FM,801
167
- meshtrade/type/v1/ledger_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
168
- meshtrade/type/v1/sorting_pb2.py,sha256=vpMAo_3ImcSEk5oiymF6men8MUpZxnn_KXV71lOELKY,1663
169
- meshtrade/type/v1/sorting_pb2.pyi,sha256=Ki-91U-rzKZ9dsTHqjeSLN6x4vgsa-UxUNDd0nJo4fk,558
170
- meshtrade/type/v1/sorting_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
171
- meshtrade/type/v1/time_of_day.py,sha256=jJSf5WoCv5oSDy1FtJ8rcSgUEtZ2ro9gUDsqwsqPArw,7990
172
- meshtrade/type/v1/time_of_day_pb2.py,sha256=zScN4lbJxZsoLWM5IUU5rOP3ACOqbaP5wSgD1e0rclc,1729
173
- meshtrade/type/v1/time_of_day_pb2.pyi,sha256=VJqfuglQos5-kAHBpWVxwDz4SV5aZ6-EyUFQaNl-VyM,679
174
- meshtrade/type/v1/time_of_day_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
175
- meshtrade/type/v1/token_pb2.py,sha256=72Od9JTmBrvpzXtC1X5_4NJd6CTlGN5gXS0KAj0GeF0,1804
176
- meshtrade/type/v1/token_pb2.pyi,sha256=vsEKtXtIo5xisr1I4oqxcaMMYyfV-GBMM_f9l8cRxlc,687
177
- meshtrade/type/v1/token_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
178
- meshtrade/wallet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
- meshtrade/wallet/account/v1/__init__.py,sha256=6zHLLKaNdJTVPiwt_AcqeEWl-6YbsG6_LbzSq5AUkgM,2063
180
- meshtrade/wallet/account/v1/account_pb2.py,sha256=Mvpo6MNpQ0au2SA1dT9Eg1_Kb6pnnI2UMWMpgo1k9kU,1657
181
- meshtrade/wallet/account/v1/account_pb2.pyi,sha256=GN2bT5Ld2B0KyQUmkDQjHfeXEjLSwfuIE2j70jSMIJE,382
182
- meshtrade/wallet/account/v1/account_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
183
- meshtrade/wallet/account/v1/service_meshpy.py,sha256=qdZWJj9fLsDEdMBVtiIjDoWq8LAt1-ES_dh9jmLgYoI,7520
184
- meshtrade/wallet/account/v1/service_options_meshpy.py,sha256=ROVvFr-sub9TMtzHO-s2GkNVvzkjf0Hh7Gw9nO-cljg,2543
185
- meshtrade/wallet/account/v1/service_pb2.py,sha256=4huN7EQVoNpqMf5UK9iIyAKUGhWPj-a9OdC2soqXxlQ,5208
186
- meshtrade/wallet/account/v1/service_pb2.pyi,sha256=PL7ANYkhNYTrC8fXv9Pjfz2x-IeUj8HnytTAn4wnvNU,2132
187
- meshtrade/wallet/account/v1/service_pb2_grpc.py,sha256=lTykth2v98aluqtqaID78HJ6dubXqI0ShpvfFmu3_pY,9480
188
- meshtrade-1.0.1.dist-info/METADATA,sha256=fB1HmcSoWBxGnJfv-CLRFhlIBMacFejg5dJ687bTgQ0,3006
189
- meshtrade-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
190
- meshtrade-1.0.1.dist-info/top_level.txt,sha256=NV0mf_yWXSvBwj2_q5aSz2hN5hQF0QypAiJwV4schJI,14
191
- meshtrade-1.0.1.dist-info/RECORD,,