meshtrade 0.0.8__py3-none-any.whl → 0.0.10__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.
Potentially problematic release.
This version of meshtrade might be problematic. Click here for more details.
- buf/validate/validate_pb2.py +450 -0
- buf/validate/validate_pb2.pyi +627 -0
- meshtrade/common/__init__.py +28 -0
- meshtrade/common/config.py +30 -0
- meshtrade/common/grpc_client.py +202 -0
- meshtrade/compliance/client/v1/__init__.py +65 -7
- meshtrade/compliance/client/v1/client_pb2.py +2 -2
- meshtrade/compliance/client/v1/client_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/company_pb2.py +2 -2
- meshtrade/compliance/client/v1/company_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/company_representative_pb2.py +2 -2
- meshtrade/compliance/client/v1/company_representative_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/company_representative_role_pb2.py +2 -2
- meshtrade/compliance/client/v1/company_representative_role_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/fund_pb2.py +2 -2
- meshtrade/compliance/client/v1/fund_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/identification_document_type_pb2.py +2 -2
- meshtrade/compliance/client/v1/identification_document_type_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/industry_classification_pb2.py +2 -2
- meshtrade/compliance/client/v1/industry_classification_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/natural_person_connection_type_pb2.py +2 -2
- meshtrade/compliance/client/v1/natural_person_connection_type_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/natural_person_pb2.py +2 -2
- meshtrade/compliance/client/v1/natural_person_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/pep_status_pb2.py +2 -2
- meshtrade/compliance/client/v1/pep_status_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/service_meshpy.py +186 -0
- meshtrade/compliance/client/v1/service_options_meshpy.py +65 -0
- meshtrade/compliance/client/v1/service_pb2.py +20 -10
- meshtrade/compliance/client/v1/service_pb2.pyi +8 -0
- meshtrade/compliance/client/v1/service_pb2_grpc.py +192 -0
- meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.py +2 -2
- meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/tax_residency_pb2.py +2 -2
- meshtrade/compliance/client/v1/tax_residency_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/trust_pb2.py +2 -2
- meshtrade/compliance/client/v1/trust_pb2_grpc.py +4 -0
- meshtrade/compliance/client/v1/verification_status_pb2.py +2 -2
- meshtrade/compliance/client/v1/verification_status_pb2_grpc.py +4 -0
- meshtrade/iam/api_user/v1/__init__.py +99 -0
- meshtrade/iam/api_user/v1/api_credentials.py +156 -0
- meshtrade/iam/api_user/v1/api_credentials_pb2.py +42 -0
- meshtrade/iam/api_user/v1/api_credentials_pb2.pyi +14 -0
- meshtrade/iam/api_user/v1/api_credentials_pb2_grpc.py +4 -0
- meshtrade/iam/api_user/v1/api_user_pb2.py +48 -0
- meshtrade/iam/api_user/v1/api_user_pb2.pyi +49 -0
- meshtrade/iam/api_user/v1/api_user_pb2_grpc.py +4 -0
- meshtrade/iam/api_user/v1/service.py +58 -0
- meshtrade/iam/api_user/v1/service_meshpy.py +255 -0
- meshtrade/iam/api_user/v1/service_options_meshpy.py +65 -0
- meshtrade/iam/api_user/v1/service_pb2.py +77 -0
- meshtrade/iam/api_user/v1/service_pb2.pyi +63 -0
- meshtrade/iam/api_user/v1/service_pb2_grpc.py +458 -0
- meshtrade/iam/group/v1/__init__.py +59 -1
- meshtrade/iam/group/v1/group_pb2.py +2 -2
- meshtrade/iam/group/v1/group_pb2_grpc.py +4 -0
- meshtrade/iam/group/v1/service_meshpy.py +187 -0
- meshtrade/iam/group/v1/service_options_meshpy.py +65 -0
- meshtrade/iam/group/v1/service_pb2.py +22 -6
- meshtrade/iam/group/v1/service_pb2.pyi +29 -1
- meshtrade/iam/group/v1/service_pb2_grpc.py +170 -0
- meshtrade/iam/role/v1/__init__.py +44 -0
- meshtrade/iam/role/v1/role.py +23 -0
- meshtrade/iam/role/v1/role_pb2.py +40 -0
- meshtrade/{option/v1/auth_pb2.pyi → iam/role/v1/role_pb2.pyi} +16 -0
- meshtrade/iam/role/v1/role_pb2_grpc.py +4 -0
- meshtrade/iam/user/v1/__init__.py +53 -0
- meshtrade/iam/user/v1/service_meshpy.py +151 -0
- meshtrade/iam/user/v1/service_options_meshpy.py +65 -0
- meshtrade/iam/user/v1/service_pb2.py +51 -0
- meshtrade/iam/user/v1/service_pb2.pyi +19 -0
- meshtrade/iam/user/v1/service_pb2_grpc.py +82 -0
- meshtrade/{issuance_hub/instrument/v1/instrument_pb2.py → iam/user/v1/user_pb2.py} +7 -7
- meshtrade/iam/user/v1/user_pb2.pyi +15 -0
- meshtrade/iam/user/v1/user_pb2_grpc.py +4 -0
- meshtrade/ledger/transaction/v1/__init__.py +34 -0
- meshtrade/ledger/transaction/v1/transaction_action_pb2.py +2 -2
- meshtrade/ledger/transaction/v1/transaction_action_pb2_grpc.py +4 -0
- meshtrade/ledger/transaction/v1/transaction_state_pb2.py +2 -2
- meshtrade/ledger/transaction/v1/transaction_state_pb2_grpc.py +4 -0
- meshtrade/option/v1/__init__.py +36 -4
- meshtrade/option/v1/{service_type_pb2.py → method_type_pb2.py} +7 -7
- meshtrade/option/v1/method_type_pb2.pyi +17 -0
- meshtrade/option/v1/method_type_pb2_grpc.py +4 -0
- meshtrade/trading/limit_order/v1/__init__.py +47 -1
- meshtrade/trading/limit_order/v1/limit_order_pb2.py +2 -2
- meshtrade/trading/limit_order/v1/limit_order_pb2_grpc.py +4 -0
- meshtrade/trading/limit_order/v1/service_meshpy.py +151 -0
- meshtrade/trading/limit_order/v1/service_options_meshpy.py +65 -0
- meshtrade/trading/limit_order/v1/service_pb2.py +10 -6
- meshtrade/trading/limit_order/v1/service_pb2.pyi +2 -0
- meshtrade/trading/limit_order/v1/service_pb2_grpc.py +78 -0
- meshtrade/trading/market_order/v1/__init__.py +53 -0
- meshtrade/trading/{direct_order/v1/direct_order_pb2.py → market_order/v1/market_order_pb2.py} +7 -7
- meshtrade/trading/{spot/v1/spot_pb2.pyi → market_order/v1/market_order_pb2.pyi} +1 -1
- meshtrade/trading/market_order/v1/market_order_pb2_grpc.py +4 -0
- meshtrade/trading/market_order/v1/service_meshpy.py +151 -0
- meshtrade/trading/market_order/v1/service_options_meshpy.py +65 -0
- meshtrade/trading/market_order/v1/service_pb2.py +44 -0
- meshtrade/trading/{spot → market_order}/v1/service_pb2.pyi +4 -2
- meshtrade/trading/market_order/v1/service_pb2_grpc.py +78 -0
- meshtrade/type/v1/__init__.py +89 -50
- meshtrade/type/v1/address_pb2.py +2 -2
- meshtrade/type/v1/address_pb2_grpc.py +4 -0
- meshtrade/type/v1/amount.py +2 -8
- meshtrade/type/v1/amount_pb2.py +2 -2
- meshtrade/type/v1/amount_pb2_grpc.py +4 -0
- meshtrade/type/v1/contact_details_pb2.py +2 -2
- meshtrade/type/v1/contact_details_pb2_grpc.py +4 -0
- meshtrade/type/v1/date.py +263 -91
- meshtrade/type/v1/date_pb2.py +2 -2
- meshtrade/type/v1/date_pb2_grpc.py +4 -0
- meshtrade/type/v1/decimal_built_in_conversions.py +1 -1
- meshtrade/type/v1/decimal_pb2.py +2 -2
- meshtrade/type/v1/decimal_pb2_grpc.py +4 -0
- meshtrade/type/v1/ledger.py +1 -1
- meshtrade/type/v1/ledger_pb2.py +2 -2
- meshtrade/type/v1/ledger_pb2_grpc.py +4 -0
- meshtrade/type/v1/time_of_day.py +52 -87
- meshtrade/type/v1/time_of_day_pb2.py +2 -2
- meshtrade/type/v1/time_of_day_pb2_grpc.py +4 -0
- meshtrade/type/v1/token_pb2.py +2 -2
- meshtrade/type/v1/token_pb2_grpc.py +4 -0
- meshtrade/wallet/account/v1/__init__.py +46 -0
- meshtrade/wallet/account/v1/account_pb2.py +2 -2
- meshtrade/wallet/account/v1/account_pb2_grpc.py +4 -0
- meshtrade/wallet/account/v1/service_meshpy.py +204 -0
- meshtrade/wallet/account/v1/service_options_meshpy.py +65 -0
- meshtrade/wallet/account/v1/service_pb2.py +18 -18
- meshtrade/wallet/account/v1/service_pb2.pyi +2 -2
- meshtrade/wallet/account/v1/service_pb2_grpc.py +222 -0
- meshtrade-0.0.10.dist-info/METADATA +95 -0
- meshtrade-0.0.10.dist-info/RECORD +173 -0
- {meshtrade-0.0.8.dist-info → meshtrade-0.0.10.dist-info}/top_level.txt +1 -0
- meshtrade/issuance_hub/__init__.py +0 -0
- meshtrade/issuance_hub/instrument/__init__.py +0 -0
- meshtrade/issuance_hub/instrument/v1/__init__.py +0 -11
- meshtrade/issuance_hub/instrument/v1/instrument_pb2.pyi +0 -11
- meshtrade/issuance_hub/instrument/v1/service_pb2.py +0 -49
- meshtrade/issuance_hub/instrument/v1/service_pb2.pyi +0 -46
- meshtrade/option/v1/auth_pb2.py +0 -40
- meshtrade/option/v1/service_type_pb2.pyi +0 -17
- meshtrade/trading/direct_order/__init__.py +0 -0
- meshtrade/trading/direct_order/v1/__init__.py +0 -7
- meshtrade/trading/direct_order/v1/direct_order_pb2.pyi +0 -11
- meshtrade/trading/direct_order/v1/service_pb2.py +0 -40
- meshtrade/trading/direct_order/v1/service_pb2.pyi +0 -12
- meshtrade/trading/spot/__init__.py +0 -0
- meshtrade/trading/spot/v1/__init__.py +0 -7
- meshtrade/trading/spot/v1/service_pb2.py +0 -40
- meshtrade/trading/spot/v1/spot_pb2.py +0 -37
- meshtrade-0.0.8.dist-info/METADATA +0 -35
- meshtrade-0.0.8.dist-info/RECORD +0 -113
- meshtrade-0.0.8.dist-info/licenses/LICENSE +0 -10
- {meshtrade-0.0.8.dist-info → meshtrade-0.0.10.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,65 @@
|
|
|
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
|
|
@@ -22,20 +22,20 @@ _runtime_version.ValidateProtobufRuntimeVersion(
|
|
|
22
22
|
_sym_db = _symbol_database.Default()
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
from meshtrade.
|
|
26
|
-
from meshtrade.option.v1 import
|
|
25
|
+
from meshtrade.iam.role.v1 import role_pb2 as meshtrade_dot_iam_dot_role_dot_v1_dot_role__pb2
|
|
26
|
+
from meshtrade.option.v1 import method_type_pb2 as meshtrade_dot_option_dot_v1_dot_method__type__pb2
|
|
27
27
|
from meshtrade.type.v1 import ledger_pb2 as meshtrade_dot_type_dot_v1_dot_ledger__pb2
|
|
28
28
|
from meshtrade.wallet.account.v1 import account_pb2 as meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)meshtrade/wallet/account/v1/service.proto\x12\x1bmeshtrade.wallet.account.v1\x1a
|
|
31
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)meshtrade/wallet/account/v1/service.proto\x12\x1bmeshtrade.wallet.account.v1\x1a meshtrade/iam/role/v1/role.proto\x1a%meshtrade/option/v1/method_type.proto\x1a\x1emeshtrade/type/v1/ledger.proto\x1a)meshtrade/wallet/account/v1/account.proto\"s\n\x14\x43reateAccountRequest\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x31\n\x06ledger\x18\x02 \x01(\x0e\x32\x19.meshtrade.type.v1.LedgerR\x06ledger\x12\x12\n\x04open\x18\x03 \x01(\x08R\x04open\"+\n\x11GetAccountRequest\x12\x16\n\x06number\x18\x01 \x01(\tR\x06number\"\x15\n\x13ListAccountsRequest\"X\n\x14ListAccountsResponse\x12@\n\x08\x61\x63\x63ounts\x18\x01 \x03(\x0b\x32$.meshtrade.wallet.account.v1.AccountR\x08\x61\x63\x63ounts\"-\n\x15SearchAccountsRequest\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\"Z\n\x16SearchAccountsResponse\x12@\n\x08\x61\x63\x63ounts\x18\x01 \x03(\x0b\x32$.meshtrade.wallet.account.v1.AccountR\x08\x61\x63\x63ounts2\x87\x04\n\x0e\x41\x63\x63ountService\x12u\n\rCreateAccount\x12\x31.meshtrade.wallet.account.v1.CreateAccountRequest\x1a$.meshtrade.wallet.account.v1.Account\"\x0b\xa0\xb5\x18\x02\xaa\xb5\x18\x03\n\x01\x01\x12p\n\nGetAccount\x12..meshtrade.wallet.account.v1.GetAccountRequest\x1a$.meshtrade.wallet.account.v1.Account\"\x0c\xa0\xb5\x18\x01\xaa\xb5\x18\x04\n\x02\x01\x02\x12\x81\x01\n\x0cListAccounts\x12\x30.meshtrade.wallet.account.v1.ListAccountsRequest\x1a\x31.meshtrade.wallet.account.v1.ListAccountsResponse\"\x0c\xa0\xb5\x18\x01\xaa\xb5\x18\x04\n\x02\x01\x02\x12\x87\x01\n\x0eSearchAccounts\x12\x32.meshtrade.wallet.account.v1.SearchAccountsRequest\x1a\x33.meshtrade.wallet.account.v1.SearchAccountsResponse\"\x0c\xa0\xb5\x18\x01\xaa\xb5\x18\x04\n\x02\x01\x02\x42]\n\"co.meshtrade.api.wallet.account.v1Z7github.com/meshtrade/api/go/wallet/account/v1;accountv1b\x06proto3')
|
|
32
32
|
|
|
33
33
|
_globals = globals()
|
|
34
34
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
35
35
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'meshtrade.wallet.account.v1.service_pb2', _globals)
|
|
36
36
|
if not _descriptor._USE_C_DESCRIPTORS:
|
|
37
37
|
_globals['DESCRIPTOR']._loaded_options = None
|
|
38
|
-
_globals['DESCRIPTOR']._serialized_options = b'
|
|
38
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\"co.meshtrade.api.wallet.account.v1Z7github.com/meshtrade/api/go/wallet/account/v1;accountv1'
|
|
39
39
|
_globals['_ACCOUNTSERVICE'].methods_by_name['CreateAccount']._loaded_options = None
|
|
40
40
|
_globals['_ACCOUNTSERVICE'].methods_by_name['CreateAccount']._serialized_options = b'\240\265\030\002\252\265\030\003\n\001\001'
|
|
41
41
|
_globals['_ACCOUNTSERVICE'].methods_by_name['GetAccount']._loaded_options = None
|
|
@@ -44,18 +44,18 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
|
44
44
|
_globals['_ACCOUNTSERVICE'].methods_by_name['ListAccounts']._serialized_options = b'\240\265\030\001\252\265\030\004\n\002\001\002'
|
|
45
45
|
_globals['_ACCOUNTSERVICE'].methods_by_name['SearchAccounts']._loaded_options = None
|
|
46
46
|
_globals['_ACCOUNTSERVICE'].methods_by_name['SearchAccounts']._serialized_options = b'\240\265\030\001\252\265\030\004\n\002\001\002'
|
|
47
|
-
_globals['_CREATEACCOUNTREQUEST']._serialized_start=
|
|
48
|
-
_globals['_CREATEACCOUNTREQUEST']._serialized_end=
|
|
49
|
-
_globals['_GETACCOUNTREQUEST']._serialized_start=
|
|
50
|
-
_globals['_GETACCOUNTREQUEST']._serialized_end=
|
|
51
|
-
_globals['_LISTACCOUNTSREQUEST']._serialized_start=
|
|
52
|
-
_globals['_LISTACCOUNTSREQUEST']._serialized_end=
|
|
53
|
-
_globals['_LISTACCOUNTSRESPONSE']._serialized_start=
|
|
54
|
-
_globals['_LISTACCOUNTSRESPONSE']._serialized_end=
|
|
55
|
-
_globals['_SEARCHACCOUNTSREQUEST']._serialized_start=
|
|
56
|
-
_globals['_SEARCHACCOUNTSREQUEST']._serialized_end=
|
|
57
|
-
_globals['_SEARCHACCOUNTSRESPONSE']._serialized_start=
|
|
58
|
-
_globals['_SEARCHACCOUNTSRESPONSE']._serialized_end=
|
|
59
|
-
_globals['_ACCOUNTSERVICE']._serialized_start=
|
|
60
|
-
_globals['_ACCOUNTSERVICE']._serialized_end=
|
|
47
|
+
_globals['_CREATEACCOUNTREQUEST']._serialized_start=222
|
|
48
|
+
_globals['_CREATEACCOUNTREQUEST']._serialized_end=337
|
|
49
|
+
_globals['_GETACCOUNTREQUEST']._serialized_start=339
|
|
50
|
+
_globals['_GETACCOUNTREQUEST']._serialized_end=382
|
|
51
|
+
_globals['_LISTACCOUNTSREQUEST']._serialized_start=384
|
|
52
|
+
_globals['_LISTACCOUNTSREQUEST']._serialized_end=405
|
|
53
|
+
_globals['_LISTACCOUNTSRESPONSE']._serialized_start=407
|
|
54
|
+
_globals['_LISTACCOUNTSRESPONSE']._serialized_end=495
|
|
55
|
+
_globals['_SEARCHACCOUNTSREQUEST']._serialized_start=497
|
|
56
|
+
_globals['_SEARCHACCOUNTSREQUEST']._serialized_end=542
|
|
57
|
+
_globals['_SEARCHACCOUNTSRESPONSE']._serialized_start=544
|
|
58
|
+
_globals['_SEARCHACCOUNTSRESPONSE']._serialized_end=634
|
|
59
|
+
_globals['_ACCOUNTSERVICE']._serialized_start=637
|
|
60
|
+
_globals['_ACCOUNTSERVICE']._serialized_end=1156
|
|
61
61
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
from meshtrade.
|
|
2
|
-
from meshtrade.option.v1 import
|
|
1
|
+
from meshtrade.iam.role.v1 import role_pb2 as _role_pb2
|
|
2
|
+
from meshtrade.option.v1 import method_type_pb2 as _method_type_pb2
|
|
3
3
|
from meshtrade.type.v1 import ledger_pb2 as _ledger_pb2
|
|
4
4
|
from meshtrade.wallet.account.v1 import account_pb2 as _account_pb2
|
|
5
5
|
from google.protobuf.internal import containers as _containers
|
|
@@ -0,0 +1,222 @@
|
|
|
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.wallet.account.v1 import account_pb2 as meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2
|
|
6
|
+
from meshtrade.wallet.account.v1 import service_pb2 as meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class AccountServiceStub(object):
|
|
10
|
+
"""
|
|
11
|
+
AccountService provides access to and management of wallet accounts.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
def __init__(self, channel):
|
|
15
|
+
"""Constructor.
|
|
16
|
+
|
|
17
|
+
Args:
|
|
18
|
+
channel: A grpc.Channel.
|
|
19
|
+
"""
|
|
20
|
+
self.CreateAccount = channel.unary_unary(
|
|
21
|
+
'/meshtrade.wallet.account.v1.AccountService/CreateAccount',
|
|
22
|
+
request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CreateAccountRequest.SerializeToString,
|
|
23
|
+
response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
|
|
24
|
+
_registered_method=True)
|
|
25
|
+
self.GetAccount = channel.unary_unary(
|
|
26
|
+
'/meshtrade.wallet.account.v1.AccountService/GetAccount',
|
|
27
|
+
request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountRequest.SerializeToString,
|
|
28
|
+
response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
|
|
29
|
+
_registered_method=True)
|
|
30
|
+
self.ListAccounts = channel.unary_unary(
|
|
31
|
+
'/meshtrade.wallet.account.v1.AccountService/ListAccounts',
|
|
32
|
+
request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsRequest.SerializeToString,
|
|
33
|
+
response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsResponse.FromString,
|
|
34
|
+
_registered_method=True)
|
|
35
|
+
self.SearchAccounts = channel.unary_unary(
|
|
36
|
+
'/meshtrade.wallet.account.v1.AccountService/SearchAccounts',
|
|
37
|
+
request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.SearchAccountsRequest.SerializeToString,
|
|
38
|
+
response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.SearchAccountsResponse.FromString,
|
|
39
|
+
_registered_method=True)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
class AccountServiceServicer(object):
|
|
43
|
+
"""
|
|
44
|
+
AccountService provides access to and management of wallet accounts.
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
def CreateAccount(self, request, context):
|
|
48
|
+
"""
|
|
49
|
+
Creates a new wallet account.
|
|
50
|
+
This is a write operation restricted to administrative roles.
|
|
51
|
+
"""
|
|
52
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
53
|
+
context.set_details('Method not implemented!')
|
|
54
|
+
raise NotImplementedError('Method not implemented!')
|
|
55
|
+
|
|
56
|
+
def GetAccount(self, request, context):
|
|
57
|
+
"""
|
|
58
|
+
Retrieves a single wallet account by its unique number.
|
|
59
|
+
"""
|
|
60
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
61
|
+
context.set_details('Method not implemented!')
|
|
62
|
+
raise NotImplementedError('Method not implemented!')
|
|
63
|
+
|
|
64
|
+
def ListAccounts(self, request, context):
|
|
65
|
+
"""
|
|
66
|
+
Retrieves a list of all accounts for the authenticated principal.
|
|
67
|
+
"""
|
|
68
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
69
|
+
context.set_details('Method not implemented!')
|
|
70
|
+
raise NotImplementedError('Method not implemented!')
|
|
71
|
+
|
|
72
|
+
def SearchAccounts(self, request, context):
|
|
73
|
+
"""
|
|
74
|
+
Searches for accounts based on a partial label match.
|
|
75
|
+
"""
|
|
76
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
77
|
+
context.set_details('Method not implemented!')
|
|
78
|
+
raise NotImplementedError('Method not implemented!')
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
def add_AccountServiceServicer_to_server(servicer, server):
|
|
82
|
+
rpc_method_handlers = {
|
|
83
|
+
'CreateAccount': grpc.unary_unary_rpc_method_handler(
|
|
84
|
+
servicer.CreateAccount,
|
|
85
|
+
request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CreateAccountRequest.FromString,
|
|
86
|
+
response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
|
|
87
|
+
),
|
|
88
|
+
'GetAccount': grpc.unary_unary_rpc_method_handler(
|
|
89
|
+
servicer.GetAccount,
|
|
90
|
+
request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountRequest.FromString,
|
|
91
|
+
response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
|
|
92
|
+
),
|
|
93
|
+
'ListAccounts': grpc.unary_unary_rpc_method_handler(
|
|
94
|
+
servicer.ListAccounts,
|
|
95
|
+
request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsRequest.FromString,
|
|
96
|
+
response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsResponse.SerializeToString,
|
|
97
|
+
),
|
|
98
|
+
'SearchAccounts': grpc.unary_unary_rpc_method_handler(
|
|
99
|
+
servicer.SearchAccounts,
|
|
100
|
+
request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.SearchAccountsRequest.FromString,
|
|
101
|
+
response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.SearchAccountsResponse.SerializeToString,
|
|
102
|
+
),
|
|
103
|
+
}
|
|
104
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
105
|
+
'meshtrade.wallet.account.v1.AccountService', rpc_method_handlers)
|
|
106
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
107
|
+
server.add_registered_method_handlers('meshtrade.wallet.account.v1.AccountService', rpc_method_handlers)
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
# This class is part of an EXPERIMENTAL API.
|
|
111
|
+
class AccountService(object):
|
|
112
|
+
"""
|
|
113
|
+
AccountService provides access to and management of wallet accounts.
|
|
114
|
+
"""
|
|
115
|
+
|
|
116
|
+
@staticmethod
|
|
117
|
+
def CreateAccount(request,
|
|
118
|
+
target,
|
|
119
|
+
options=(),
|
|
120
|
+
channel_credentials=None,
|
|
121
|
+
call_credentials=None,
|
|
122
|
+
insecure=False,
|
|
123
|
+
compression=None,
|
|
124
|
+
wait_for_ready=None,
|
|
125
|
+
timeout=None,
|
|
126
|
+
metadata=None):
|
|
127
|
+
return grpc.experimental.unary_unary(
|
|
128
|
+
request,
|
|
129
|
+
target,
|
|
130
|
+
'/meshtrade.wallet.account.v1.AccountService/CreateAccount',
|
|
131
|
+
meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CreateAccountRequest.SerializeToString,
|
|
132
|
+
meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
|
|
133
|
+
options,
|
|
134
|
+
channel_credentials,
|
|
135
|
+
insecure,
|
|
136
|
+
call_credentials,
|
|
137
|
+
compression,
|
|
138
|
+
wait_for_ready,
|
|
139
|
+
timeout,
|
|
140
|
+
metadata,
|
|
141
|
+
_registered_method=True)
|
|
142
|
+
|
|
143
|
+
@staticmethod
|
|
144
|
+
def GetAccount(request,
|
|
145
|
+
target,
|
|
146
|
+
options=(),
|
|
147
|
+
channel_credentials=None,
|
|
148
|
+
call_credentials=None,
|
|
149
|
+
insecure=False,
|
|
150
|
+
compression=None,
|
|
151
|
+
wait_for_ready=None,
|
|
152
|
+
timeout=None,
|
|
153
|
+
metadata=None):
|
|
154
|
+
return grpc.experimental.unary_unary(
|
|
155
|
+
request,
|
|
156
|
+
target,
|
|
157
|
+
'/meshtrade.wallet.account.v1.AccountService/GetAccount',
|
|
158
|
+
meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountRequest.SerializeToString,
|
|
159
|
+
meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
|
|
160
|
+
options,
|
|
161
|
+
channel_credentials,
|
|
162
|
+
insecure,
|
|
163
|
+
call_credentials,
|
|
164
|
+
compression,
|
|
165
|
+
wait_for_ready,
|
|
166
|
+
timeout,
|
|
167
|
+
metadata,
|
|
168
|
+
_registered_method=True)
|
|
169
|
+
|
|
170
|
+
@staticmethod
|
|
171
|
+
def ListAccounts(request,
|
|
172
|
+
target,
|
|
173
|
+
options=(),
|
|
174
|
+
channel_credentials=None,
|
|
175
|
+
call_credentials=None,
|
|
176
|
+
insecure=False,
|
|
177
|
+
compression=None,
|
|
178
|
+
wait_for_ready=None,
|
|
179
|
+
timeout=None,
|
|
180
|
+
metadata=None):
|
|
181
|
+
return grpc.experimental.unary_unary(
|
|
182
|
+
request,
|
|
183
|
+
target,
|
|
184
|
+
'/meshtrade.wallet.account.v1.AccountService/ListAccounts',
|
|
185
|
+
meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsRequest.SerializeToString,
|
|
186
|
+
meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsResponse.FromString,
|
|
187
|
+
options,
|
|
188
|
+
channel_credentials,
|
|
189
|
+
insecure,
|
|
190
|
+
call_credentials,
|
|
191
|
+
compression,
|
|
192
|
+
wait_for_ready,
|
|
193
|
+
timeout,
|
|
194
|
+
metadata,
|
|
195
|
+
_registered_method=True)
|
|
196
|
+
|
|
197
|
+
@staticmethod
|
|
198
|
+
def SearchAccounts(request,
|
|
199
|
+
target,
|
|
200
|
+
options=(),
|
|
201
|
+
channel_credentials=None,
|
|
202
|
+
call_credentials=None,
|
|
203
|
+
insecure=False,
|
|
204
|
+
compression=None,
|
|
205
|
+
wait_for_ready=None,
|
|
206
|
+
timeout=None,
|
|
207
|
+
metadata=None):
|
|
208
|
+
return grpc.experimental.unary_unary(
|
|
209
|
+
request,
|
|
210
|
+
target,
|
|
211
|
+
'/meshtrade.wallet.account.v1.AccountService/SearchAccounts',
|
|
212
|
+
meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.SearchAccountsRequest.SerializeToString,
|
|
213
|
+
meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.SearchAccountsResponse.FromString,
|
|
214
|
+
options,
|
|
215
|
+
channel_credentials,
|
|
216
|
+
insecure,
|
|
217
|
+
call_credentials,
|
|
218
|
+
compression,
|
|
219
|
+
wait_for_ready,
|
|
220
|
+
timeout,
|
|
221
|
+
metadata,
|
|
222
|
+
_registered_method=True)
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: meshtrade
|
|
3
|
+
Version: 0.0.10
|
|
4
|
+
Summary: Integration SDK for Mesh API Services
|
|
5
|
+
Author-email: Bernard Bussy <bernard@meshtrade.co>
|
|
6
|
+
License: LicenseRef-My-Custom-License
|
|
7
|
+
Project-URL: Repository, https://github.com/meshtrade/api
|
|
8
|
+
Keywords: meshtrade,mesh,mesh-sdk,grpc,protobuf
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: License :: Other/Proprietary License
|
|
15
|
+
Requires-Python: >=3.12
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: grpcio<2.0,>=1.74.0
|
|
18
|
+
Requires-Dist: protobuf<7.0,>=6.31.1
|
|
19
|
+
Requires-Dist: googleapis-common-protos<2.0.0,>=1.70.0
|
|
20
|
+
Requires-Dist: protovalidate>=0.13.0
|
|
21
|
+
Requires-Dist: platformdirs<5.0,>=4.3.8
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: ruff~=0.11.13; extra == "dev"
|
|
24
|
+
Requires-Dist: pytest~=8.4.0; extra == "dev"
|
|
25
|
+
Requires-Dist: build~=1.2.2; extra == "dev"
|
|
26
|
+
Requires-Dist: twine~=6.1.0; extra == "dev"
|
|
27
|
+
Requires-Dist: tox~=4.26.0; extra == "dev"
|
|
28
|
+
Requires-Dist: types-protobuf~=6.30.2.20250516; extra == "dev"
|
|
29
|
+
Requires-Dist: grpcio-tools>=1.74.0; extra == "dev"
|
|
30
|
+
Requires-Dist: jinja2>=3.0.0; extra == "dev"
|
|
31
|
+
|
|
32
|
+
# Mesh API
|
|
33
|
+
|
|
34
|
+
Mesh API is a comprehensive gRPC-based [Mesh](https://www.mesh.trade) platform API with multi-language SDK support.
|
|
35
|
+
|
|
36
|
+
## Overview
|
|
37
|
+
|
|
38
|
+
This repository contains:
|
|
39
|
+
|
|
40
|
+
- **Protobuf API definitions** - Schema-first API specifications in `/proto`
|
|
41
|
+
- **Multi-language SDKs** - Generated client libraries for Go, Python, and TypeScript
|
|
42
|
+
- **Documentation** - Complete API documentation and integration guides
|
|
43
|
+
|
|
44
|
+
## Quick Start
|
|
45
|
+
|
|
46
|
+
- Browse the complete documentation: **[meshtrade.github.io/api](https://meshtrade.github.io/api)**
|
|
47
|
+
- View API definitions: `/proto` directory
|
|
48
|
+
|
|
49
|
+
## Repository Structure
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
proto/ # Protobuf API definitions (source of truth)
|
|
53
|
+
go/ # Go SDK
|
|
54
|
+
python/ # Python SDK
|
|
55
|
+
ts/ # TypeScript (web) SDK
|
|
56
|
+
java/ # Java SDK
|
|
57
|
+
dev/ # Development tools (generation, testing, etc.)
|
|
58
|
+
docs/ # Documentation site (Docusaurus)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Development
|
|
62
|
+
|
|
63
|
+
For contributors and maintainers, this repository includes comprehensive development tools:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
# Generate all SDKs from protobuf definitions
|
|
67
|
+
./dev/tool.sh all
|
|
68
|
+
|
|
69
|
+
# Run comprehensive tests across all languages
|
|
70
|
+
./dev/tool.sh test
|
|
71
|
+
|
|
72
|
+
# Check development environment health
|
|
73
|
+
./dev/tool.sh doctor
|
|
74
|
+
|
|
75
|
+
# Generate specific language SDKs
|
|
76
|
+
./dev/tool.sh generate --targets=go,python
|
|
77
|
+
|
|
78
|
+
# View all available commands
|
|
79
|
+
./dev/tool.sh help
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
See the [Contributor Guide](https://meshtrade.github.io/api/contributors/) for detailed development instructions.
|
|
83
|
+
|
|
84
|
+
## Documentation
|
|
85
|
+
|
|
86
|
+
Visit documentation site at **[meshtrade.github.io/api](https://meshtrade.github.io/api)** for:
|
|
87
|
+
|
|
88
|
+
- API Integration SDKs and usage examples
|
|
89
|
+
- Complete API reference documentation
|
|
90
|
+
- Development guides and best practices
|
|
91
|
+
- Architecture details & more
|
|
92
|
+
|
|
93
|
+
## License
|
|
94
|
+
|
|
95
|
+
See LICENSE file for details.
|
|
@@ -0,0 +1,173 @@
|
|
|
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=oXkzZBHnLdwBQwo-oY12XwOpulpuwAR_N2zGmkGqs6A,4063
|
|
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=Te3zhTlRUJkqY5r2W2fFX-42K5wCyUbkWbqGyblzxTI,8036
|
|
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=OOvTuGaOEjfwI7V366CxgrrKcjmQ-8qWYF9JAiMiMwc,4062
|
|
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=EzS0cEOXmAzdSQmmndpH2cv-DiBodAe3uhmOhwHlALs,2556
|
|
85
|
+
meshtrade/iam/role/v1/role_pb2.pyi,sha256=iWg2LtsDMhPUzIsfEFUto5T8J045gp7Uznh7v1_2pMQ,1698
|
|
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=9rLe44Emn0rlZqsSCYXi0mvnn1060ozWPV2w_0nkU4w,4407
|
|
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/trading/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
|
+
meshtrade/trading/limit_order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
|
+
meshtrade/trading/limit_order/v1/__init__.py,sha256=1XwHm6cYfkFdWr1wf-ukjnvoYA-uhh86jjzTBB5xzQI,1818
|
|
112
|
+
meshtrade/trading/limit_order/v1/limit_order_pb2.py,sha256=6hXZ2N2EQvxKfbYkSGTiXT62rRIgDbnEy8qoFk7evgE,1720
|
|
113
|
+
meshtrade/trading/limit_order/v1/limit_order_pb2.pyi,sha256=qqW6yIlOa146Cr7vuiHBLd8DSOvhhUy3CwJJeC52zFU,393
|
|
114
|
+
meshtrade/trading/limit_order/v1/limit_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
115
|
+
meshtrade/trading/limit_order/v1/service_meshpy.py,sha256=ZjqVEjrrSObzCDgyzxDdD4dL1ec8wSI2yAKG-lQKxAM,5794
|
|
116
|
+
meshtrade/trading/limit_order/v1/service_options_meshpy.py,sha256=B8H-GWdi7mrnwLaQ_TP6CSaRyFtSIEe9mGZuHjapvEY,2554
|
|
117
|
+
meshtrade/trading/limit_order/v1/service_pb2.py,sha256=sjMQfCtFNeOZX-CDBo0F0kSBdZ_30ppzce-31SPrYPY,2752
|
|
118
|
+
meshtrade/trading/limit_order/v1/service_pb2.pyi,sha256=L9ZgLzBDaxqIsAYABtVlrY_qe0Co0Ht99USR_307SXc,608
|
|
119
|
+
meshtrade/trading/limit_order/v1/service_pb2_grpc.py,sha256=ALpSeJl1-3r7jKkcWU7g_QOtks_ZZ7ciVbJgdHvew5k,3390
|
|
120
|
+
meshtrade/trading/market_order/v1/__init__.py,sha256=SULATh4Gddsa6A8959ZYXFgE7acwewAo0jx_9tHZ9MM,1830
|
|
121
|
+
meshtrade/trading/market_order/v1/market_order_pb2.py,sha256=miDtNnqxWAbZ_Ub9Oqo8_GsOLFwWjEeNz3JSzzFIpys,1740
|
|
122
|
+
meshtrade/trading/market_order/v1/market_order_pb2.pyi,sha256=NaWtrs1iNO8jY5XQRvS1ex3skmVJFTGxdDHdknIDvfI,394
|
|
123
|
+
meshtrade/trading/market_order/v1/market_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
124
|
+
meshtrade/trading/market_order/v1/service_meshpy.py,sha256=oruk-y11EhY22pOFoZEpqhudmtYey61TjHq3nKtzObg,5826
|
|
125
|
+
meshtrade/trading/market_order/v1/service_options_meshpy.py,sha256=Ido0GNgd1FSpqzjj-tknXMwYot6g8tAV5fa3oIzYVmk,2557
|
|
126
|
+
meshtrade/trading/market_order/v1/service_pb2.py,sha256=hRwjWXvH2VeoKA7IIF2POCTnGkPVc6XDsSE4dPBhi7g,2786
|
|
127
|
+
meshtrade/trading/market_order/v1/service_pb2.pyi,sha256=MIGhHksXG6hw6N-afJEEAR3fUqKoNU2EdfffDcLMO3c,612
|
|
128
|
+
meshtrade/trading/market_order/v1/service_pb2_grpc.py,sha256=MvjbM6EO7A4jFr8e68umjIIxw5swzoVpuxrLvmxr7es,3430
|
|
129
|
+
meshtrade/type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
|
+
meshtrade/type/v1/__init__.py,sha256=Fnj4SttOCL-RhTdHfQbQ6hSaUEN5i5TZRdsrujMwWQ4,3463
|
|
131
|
+
meshtrade/type/v1/address_pb2.py,sha256=uZQcUd_Nr1gQrWMZz6dmbcOvqMPuJ-T6daQmeJzI-jw,1858
|
|
132
|
+
meshtrade/type/v1/address_pb2.pyi,sha256=A1PdvzCZpd-JKQhTwwQ3gz2Kw9mOkH3S1imSm78_4Uw,1107
|
|
133
|
+
meshtrade/type/v1/address_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
134
|
+
meshtrade/type/v1/amount.py,sha256=pBQqWAU88r2DXyXyD1hmxRVVXxEyGOD0u5SQykuC-Vs,3658
|
|
135
|
+
meshtrade/type/v1/amount_pb2.py,sha256=ZU1JWZNZ98MXEgfqeXImxApl-n2SUfQnDHlz4vt1AkI,1918
|
|
136
|
+
meshtrade/type/v1/amount_pb2.pyi,sha256=uI8D2Ch66e2hvzQCA5SARE8lrGdU_BYby__P_H-QwvY,749
|
|
137
|
+
meshtrade/type/v1/amount_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
138
|
+
meshtrade/type/v1/contact_details_pb2.py,sha256=QHbiNCwaAZhWWOy5ATXPSQbSY8nLJaretF2kPFVlAyk,2070
|
|
139
|
+
meshtrade/type/v1/contact_details_pb2.pyi,sha256=Wk9EFWI_rPuuOvPdKsW9Qo0_c8uNg61U-w__YwPQD9E,1292
|
|
140
|
+
meshtrade/type/v1/contact_details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
141
|
+
meshtrade/type/v1/date.py,sha256=kUtGimBRyxmoVqktjF3ThMiK9n8ifrLVgtNxZhIbs_o,10629
|
|
142
|
+
meshtrade/type/v1/date_pb2.py,sha256=cQPlctiZ5pDD6vqnmDiLhQ63NZ8iEXVb_yf01XZZHe4,1648
|
|
143
|
+
meshtrade/type/v1/date_pb2.pyi,sha256=knrar5r3GE7weH87Ie0IWv-jN57W3EJN6pTJeXGGPTw,554
|
|
144
|
+
meshtrade/type/v1/date_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
145
|
+
meshtrade/type/v1/decimal_built_in_conversions.py,sha256=_T6JfN_3YErRtRLGD3-z2BWJYjasEKue03nsbDybJv8,910
|
|
146
|
+
meshtrade/type/v1/decimal_pb2.py,sha256=8FEO-YAJe3KAZ_5v0XVStapGQ0E-RLEYawinSfld2qM,1572
|
|
147
|
+
meshtrade/type/v1/decimal_pb2.pyi,sha256=8qhL7jqAhoYJNzTpEiEPKDSRAYSWgvKd8altyVLISFg,386
|
|
148
|
+
meshtrade/type/v1/decimal_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
149
|
+
meshtrade/type/v1/ledger.py,sha256=Nh8ySOE2G78oWoJ0PF2_7QahF6Lbsy4K4vymO0by_3Y,719
|
|
150
|
+
meshtrade/type/v1/ledger_pb2.py,sha256=QTJWEH9XAkM-aKorcUKEqf4OcDv2UwDfBOYZMx76wng,1813
|
|
151
|
+
meshtrade/type/v1/ledger_pb2.pyi,sha256=r3emyUDafn9p3XTzwpnM0gzLiwrmgXYTp8GwZxw8_FM,801
|
|
152
|
+
meshtrade/type/v1/ledger_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
153
|
+
meshtrade/type/v1/time_of_day.py,sha256=jJSf5WoCv5oSDy1FtJ8rcSgUEtZ2ro9gUDsqwsqPArw,7990
|
|
154
|
+
meshtrade/type/v1/time_of_day_pb2.py,sha256=zScN4lbJxZsoLWM5IUU5rOP3ACOqbaP5wSgD1e0rclc,1729
|
|
155
|
+
meshtrade/type/v1/time_of_day_pb2.pyi,sha256=VJqfuglQos5-kAHBpWVxwDz4SV5aZ6-EyUFQaNl-VyM,679
|
|
156
|
+
meshtrade/type/v1/time_of_day_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
157
|
+
meshtrade/type/v1/token_pb2.py,sha256=72Od9JTmBrvpzXtC1X5_4NJd6CTlGN5gXS0KAj0GeF0,1804
|
|
158
|
+
meshtrade/type/v1/token_pb2.pyi,sha256=vsEKtXtIo5xisr1I4oqxcaMMYyfV-GBMM_f9l8cRxlc,687
|
|
159
|
+
meshtrade/type/v1/token_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
160
|
+
meshtrade/wallet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
|
+
meshtrade/wallet/account/v1/__init__.py,sha256=6zHLLKaNdJTVPiwt_AcqeEWl-6YbsG6_LbzSq5AUkgM,2063
|
|
162
|
+
meshtrade/wallet/account/v1/account_pb2.py,sha256=Mvpo6MNpQ0au2SA1dT9Eg1_Kb6pnnI2UMWMpgo1k9kU,1657
|
|
163
|
+
meshtrade/wallet/account/v1/account_pb2.pyi,sha256=GN2bT5Ld2B0KyQUmkDQjHfeXEjLSwfuIE2j70jSMIJE,382
|
|
164
|
+
meshtrade/wallet/account/v1/account_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
165
|
+
meshtrade/wallet/account/v1/service_meshpy.py,sha256=qdZWJj9fLsDEdMBVtiIjDoWq8LAt1-ES_dh9jmLgYoI,7520
|
|
166
|
+
meshtrade/wallet/account/v1/service_options_meshpy.py,sha256=ROVvFr-sub9TMtzHO-s2GkNVvzkjf0Hh7Gw9nO-cljg,2543
|
|
167
|
+
meshtrade/wallet/account/v1/service_pb2.py,sha256=V_8qQHIqSIoyph5KAmOgm93_-4_I9g1OVawfmhiMvjc,5143
|
|
168
|
+
meshtrade/wallet/account/v1/service_pb2.pyi,sha256=PL7ANYkhNYTrC8fXv9Pjfz2x-IeUj8HnytTAn4wnvNU,2132
|
|
169
|
+
meshtrade/wallet/account/v1/service_pb2_grpc.py,sha256=lTykth2v98aluqtqaID78HJ6dubXqI0ShpvfFmu3_pY,9480
|
|
170
|
+
meshtrade-0.0.10.dist-info/METADATA,sha256=e4L11sENjc6jgpUA4Kio26MH9_QVHsQCgGKtteszJLQ,3007
|
|
171
|
+
meshtrade-0.0.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
172
|
+
meshtrade-0.0.10.dist-info/top_level.txt,sha256=NV0mf_yWXSvBwj2_q5aSz2hN5hQF0QypAiJwV4schJI,14
|
|
173
|
+
meshtrade-0.0.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|