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
@@ -8,7 +8,17 @@ from meshtrade.wallet.account.v1 import service_pb2 as meshtrade_dot_wallet_dot_
8
8
 
9
9
  class AccountServiceStub(object):
10
10
  """
11
- AccountService provides access to and management of wallet accounts.
11
+ AccountService manages ledger wallet accounts and their lifecycle operations (BETA).
12
+
13
+ This service provides comprehensive account management capabilities across multiple
14
+ ledger networks (Stellar, Solana, Bitcoin, Ethereum). Accounts serve as the
15
+ primary containers for holding and managing digital assets on the Mesh platform.
16
+
17
+ Key capabilities include account creation, opening on-chain, balance queries,
18
+ and account lifecycle management. All operations are scoped to the authenticated
19
+ group's hierarchy and require appropriate wallet domain permissions.
20
+
21
+ Note: This service is currently in BETA. Interface and functionality may change.
12
22
  """
13
23
 
14
24
  def __init__(self, channel):
@@ -22,11 +32,31 @@ class AccountServiceStub(object):
22
32
  request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CreateAccountRequest.SerializeToString,
23
33
  response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
24
34
  _registered_method=True)
35
+ self.UpdateAccount = channel.unary_unary(
36
+ '/meshtrade.wallet.account.v1.AccountService/UpdateAccount',
37
+ request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.UpdateAccountRequest.SerializeToString,
38
+ response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
39
+ _registered_method=True)
40
+ self.OpenAccount = channel.unary_unary(
41
+ '/meshtrade.wallet.account.v1.AccountService/OpenAccount',
42
+ request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountRequest.SerializeToString,
43
+ response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountResponse.FromString,
44
+ _registered_method=True)
45
+ self.AddSignatoryToAccount = channel.unary_unary(
46
+ '/meshtrade.wallet.account.v1.AccountService/AddSignatoryToAccount',
47
+ request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.AddSignatoryToAccountRequest.SerializeToString,
48
+ response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.AddSignatoryToAccountResponse.FromString,
49
+ _registered_method=True)
25
50
  self.GetAccount = channel.unary_unary(
26
51
  '/meshtrade.wallet.account.v1.AccountService/GetAccount',
27
52
  request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountRequest.SerializeToString,
28
53
  response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
29
54
  _registered_method=True)
55
+ self.GetAccountByNumber = channel.unary_unary(
56
+ '/meshtrade.wallet.account.v1.AccountService/GetAccountByNumber',
57
+ request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountByNumberRequest.SerializeToString,
58
+ response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
59
+ _registered_method=True)
30
60
  self.ListAccounts = channel.unary_unary(
31
61
  '/meshtrade.wallet.account.v1.AccountService/ListAccounts',
32
62
  request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsRequest.SerializeToString,
@@ -41,13 +71,59 @@ class AccountServiceStub(object):
41
71
 
42
72
  class AccountServiceServicer(object):
43
73
  """
44
- AccountService provides access to and management of wallet accounts.
74
+ AccountService manages ledger wallet accounts and their lifecycle operations (BETA).
75
+
76
+ This service provides comprehensive account management capabilities across multiple
77
+ ledger networks (Stellar, Solana, Bitcoin, Ethereum). Accounts serve as the
78
+ primary containers for holding and managing digital assets on the Mesh platform.
79
+
80
+ Key capabilities include account creation, opening on-chain, balance queries,
81
+ and account lifecycle management. All operations are scoped to the authenticated
82
+ group's hierarchy and require appropriate wallet domain permissions.
83
+
84
+ Note: This service is currently in BETA. Interface and functionality may change.
45
85
  """
46
86
 
47
87
  def CreateAccount(self, request, context):
48
88
  """
49
- Creates a new wallet account.
50
- This is a write operation restricted to administrative roles.
89
+ Creates a new account record in the system (off-chain).
90
+
91
+ The account is created in a pending state and must be explicitly opened
92
+ on the ledger using OpenAccount before it can receive funds or execute
93
+ transactions. Account ownership must match the executing context.
94
+ """
95
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
96
+ context.set_details('Method not implemented!')
97
+ raise NotImplementedError('Method not implemented!')
98
+
99
+ def UpdateAccount(self, request, context):
100
+ """
101
+ Updates an existing account's mutable metadata.
102
+
103
+ Only the display_name field can be modified. All other fields including
104
+ ownership, ledger, and account number are immutable after creation.
105
+ """
106
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
107
+ context.set_details('Method not implemented!')
108
+ raise NotImplementedError('Method not implemented!')
109
+
110
+ def OpenAccount(self, request, context):
111
+ """
112
+ Opens an account on the ledger.
113
+
114
+ Initializes the account on-chain, making it ready to receive deposits
115
+ and execute transactions. Returns the opened account and a transaction
116
+ reference for monitoring the ledger operation.
117
+ """
118
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
119
+ context.set_details('Method not implemented!')
120
+ raise NotImplementedError('Method not implemented!')
121
+
122
+ def AddSignatoryToAccount(self, request, context):
123
+ """
124
+ Adds the given user as a signatory to an account on the ledger.
125
+
126
+ Returns a transaction reference for monitoring the ledger operation.
51
127
  """
52
128
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
53
129
  context.set_details('Method not implemented!')
@@ -55,7 +131,21 @@ class AccountServiceServicer(object):
55
131
 
56
132
  def GetAccount(self, request, context):
57
133
  """
58
- Retrieves a single wallet account by its unique number.
134
+ Retrieves a specific account by its resource identifier.
135
+
136
+ Provides access to account metadata and optionally fetches live
137
+ balance data from the ledger when populate_ledger_data is true.
138
+ """
139
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
140
+ context.set_details('Method not implemented!')
141
+ raise NotImplementedError('Method not implemented!')
142
+
143
+ def GetAccountByNumber(self, request, context):
144
+ """
145
+ Retrieves an account using its Account Number.
146
+
147
+ Provides a convenient lookup method using the 7-digit account number.
148
+ Optionally fetches live balance data when populate_ledger_data is true.
59
149
  """
60
150
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
61
151
  context.set_details('Method not implemented!')
@@ -63,7 +153,10 @@ class AccountServiceServicer(object):
63
153
 
64
154
  def ListAccounts(self, request, context):
65
155
  """
66
- Retrieves a list of all accounts for the authenticated principal.
156
+ Lists all accounts within the authenticated group's hierarchical scope.
157
+
158
+ Returns the complete set of accounts accessible to the executing context,
159
+ including accounts owned by the group and all descendant groups.
67
160
  """
68
161
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
69
162
  context.set_details('Method not implemented!')
@@ -71,7 +164,10 @@ class AccountServiceServicer(object):
71
164
 
72
165
  def SearchAccounts(self, request, context):
73
166
  """
74
- Searches for accounts based on a partial label match.
167
+ Searches accounts using flexible text criteria within the hierarchy.
168
+
169
+ Performs case-insensitive substring matching on display names,
170
+ returning accounts that match the search criteria.
75
171
  """
76
172
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
77
173
  context.set_details('Method not implemented!')
@@ -85,11 +181,31 @@ def add_AccountServiceServicer_to_server(servicer, server):
85
181
  request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CreateAccountRequest.FromString,
86
182
  response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
87
183
  ),
184
+ 'UpdateAccount': grpc.unary_unary_rpc_method_handler(
185
+ servicer.UpdateAccount,
186
+ request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.UpdateAccountRequest.FromString,
187
+ response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
188
+ ),
189
+ 'OpenAccount': grpc.unary_unary_rpc_method_handler(
190
+ servicer.OpenAccount,
191
+ request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountRequest.FromString,
192
+ response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountResponse.SerializeToString,
193
+ ),
194
+ 'AddSignatoryToAccount': grpc.unary_unary_rpc_method_handler(
195
+ servicer.AddSignatoryToAccount,
196
+ request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.AddSignatoryToAccountRequest.FromString,
197
+ response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.AddSignatoryToAccountResponse.SerializeToString,
198
+ ),
88
199
  'GetAccount': grpc.unary_unary_rpc_method_handler(
89
200
  servicer.GetAccount,
90
201
  request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountRequest.FromString,
91
202
  response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
92
203
  ),
204
+ 'GetAccountByNumber': grpc.unary_unary_rpc_method_handler(
205
+ servicer.GetAccountByNumber,
206
+ request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountByNumberRequest.FromString,
207
+ response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
208
+ ),
93
209
  'ListAccounts': grpc.unary_unary_rpc_method_handler(
94
210
  servicer.ListAccounts,
95
211
  request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsRequest.FromString,
@@ -110,7 +226,17 @@ def add_AccountServiceServicer_to_server(servicer, server):
110
226
  # This class is part of an EXPERIMENTAL API.
111
227
  class AccountService(object):
112
228
  """
113
- AccountService provides access to and management of wallet accounts.
229
+ AccountService manages ledger wallet accounts and their lifecycle operations (BETA).
230
+
231
+ This service provides comprehensive account management capabilities across multiple
232
+ ledger networks (Stellar, Solana, Bitcoin, Ethereum). Accounts serve as the
233
+ primary containers for holding and managing digital assets on the Mesh platform.
234
+
235
+ Key capabilities include account creation, opening on-chain, balance queries,
236
+ and account lifecycle management. All operations are scoped to the authenticated
237
+ group's hierarchy and require appropriate wallet domain permissions.
238
+
239
+ Note: This service is currently in BETA. Interface and functionality may change.
114
240
  """
115
241
 
116
242
  @staticmethod
@@ -140,6 +266,87 @@ class AccountService(object):
140
266
  metadata,
141
267
  _registered_method=True)
142
268
 
269
+ @staticmethod
270
+ def UpdateAccount(request,
271
+ target,
272
+ options=(),
273
+ channel_credentials=None,
274
+ call_credentials=None,
275
+ insecure=False,
276
+ compression=None,
277
+ wait_for_ready=None,
278
+ timeout=None,
279
+ metadata=None):
280
+ return grpc.experimental.unary_unary(
281
+ request,
282
+ target,
283
+ '/meshtrade.wallet.account.v1.AccountService/UpdateAccount',
284
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.UpdateAccountRequest.SerializeToString,
285
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
286
+ options,
287
+ channel_credentials,
288
+ insecure,
289
+ call_credentials,
290
+ compression,
291
+ wait_for_ready,
292
+ timeout,
293
+ metadata,
294
+ _registered_method=True)
295
+
296
+ @staticmethod
297
+ def OpenAccount(request,
298
+ target,
299
+ options=(),
300
+ channel_credentials=None,
301
+ call_credentials=None,
302
+ insecure=False,
303
+ compression=None,
304
+ wait_for_ready=None,
305
+ timeout=None,
306
+ metadata=None):
307
+ return grpc.experimental.unary_unary(
308
+ request,
309
+ target,
310
+ '/meshtrade.wallet.account.v1.AccountService/OpenAccount',
311
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountRequest.SerializeToString,
312
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountResponse.FromString,
313
+ options,
314
+ channel_credentials,
315
+ insecure,
316
+ call_credentials,
317
+ compression,
318
+ wait_for_ready,
319
+ timeout,
320
+ metadata,
321
+ _registered_method=True)
322
+
323
+ @staticmethod
324
+ def AddSignatoryToAccount(request,
325
+ target,
326
+ options=(),
327
+ channel_credentials=None,
328
+ call_credentials=None,
329
+ insecure=False,
330
+ compression=None,
331
+ wait_for_ready=None,
332
+ timeout=None,
333
+ metadata=None):
334
+ return grpc.experimental.unary_unary(
335
+ request,
336
+ target,
337
+ '/meshtrade.wallet.account.v1.AccountService/AddSignatoryToAccount',
338
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.AddSignatoryToAccountRequest.SerializeToString,
339
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.AddSignatoryToAccountResponse.FromString,
340
+ options,
341
+ channel_credentials,
342
+ insecure,
343
+ call_credentials,
344
+ compression,
345
+ wait_for_ready,
346
+ timeout,
347
+ metadata,
348
+ _registered_method=True)
349
+
143
350
  @staticmethod
144
351
  def GetAccount(request,
145
352
  target,
@@ -167,6 +374,33 @@ class AccountService(object):
167
374
  metadata,
168
375
  _registered_method=True)
169
376
 
377
+ @staticmethod
378
+ def GetAccountByNumber(request,
379
+ target,
380
+ options=(),
381
+ channel_credentials=None,
382
+ call_credentials=None,
383
+ insecure=False,
384
+ compression=None,
385
+ wait_for_ready=None,
386
+ timeout=None,
387
+ metadata=None):
388
+ return grpc.experimental.unary_unary(
389
+ request,
390
+ target,
391
+ '/meshtrade.wallet.account.v1.AccountService/GetAccountByNumber',
392
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountByNumberRequest.SerializeToString,
393
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
394
+ options,
395
+ channel_credentials,
396
+ insecure,
397
+ call_credentials,
398
+ compression,
399
+ wait_for_ready,
400
+ timeout,
401
+ metadata,
402
+ _registered_method=True)
403
+
170
404
  @staticmethod
171
405
  def ListAccounts(request,
172
406
  target,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshtrade
3
- Version: 1.0.1
3
+ Version: 1.29.0
4
4
  Summary: Integration SDK for Mesh API Services
5
5
  Author-email: Bernard Bussy <bernard@meshtrade.co>
6
6
  License: LicenseRef-My-Custom-License
@@ -0,0 +1,217 @@
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=E0nRoma1sWcEYNqKfr6TI4tL7JDh7MlLeEfne5HKzIM,555
5
+ meshtrade/common/config.py,sha256=X9KPOirRqWOdpqoFyhHVXC4HgmZ9voI8vCjetQYSaH0,810
6
+ meshtrade/common/grpc_client.py,sha256=1gzXEVs4G5ASoezwExw7HX47wZmrrUNnIUkCeMojgN8,11839
7
+ meshtrade/common/service_options.py,sha256=DWGVZ7uOMD0mMjNvnYUklxDvuCL6eljbcBomdOfHcfQ,1393
8
+ meshtrade/compliance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ meshtrade/compliance/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ meshtrade/compliance/client/v1/__init__.py,sha256=HIqwU8rwiCq-fc-oOK0YDQX-S6nJVim4y9zat4c485Y,2974
11
+ meshtrade/compliance/client/v1/client_pb2.py,sha256=iXi8P7BRGE9DSRQtXwp6JidpDQ_X6v5cwMzJKK7BuDk,5765
12
+ meshtrade/compliance/client/v1/client_pb2.pyi,sha256=imJNz3FXJ87730TRsavqzXDB8p54fvDw9AIIdWS6tMA,2653
13
+ meshtrade/compliance/client/v1/client_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
14
+ meshtrade/compliance/client/v1/company_pb2.py,sha256=qwDmX-zz6uvPR5-NzmIZUlAyxe6nQaUXlIZQMWtploo,8246
15
+ meshtrade/compliance/client/v1/company_pb2.pyi,sha256=-hq1v7vEvIIZ4Romag8GHNLO-ztU5Q-qDSO9Bx7JsvY,6606
16
+ meshtrade/compliance/client/v1/company_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
17
+ meshtrade/compliance/client/v1/company_representative_pb2.py,sha256=JSKeJ-XLs9Vf-qzPYlqdRvOOjIItUZ9n2QNLr6ixxZE,3724
18
+ meshtrade/compliance/client/v1/company_representative_pb2.pyi,sha256=Pd1Z_r4-6wJCwh7fHMRP5z6Lns4Y_-TTCOA20PuZYRA,1980
19
+ meshtrade/compliance/client/v1/company_representative_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
20
+ meshtrade/compliance/client/v1/company_representative_role_pb2.py,sha256=xRaRHYZBh2GdSm73aB03reUhMHHRkmDbcwyNjzcHM9c,2302
21
+ meshtrade/compliance/client/v1/company_representative_role_pb2.pyi,sha256=-1G5XsOHquw6VXtdTzEAcurclTZm-Odm5rQA110gkk8,1697
22
+ meshtrade/compliance/client/v1/company_representative_role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
23
+ meshtrade/compliance/client/v1/fund_pb2.py,sha256=87LH6ONIaetPSVT38PGOi1ETaf_ysE2aHBsrMNy9h_8,3399
24
+ meshtrade/compliance/client/v1/fund_pb2.pyi,sha256=lgS-vMgOi3bRkFvExUMelmE5mCqMDZ7obUmvvmJlevo,1192
25
+ meshtrade/compliance/client/v1/fund_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
26
+ meshtrade/compliance/client/v1/identification_document_type_pb2.py,sha256=rzvr5DBzpuXrWU56rZEu9SxEQ8JQJQEcdQyP9qQ4EIU,2073
27
+ meshtrade/compliance/client/v1/identification_document_type_pb2.pyi,sha256=Sl7t5fW9oC04jMWpYwKFZ-LsIJoLpG0NdJE2JkOxxxk,1094
28
+ meshtrade/compliance/client/v1/identification_document_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
29
+ meshtrade/compliance/client/v1/industry_classification_pb2.py,sha256=uxiv0bFzh3HEsb-6_t-YO2cRAY3_3wlxr21-joFq-Ws,2225
30
+ meshtrade/compliance/client/v1/industry_classification_pb2.pyi,sha256=sWu7pheba8b1cfwc3FBb_IKwsBMTb9OjB7bqNl3oLbU,1364
31
+ meshtrade/compliance/client/v1/industry_classification_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
32
+ meshtrade/compliance/client/v1/natural_person_connection_type_pb2.py,sha256=zDASDiU5RM6cCxJCVaUhEm1xFbx4ThAhrhI3D9B__-I,2750
33
+ meshtrade/compliance/client/v1/natural_person_connection_type_pb2.pyi,sha256=BXVfJJnIzy6P5UBGKFQogIvLd62LIdljFWo5CMDXXV4,2908
34
+ meshtrade/compliance/client/v1/natural_person_connection_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
35
+ meshtrade/compliance/client/v1/natural_person_pb2.py,sha256=cBFb3Yp2eY6vmTWfCNjmtXJ1tuzepi9s4VcNv8h8sCo,6427
36
+ meshtrade/compliance/client/v1/natural_person_pb2.pyi,sha256=1Up4Hkgf_p4L90rtsfDCGuFhqjcC2Yw0iGOXsZdR2QM,3855
37
+ meshtrade/compliance/client/v1/natural_person_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
38
+ meshtrade/compliance/client/v1/pep_status_pb2.py,sha256=6qf7nq4OI_O82nZ3zLlAePbeI24E3rnJxPY8b7wgynU,1819
39
+ meshtrade/compliance/client/v1/pep_status_pb2.pyi,sha256=jBJjLEjA16K53Ss85Yab_KtrRG_2lWxFYcMJ0QuQpUk,622
40
+ meshtrade/compliance/client/v1/pep_status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
41
+ meshtrade/compliance/client/v1/service_meshpy.py,sha256=8OEH6G7Cyp3qCJPN_oDMpnlDxkLqndH0OWuhun-2mn0,6905
42
+ meshtrade/compliance/client/v1/service_pb2.py,sha256=q21Rv5NJ2HoFfqyf7zMChSzYxBhtYXNEkvPJ2rOp1Go,4791
43
+ meshtrade/compliance/client/v1/service_pb2.pyi,sha256=NPkYxMCSEnAIB5xnc0osowBzzCNvjFo2kBb_VLyOl5M,1403
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=EHgV3xckVkxcEwlDpmsIAE7q4E1xxGXlYnrvEZx4WIY,3164
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=k9FlGzYOqsKmmw-qcLTwk1n5fCs7r92nthxmNoZZaPY,2655
49
+ meshtrade/compliance/client/v1/tax_residency_pb2.pyi,sha256=T6_9HSA28wFHOGh8nDPDnxyi4AJDoguoT8nxfJsgt3Q,557
50
+ meshtrade/compliance/client/v1/tax_residency_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
51
+ meshtrade/compliance/client/v1/trust_pb2.py,sha256=OtwHgAkSdmiozIG0_Ye5RIb9aZQBJbq3CxePWnID9qU,3411
52
+ meshtrade/compliance/client/v1/trust_pb2.pyi,sha256=K195KayenFRjb5qeq8eRh4rcivG0FpO39Cyzjc6vtP0,1193
53
+ meshtrade/compliance/client/v1/trust_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
54
+ meshtrade/compliance/client/v1/verification_status_pb2.py,sha256=RBI8-LnSLSSv6pVADL_OrYIzNmo8-OOPXhp5dBwO2m4,1964
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=jGy9x2ivnPXvAJ56aohnTtDEAw93lqticjVb_Vmen8s,3208
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=ssnkOj_oJWlMPXot99Fp1vn4V5u2zKDmie4hKL49x20,3098
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=XeyypHdmSgA6IqFQSBxH9dhm9eMluklxogL_6xIiwe0,4976
64
+ meshtrade/iam/api_user/v1/api_user_pb2.pyi,sha256=ke6t8bEYc6QUw6V8GWC7iTqju7-WrYrRIj5Lw2rdNZ0,2158
65
+ meshtrade/iam/api_user/v1/api_user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
66
+ meshtrade/iam/api_user/v1/api_user_state_machine.py,sha256=fmi0DcYHwpIcUQ7cm01wf0-g0Oj9GSvT_ry7Y53SlmQ,3274
67
+ meshtrade/iam/api_user/v1/service_meshpy.py,sha256=fnFB1ExCed-7b1QXOEjOIo2cZDrkm_iHXCmmBd9zesA,10624
68
+ meshtrade/iam/api_user/v1/service_pb2.py,sha256=C4Nb1vMZkVm1yUjbThKnAvBCpptKWYWyFuqTK3ipGEY,11977
69
+ meshtrade/iam/api_user/v1/service_pb2.pyi,sha256=LgwyS4Mug6NnbzzBTYemVh9mFhiMcCi43xVi-UCtyks,3254
70
+ meshtrade/iam/api_user/v1/service_pb2_grpc.py,sha256=jK1bXw-_mQ0IBGDfl6vnZokQFCHBAjJXSDIbiLC0odw,22296
71
+ meshtrade/iam/group/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
+ meshtrade/iam/group/v1/__init__.py,sha256=KAIMS3_Lp-oqlm5dAAZzWRKgbadBffgv0x_K1j1CZl8,1998
73
+ meshtrade/iam/group/v1/group_pb2.py,sha256=5VZ1m6uUDm7_dRPP1CPHdBfc35UO_D7BcWscU2fp29c,3187
74
+ meshtrade/iam/group/v1/group_pb2.pyi,sha256=faBCPlZuc66IfOO4TbJ4QX1B8BuFImnYZTkKaAP8yss,762
75
+ meshtrade/iam/group/v1/group_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
76
+ meshtrade/iam/group/v1/service_meshpy.py,sha256=dkwCqVXQdJHDSYMrNc-lCVe1VpVvfcDWN04AOYNlh-Q,8000
77
+ meshtrade/iam/group/v1/service_pb2.py,sha256=rSAxoXY2MLEMncLkuBzsrThbP_cfDs05WQ0nR2ZCv44,10286
78
+ meshtrade/iam/group/v1/service_pb2.pyi,sha256=_QuDWdlm3k3rdwlACgSzteBcwtrR2NqYVDjEKvysabw,3335
79
+ meshtrade/iam/group/v1/service_pb2_grpc.py,sha256=RHubfJy336fjw6TTTGyRASCl51SVIgE4oyl2nTWYeKk,13142
80
+ meshtrade/iam/role/v1/__init__.py,sha256=LHZI90Kqy_ay4xTVhl6cTbOxDEuFoohAnj5sEEzAaMY,1878
81
+ meshtrade/iam/role/v1/role.py,sha256=CnKup6yOQAZCA_lNJfCQtep8w8tfpHqXUQ66p7rDAK8,5150
82
+ meshtrade/iam/role/v1/role_pb2.py,sha256=VVS0sidSkclhU9AGgsEFWwbAX5Ch2EAloia0w308m2w,3415
83
+ meshtrade/iam/role/v1/role_pb2.pyi,sha256=eadR72Lnm1IIDkuHROcJ_TneuMK2o7sokOYJnwkPZhs,2880
84
+ meshtrade/iam/role/v1/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
85
+ meshtrade/iam/user/v1/__init__.py,sha256=5AwSrD0E-uKuNlHXT93IAtvpNK78wij8Vok4x5nSUgg,2158
86
+ meshtrade/iam/user/v1/service_meshpy.py,sha256=dyA-0JStPvkvEgHHUMRG6NER5_Er-F0ju_eQ3JJz4aE,9738
87
+ meshtrade/iam/user/v1/service_pb2.py,sha256=nZMqXLqOe70JyuHR8reCX3XgvYZtYjVlThsBnsGCrtI,11997
88
+ meshtrade/iam/user/v1/service_pb2.pyi,sha256=skEKC7MoWOm3Zqg_LaUGq208AMrLU46fqaY1m5sGlpY,4015
89
+ meshtrade/iam/user/v1/service_pb2_grpc.py,sha256=4uYIrHDFc5l5yz2KqSr4LgT1d_4O4r_GZ7lgtPGlYCw,19588
90
+ meshtrade/iam/user/v1/user_pb2.py,sha256=zwUvVFb2bfTXxWiBDbm9yid1MwkEON1yOzcmmf8KZUs,3220
91
+ meshtrade/iam/user/v1/user_pb2.pyi,sha256=Z3x3J5zUhHTr-HNjxJ6pTa37KB4fSOeNumY_GCFYFRs,875
92
+ meshtrade/iam/user/v1/user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
93
+ meshtrade/ledger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
+ meshtrade/ledger/transaction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
+ meshtrade/ledger/transaction/v1/__init__.py,sha256=tlQ15zreMM-6ZvuK_UYnvtI4XmcDDAr8m2Gt7sBTLA8,2249
96
+ meshtrade/ledger/transaction/v1/service_meshpy.py,sha256=oG0vFTn76V81qKzi3FFBMd4fUtm9u4ELqtTFnYoQchE,6964
97
+ meshtrade/ledger/transaction/v1/service_pb2.py,sha256=4_Lp5qLqvov61-fryEvNY1A7pXFaV-YYGR5-xOlzp7k,5057
98
+ meshtrade/ledger/transaction/v1/service_pb2.pyi,sha256=ERR55fW9ODUrt1jH5SywYSQl8JAZRogWUHGsPYRO0ck,1427
99
+ meshtrade/ledger/transaction/v1/service_pb2_grpc.py,sha256=7ywyNP7SSRJRh80ShSuFo9PzPNYc1kPFBNxpteT_R9Y,5737
100
+ meshtrade/ledger/transaction/v1/transaction_action_pb2.py,sha256=baOxZ8Z06m8X7fMs63CqZDrvphwYz-2pqDJUdAuIEe8,2062
101
+ meshtrade/ledger/transaction/v1/transaction_action_pb2.pyi,sha256=h85ohgkpEu2K6qP4Ge66PowcU2FNaEjXVLlOwff7Log,1067
102
+ meshtrade/ledger/transaction/v1/transaction_action_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
103
+ meshtrade/ledger/transaction/v1/transaction_state_machine.py,sha256=Xna4O8xysEgtCIt0CkWuZO9lRJkGXzHplOu5jKxd5bY,2757
104
+ meshtrade/ledger/transaction/v1/transaction_state_pb2.py,sha256=bP2YkM3DQC1Ss13uR_rqI6-vOJAKRqQLi45KpLnmdj8,2114
105
+ meshtrade/ledger/transaction/v1/transaction_state_pb2.pyi,sha256=pl93a9UVYiVEPPrF1SuKUz47CDjytstLLROZ-YpvR8Y,1205
106
+ meshtrade/ledger/transaction/v1/transaction_state_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
107
+ meshtrade/market_data/price/v1/__init__.py,sha256=9lzcA-zZiG6ija9Kct5S0dUaPSrNKolpxLf2hXpzfUA,1721
108
+ meshtrade/market_data/price/v1/price_pb2.py,sha256=pIXXSDE6PESX1f6KYknyHbWmet_XXrx0DOtNdUZrlU0,2324
109
+ meshtrade/market_data/price/v1/price_pb2.pyi,sha256=vajLqZgPvttZIu-QaQZ6o9d4aflxY8M34RPcwPCvw9g,1188
110
+ meshtrade/market_data/price/v1/price_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
111
+ meshtrade/market_data/price/v1/service_meshpy.py,sha256=v8PZ64zxo9Y-AWYaEfv1cZHG3mfC7I81Xbn1IXCo2ac,5840
112
+ meshtrade/market_data/price/v1/service_pb2.py,sha256=pvswpuRwEDazM6uUBNDV5_AoLEX1PapJSstnOFJ1czU,3686
113
+ meshtrade/market_data/price/v1/service_pb2.pyi,sha256=9QArQQndWQ9xFTGsHqLP-_yVVR6Y-e1HQ6RKMC-JvCE,965
114
+ meshtrade/market_data/price/v1/service_pb2_grpc.py,sha256=b5eNDYqyIzdlW_iRhoV_H5Or7CgGVIqjZPy4E9jmE7k,3352
115
+ meshtrade/option/method_options/v1/__init__.py,sha256=GYYglqwZaYzISRo_CppijDu_GD_dcbMhNmTEWzINMss,1496
116
+ meshtrade/option/method_options/v1/method_options_pb2.py,sha256=C6LLuweW7n7pMUt59HvikfFbJ-6UdiS2HTSRGa7i8ko,2975
117
+ meshtrade/option/method_options/v1/method_options_pb2.pyi,sha256=C5ishslbCZbcwCY9K5D-xuu_HA7hGRdbPhR-VF0Zqtk,1927
118
+ meshtrade/option/method_options/v1/method_options_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
119
+ meshtrade/option/v1/__init__.py,sha256=B8U0UVf7gUA3D5si5m8H5il7Hy_-KLeLaeGtizQVVJc,1405
120
+ meshtrade/reporting/account_report/v1/__init__.py,sha256=CU7HyXi8fmMrkmmUXPQ3WqNdEAUz-QbVx5LuHwNKwDM,2336
121
+ meshtrade/reporting/account_report/v1/account_report_pb2.py,sha256=MsSykds_bG5TjXZyoG637L37Vc1V8P1SfsJrhOrQssQ,4369
122
+ meshtrade/reporting/account_report/v1/account_report_pb2.pyi,sha256=3a4AqxLc_KcMxHAJ0bQOMPR6ra86aD1YbCkZvS59zJk,3645
123
+ meshtrade/reporting/account_report/v1/account_report_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
124
+ meshtrade/reporting/account_report/v1/disclaimer_pb2.py,sha256=kNgbeafwDZlvBw0th9E-BTMr8Cb4CCbFinOIt8F33xo,1833
125
+ meshtrade/reporting/account_report/v1/disclaimer_pb2.pyi,sha256=bQfBKSVLo5flu6ZO36weavNoRdF9OgO293GpxdeLQic,504
126
+ meshtrade/reporting/account_report/v1/disclaimer_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
127
+ meshtrade/reporting/account_report/v1/fee_entry_pb2.py,sha256=VNOFxNIq0bEhDBeJnTY9zi_YuT9watZMLw3NZgOYdyI,2462
128
+ meshtrade/reporting/account_report/v1/fee_entry_pb2.pyi,sha256=jdOoKWwRsthoV-Ed_aI4FzxexlIueJSn8f_O4jw9sdM,1435
129
+ meshtrade/reporting/account_report/v1/fee_entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
130
+ meshtrade/reporting/account_report/v1/income_entry.py,sha256=RYNYZ53byu2jnOsg3B9zhmI7QfWNc4p11fzh2fHdDjc,1303
131
+ meshtrade/reporting/account_report/v1/income_entry_pb2.py,sha256=CYIZB975QcyaiLQ4NVVJnqw08aG81aADAwDROD0_uxk,3170
132
+ meshtrade/reporting/account_report/v1/income_entry_pb2.pyi,sha256=QMXqSULWde3bEGJJvfc-uovg-4-7psQpeCLMogxkSXs,2491
133
+ meshtrade/reporting/account_report/v1/income_entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
134
+ meshtrade/reporting/account_report/v1/service_meshpy.py,sha256=hYVx9bMQ73_skZqtNAfCi7rIT17_a12q8QFPFXnACGA,6661
135
+ meshtrade/reporting/account_report/v1/service_pb2.py,sha256=MSxvipWXYWquuEziqNo-uleBLLN7VDkEWoVObk7Xub8,7643
136
+ meshtrade/reporting/account_report/v1/service_pb2.pyi,sha256=DhNjI58gyUAFDh_b7zh0Qt-M_pdCeWClG-YoIPa-NyM,2515
137
+ meshtrade/reporting/account_report/v1/service_pb2_grpc.py,sha256=z-qbHsZIez7zvTs0SPrr_xrhnpDApi7oYjt5MxfsPss,7340
138
+ meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.py,sha256=gY_7xkWApxo9UAWkqgjev-NwtPSGOTz-ARMy7ap3tTw,2681
139
+ meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.pyi,sha256=3Ys1u6lu9Zxn9l-2b6jau5_J9lCFrM_X7zDy8bJjkWw,1644
140
+ meshtrade/reporting/account_report/v1/trading_statement_entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
141
+ meshtrade/studio/instrument/v1/__init__.py,sha256=0-iPOm0hR4rfJxW6jlLEeSoSWHu9mWlEg_cenKB4L5c,1517
142
+ meshtrade/studio/instrument/v1/instrument_pb2.py,sha256=MmzTxpEjH4WobSTNYJTs-OTrolMeREWLodUa0saOIuw,3199
143
+ meshtrade/studio/instrument/v1/instrument_pb2.pyi,sha256=0LJ8jBGmo1vENunta-2X3rQhkHtyZjJ_3R1aEJd6m-Y,906
144
+ meshtrade/studio/instrument/v1/instrument_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
145
+ meshtrade/studio/instrument/v1/instrument_type_pb2.py,sha256=EsdgFZSeXENeMiQXF9akJLGn8dSX27MBkbSH0CjpfG0,2982
146
+ meshtrade/studio/instrument/v1/instrument_type_pb2.pyi,sha256=Y3D5pPjEKHHFnNiQwdNABt7GEYig9q89vsVtWw-IwuE,3093
147
+ meshtrade/studio/instrument/v1/instrument_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
148
+ meshtrade/studio/instrument/v1/unit_pb2.py,sha256=lcODI5_EnV4aOU0KlE3XMdyC_Y6F_ZeWl5QzXeROuv4,2257
149
+ meshtrade/studio/instrument/v1/unit_pb2.pyi,sha256=-BMg8h2KblJEBs9And8wjEYwomZmfTAkpy3kRaHRPSI,1350
150
+ meshtrade/studio/instrument/v1/unit_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
151
+ meshtrade/trading/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
+ meshtrade/trading/limit_order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
+ meshtrade/trading/limit_order/v1/__init__.py,sha256=gKt2rXxQzUrZOd20XNlj9w0Tdrhi7FXTNZaKIqvtk0Y,2354
154
+ meshtrade/trading/limit_order/v1/limit_order_pb2.py,sha256=kFrpEoMMpvNPjp6ufuej6rqSKYPu-ViqhA7YeYBHSCE,5634
155
+ meshtrade/trading/limit_order/v1/limit_order_pb2.pyi,sha256=TNved0Iygoi6ivL4UliwwFEidoZUirOgIwSgdJd3IbQ,3318
156
+ meshtrade/trading/limit_order/v1/limit_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
157
+ meshtrade/trading/limit_order/v1/service_meshpy.py,sha256=FSAnwRlGgjsCrGt7UE_ojqDQRDyCXw2AUyUk3R_w4us,9987
158
+ meshtrade/trading/limit_order/v1/service_pb2.py,sha256=6CCQonKiue6ODVpAVucWbn46OVkMJ7dJz2aALQ9B1u8,10259
159
+ meshtrade/trading/limit_order/v1/service_pb2.pyi,sha256=N-HBt1_nyOwGFkqM0_8n39fR4zVd8Q3Yfodem2IJi4k,3448
160
+ meshtrade/trading/limit_order/v1/service_pb2_grpc.py,sha256=oA97-dOfqMksuspE2WqrVvbXQ1vBXe2-t4-S45aXnnY,18229
161
+ meshtrade/trading/market_order/v1/__init__.py,sha256=e2Nh_n5GJW34Z-Wyh-nbg-4hROCnyWCBgMgXfJ7xBws,1759
162
+ meshtrade/trading/market_order/v1/market_order_pb2.py,sha256=Jlp4vNYcULH5fzQvpHsmwg9Gy3KwWoi07vbniEK4ERA,1742
163
+ meshtrade/trading/market_order/v1/market_order_pb2.pyi,sha256=NaWtrs1iNO8jY5XQRvS1ex3skmVJFTGxdDHdknIDvfI,394
164
+ meshtrade/trading/market_order/v1/market_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
165
+ meshtrade/trading/market_order/v1/service_meshpy.py,sha256=L421fbS3XjrCToRrMTUUJRaxcAlyNBvetsBzezRYOc0,5901
166
+ meshtrade/trading/market_order/v1/service_pb2.py,sha256=N-jwQ_CMfkYCQmc4fdUAcDAPfVcs3h0cbSFWGCpFMzw,2782
167
+ meshtrade/trading/market_order/v1/service_pb2.pyi,sha256=ot4lrbJD52bB4aTUhPP_FTXAoGosZS2Jedwfv6Kwd_A,577
168
+ meshtrade/trading/market_order/v1/service_pb2_grpc.py,sha256=MvjbM6EO7A4jFr8e68umjIIxw5swzoVpuxrLvmxr7es,3430
169
+ meshtrade/type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
+ meshtrade/type/v1/__init__.py,sha256=INsdGlseKGjpLCmsAnIHnoHb5FNFN68aJxnWL-NVsOU,5208
171
+ meshtrade/type/v1/address_pb2.py,sha256=3FdfM1n2SRyoHsXJUxo5K6XHFohQJ-Mol1DHkpifrJQ,1860
172
+ meshtrade/type/v1/address_pb2.pyi,sha256=A1PdvzCZpd-JKQhTwwQ3gz2Kw9mOkH3S1imSm78_4Uw,1107
173
+ meshtrade/type/v1/address_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
174
+ meshtrade/type/v1/amount.py,sha256=YKo0qnZQ-Gd5BMq0AnhnnwbkyZuy3cL23tpas7RAc_8,17579
175
+ meshtrade/type/v1/amount_pb2.py,sha256=_9GarF5pgJyxffvugu3gPQXb1cNaH0jQUU-Hcn1gDIE,1920
176
+ meshtrade/type/v1/amount_pb2.pyi,sha256=uI8D2Ch66e2hvzQCA5SARE8lrGdU_BYby__P_H-QwvY,749
177
+ meshtrade/type/v1/amount_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
178
+ meshtrade/type/v1/contact_details_pb2.py,sha256=AgHU_O3hYPFYByhky5GasIrMzhKcRzjWWYN32COj1yY,2072
179
+ meshtrade/type/v1/contact_details_pb2.pyi,sha256=Wk9EFWI_rPuuOvPdKsW9Qo0_c8uNg61U-w__YwPQD9E,1292
180
+ meshtrade/type/v1/contact_details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
181
+ meshtrade/type/v1/date.py,sha256=kUtGimBRyxmoVqktjF3ThMiK9n8ifrLVgtNxZhIbs_o,10629
182
+ meshtrade/type/v1/date_pb2.py,sha256=8PGY1cIo62PUrIt24ZB-kYncv2JW51AVxBFkXROHdTw,1650
183
+ meshtrade/type/v1/date_pb2.pyi,sha256=knrar5r3GE7weH87Ie0IWv-jN57W3EJN6pTJeXGGPTw,554
184
+ meshtrade/type/v1/date_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
185
+ meshtrade/type/v1/decimal_built_in_conversions.py,sha256=niG-qh8WuwXcssYCDMNBEjxCu1Cgdx-uQ_I19egEAv0,1095
186
+ meshtrade/type/v1/decimal_operations.py,sha256=auLDCmSlC5nvLf-JNsdXnsNvG3izXg2rWbVJkq2Fo7k,9119
187
+ meshtrade/type/v1/decimal_pb2.py,sha256=Bg7Vy2Nhz7JBepg7dQGanfe3h-FOhS-bLPZa06Jfj5U,1574
188
+ meshtrade/type/v1/decimal_pb2.pyi,sha256=8qhL7jqAhoYJNzTpEiEPKDSRAYSWgvKd8altyVLISFg,386
189
+ meshtrade/type/v1/decimal_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
190
+ meshtrade/type/v1/ledger.py,sha256=c9QEkZdoCvPt1v-r764qcTbxsAHrR5Rtb6D2rZ8yT8Q,2860
191
+ meshtrade/type/v1/ledger_pb2.py,sha256=M3Oe0vMt1D3iD0PA4Pd3OzWu8QT6kXbkrA-Jqhu-HMQ,1812
192
+ meshtrade/type/v1/ledger_pb2.pyi,sha256=r3emyUDafn9p3XTzwpnM0gzLiwrmgXYTp8GwZxw8_FM,801
193
+ meshtrade/type/v1/ledger_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
194
+ meshtrade/type/v1/sorting_pb2.py,sha256=YLOryA4D1-ja2-1qJxhCjo4ccVRoVbCQ84BfeeSrIzc,1662
195
+ meshtrade/type/v1/sorting_pb2.pyi,sha256=Ki-91U-rzKZ9dsTHqjeSLN6x4vgsa-UxUNDd0nJo4fk,558
196
+ meshtrade/type/v1/sorting_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
197
+ meshtrade/type/v1/time_of_day.py,sha256=jJSf5WoCv5oSDy1FtJ8rcSgUEtZ2ro9gUDsqwsqPArw,7990
198
+ meshtrade/type/v1/time_of_day_pb2.py,sha256=hQVTUpa3T-On9lO8KXcnP-RGxp8uSv1b7G1-3bgP7pY,1731
199
+ meshtrade/type/v1/time_of_day_pb2.pyi,sha256=VJqfuglQos5-kAHBpWVxwDz4SV5aZ6-EyUFQaNl-VyM,679
200
+ meshtrade/type/v1/time_of_day_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
201
+ meshtrade/type/v1/token.py,sha256=eKQYeRAgod3dAyRMIiIMDY5jde0qwoTmeV1b7sske5Y,4207
202
+ meshtrade/type/v1/token_pb2.py,sha256=3x3qj5rOA_i2nnMPlXWl0erdKGCdYu98ihPNQcajU3Q,1806
203
+ meshtrade/type/v1/token_pb2.pyi,sha256=vsEKtXtIo5xisr1I4oqxcaMMYyfV-GBMM_f9l8cRxlc,687
204
+ meshtrade/type/v1/token_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
205
+ meshtrade/wallet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
+ meshtrade/wallet/account/v1/__init__.py,sha256=iDBHg3vBKbvYH6_31UuNNZwRhpaVYvim0keORoe2KDo,2479
207
+ meshtrade/wallet/account/v1/account_pb2.py,sha256=WAaqC_wu0LgH7pYxtGXfVs64DN1Md2zZrA5uiCaLy9c,6143
208
+ meshtrade/wallet/account/v1/account_pb2.pyi,sha256=pBm246netSQr8IUwdz62Kq69r063JYBhm33-I4eymKo,3361
209
+ meshtrade/wallet/account/v1/account_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
210
+ meshtrade/wallet/account/v1/service_meshpy.py,sha256=R29K9jgAKtRJ1Gh8W0VDLq8krvaie42_uxS4ej8ynC0,10041
211
+ meshtrade/wallet/account/v1/service_pb2.py,sha256=XGj07LTva0jUZs_JNgnGT36l03qGda01ojpojKSlA0g,13404
212
+ meshtrade/wallet/account/v1/service_pb2.pyi,sha256=JWCPp-VASFkn9hWmKOLt0v6WDAUwEDhtBGeVYy1X5X8,5086
213
+ meshtrade/wallet/account/v1/service_pb2_grpc.py,sha256=nEwhx5P_Lhzyne6TfqTL6eUO1hEaTlFdTip2YN_-wB0,20749
214
+ meshtrade-1.29.0.dist-info/METADATA,sha256=8d-_mHyQqxZhOAqWUORn0DEAQjGohmoI54Lo1SQ0Q4k,3007
215
+ meshtrade-1.29.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
216
+ meshtrade-1.29.0.dist-info/top_level.txt,sha256=NV0mf_yWXSvBwj2_q5aSz2hN5hQF0QypAiJwV4schJI,14
217
+ meshtrade-1.29.0.dist-info/RECORD,,
@@ -1,65 +0,0 @@
1
- # Code generated by protoc-gen-meshpy. DO NOT EDIT.
2
- # source: meshtrade/compliance/client/v1/service.proto
3
-
4
- """
5
- Configuration options for ClientService 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 ClientService 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