meshtrade 0.0.8__py3-none-any.whl → 0.0.11__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 +91 -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/{trading/spot/v1/spot_pb2.py → type/v1/sorting_pb2.py} +7 -7
- meshtrade/type/v1/sorting_pb2.pyi +14 -0
- meshtrade/type/v1/sorting_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.11.dist-info/METADATA +95 -0
- meshtrade-0.0.11.dist-info/RECORD +176 -0
- {meshtrade-0.0.8.dist-info → meshtrade-0.0.11.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-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.11.dist-info}/WHEEL +0 -0
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
from .instrument_pb2 import Instrument
|
|
2
|
-
from .service_pb2 import BurnInstrumentRequest, BurnInstrumentResponse, GetInstrumentRequest, MintInstrumentRequest, MintInstrumentResponse
|
|
3
|
-
|
|
4
|
-
__all__ = [
|
|
5
|
-
"Instrument",
|
|
6
|
-
"GetInstrumentRequest",
|
|
7
|
-
"MintInstrumentRequest",
|
|
8
|
-
"MintInstrumentResponse",
|
|
9
|
-
"BurnInstrumentRequest",
|
|
10
|
-
"BurnInstrumentResponse",
|
|
11
|
-
]
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
from google.protobuf import descriptor as _descriptor
|
|
2
|
-
from google.protobuf import message as _message
|
|
3
|
-
from typing import ClassVar as _ClassVar, Optional as _Optional
|
|
4
|
-
|
|
5
|
-
DESCRIPTOR: _descriptor.FileDescriptor
|
|
6
|
-
|
|
7
|
-
class Instrument(_message.Message):
|
|
8
|
-
__slots__ = ("number",)
|
|
9
|
-
NUMBER_FIELD_NUMBER: _ClassVar[int]
|
|
10
|
-
number: str
|
|
11
|
-
def __init__(self, number: _Optional[str] = ...) -> None: ...
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
-
# source: meshtrade/issuance_hub/instrument/v1/service.proto
|
|
5
|
-
# Protobuf Python Version: 6.31.1
|
|
6
|
-
"""Generated protocol buffer code."""
|
|
7
|
-
from google.protobuf import descriptor as _descriptor
|
|
8
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
-
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
-
from google.protobuf.internal import builder as _builder
|
|
12
|
-
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
-
_runtime_version.Domain.PUBLIC,
|
|
14
|
-
6,
|
|
15
|
-
31,
|
|
16
|
-
1,
|
|
17
|
-
'',
|
|
18
|
-
'meshtrade/issuance_hub/instrument/v1/service.proto'
|
|
19
|
-
)
|
|
20
|
-
# @@protoc_insertion_point(imports)
|
|
21
|
-
|
|
22
|
-
_sym_db = _symbol_database.Default()
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
from meshtrade.issuance_hub.instrument.v1 import instrument_pb2 as meshtrade_dot_issuance__hub_dot_instrument_dot_v1_dot_instrument__pb2
|
|
26
|
-
from meshtrade.type.v1 import amount_pb2 as meshtrade_dot_type_dot_v1_dot_amount__pb2
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2meshtrade/issuance_hub/instrument/v1/service.proto\x12$meshtrade.issuance_hub.instrument.v1\x1a\x35meshtrade/issuance_hub/instrument/v1/instrument.proto\x1a\x1emeshtrade/type/v1/amount.proto\"*\n\x14GetInstrumentRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"\x9c\x01\n\x15MintInstrumentRequest\x12\x31\n\x06\x61mount\x18\x01 \x01(\x0b\x32\x19.meshtrade.type.v1.AmountR\x06\x61mount\x12\x1f\n\x0b\x66\x65\x65_account\x18\x02 \x01(\tR\nfeeAccount\x12/\n\x13\x64\x65stination_account\x18\x03 \x01(\tR\x12\x64\x65stinationAccount\"?\n\x16MintInstrumentResponse\x12%\n\x0etransaction_id\x18\x01 \x01(\tR\rtransactionId\"\x92\x01\n\x15\x42urnInstrumentRequest\x12\x31\n\x06\x61mount\x18\x01 \x01(\x0b\x32\x19.meshtrade.type.v1.AmountR\x06\x61mount\x12\x1f\n\x0b\x66\x65\x65_account\x18\x02 \x01(\tR\nfeeAccount\x12%\n\x0esource_account\x18\x03 \x01(\tR\rsourceAccount\"?\n\x16\x42urnInstrumentResponse\x12%\n\x0etransaction_id\x18\x01 \x01(\tR\rtransactionId2\xae\x03\n\x11InstrumentService\x12}\n\rGetInstrument\x12:.meshtrade.issuance_hub.instrument.v1.GetInstrumentRequest\x1a\x30.meshtrade.issuance_hub.instrument.v1.Instrument\x12\x8b\x01\n\x0eMintInstrument\x12;.meshtrade.issuance_hub.instrument.v1.MintInstrumentRequest\x1a<.meshtrade.issuance_hub.instrument.v1.MintInstrumentResponse\x12\x8b\x01\n\x0e\x42urnInstrument\x12;.meshtrade.issuance_hub.instrument.v1.BurnInstrumentRequest\x1a<.meshtrade.issuance_hub.instrument.v1.BurnInstrumentResponseBEZCgithub.com/meshtrade/api/go/issuance_hub/instrument/v1;instrumentv1b\x06proto3')
|
|
30
|
-
|
|
31
|
-
_globals = globals()
|
|
32
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'meshtrade.issuance_hub.instrument.v1.service_pb2', _globals)
|
|
34
|
-
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
-
_globals['DESCRIPTOR']._loaded_options = None
|
|
36
|
-
_globals['DESCRIPTOR']._serialized_options = b'ZCgithub.com/meshtrade/api/go/issuance_hub/instrument/v1;instrumentv1'
|
|
37
|
-
_globals['_GETINSTRUMENTREQUEST']._serialized_start=179
|
|
38
|
-
_globals['_GETINSTRUMENTREQUEST']._serialized_end=221
|
|
39
|
-
_globals['_MINTINSTRUMENTREQUEST']._serialized_start=224
|
|
40
|
-
_globals['_MINTINSTRUMENTREQUEST']._serialized_end=380
|
|
41
|
-
_globals['_MINTINSTRUMENTRESPONSE']._serialized_start=382
|
|
42
|
-
_globals['_MINTINSTRUMENTRESPONSE']._serialized_end=445
|
|
43
|
-
_globals['_BURNINSTRUMENTREQUEST']._serialized_start=448
|
|
44
|
-
_globals['_BURNINSTRUMENTREQUEST']._serialized_end=594
|
|
45
|
-
_globals['_BURNINSTRUMENTRESPONSE']._serialized_start=596
|
|
46
|
-
_globals['_BURNINSTRUMENTRESPONSE']._serialized_end=659
|
|
47
|
-
_globals['_INSTRUMENTSERVICE']._serialized_start=662
|
|
48
|
-
_globals['_INSTRUMENTSERVICE']._serialized_end=1092
|
|
49
|
-
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
from meshtrade.issuance_hub.instrument.v1 import instrument_pb2 as _instrument_pb2
|
|
2
|
-
from meshtrade.type.v1 import amount_pb2 as _amount_pb2
|
|
3
|
-
from google.protobuf import descriptor as _descriptor
|
|
4
|
-
from google.protobuf import message as _message
|
|
5
|
-
from collections.abc import Mapping as _Mapping
|
|
6
|
-
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
7
|
-
|
|
8
|
-
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
-
|
|
10
|
-
class GetInstrumentRequest(_message.Message):
|
|
11
|
-
__slots__ = ("name",)
|
|
12
|
-
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
-
name: str
|
|
14
|
-
def __init__(self, name: _Optional[str] = ...) -> None: ...
|
|
15
|
-
|
|
16
|
-
class MintInstrumentRequest(_message.Message):
|
|
17
|
-
__slots__ = ("amount", "fee_account", "destination_account")
|
|
18
|
-
AMOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
-
FEE_ACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
-
DESTINATION_ACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
-
amount: _amount_pb2.Amount
|
|
22
|
-
fee_account: str
|
|
23
|
-
destination_account: str
|
|
24
|
-
def __init__(self, amount: _Optional[_Union[_amount_pb2.Amount, _Mapping]] = ..., fee_account: _Optional[str] = ..., destination_account: _Optional[str] = ...) -> None: ...
|
|
25
|
-
|
|
26
|
-
class MintInstrumentResponse(_message.Message):
|
|
27
|
-
__slots__ = ("transaction_id",)
|
|
28
|
-
TRANSACTION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
-
transaction_id: str
|
|
30
|
-
def __init__(self, transaction_id: _Optional[str] = ...) -> None: ...
|
|
31
|
-
|
|
32
|
-
class BurnInstrumentRequest(_message.Message):
|
|
33
|
-
__slots__ = ("amount", "fee_account", "source_account")
|
|
34
|
-
AMOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
-
FEE_ACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
-
SOURCE_ACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
-
amount: _amount_pb2.Amount
|
|
38
|
-
fee_account: str
|
|
39
|
-
source_account: str
|
|
40
|
-
def __init__(self, amount: _Optional[_Union[_amount_pb2.Amount, _Mapping]] = ..., fee_account: _Optional[str] = ..., source_account: _Optional[str] = ...) -> None: ...
|
|
41
|
-
|
|
42
|
-
class BurnInstrumentResponse(_message.Message):
|
|
43
|
-
__slots__ = ("transaction_id",)
|
|
44
|
-
TRANSACTION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
-
transaction_id: str
|
|
46
|
-
def __init__(self, transaction_id: _Optional[str] = ...) -> None: ...
|
meshtrade/option/v1/auth_pb2.py
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
-
# source: meshtrade/option/v1/auth.proto
|
|
5
|
-
# Protobuf Python Version: 6.31.1
|
|
6
|
-
"""Generated protocol buffer code."""
|
|
7
|
-
from google.protobuf import descriptor as _descriptor
|
|
8
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
-
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
-
from google.protobuf.internal import builder as _builder
|
|
12
|
-
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
-
_runtime_version.Domain.PUBLIC,
|
|
14
|
-
6,
|
|
15
|
-
31,
|
|
16
|
-
1,
|
|
17
|
-
'',
|
|
18
|
-
'meshtrade/option/v1/auth.proto'
|
|
19
|
-
)
|
|
20
|
-
# @@protoc_insertion_point(imports)
|
|
21
|
-
|
|
22
|
-
_sym_db = _symbol_database.Default()
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1emeshtrade/option/v1/auth.proto\x12\x13meshtrade.option.v1\x1a google/protobuf/descriptor.proto\";\n\x08RoleList\x12/\n\x05roles\x18\x01 \x03(\x0e\x32\x19.meshtrade.option.v1.RoleR\x05roles*K\n\x04Role\x12\x14\n\x10ROLE_UNSPECIFIED\x10\x00\x12\x15\n\x11ROLE_WALLET_ADMIN\x10\x01\x12\x16\n\x12ROLE_WALLET_VIEWER\x10\x02:d\n\x0estandard_roles\x12\x1c.google.protobuf.FileOptions\x18\xd3\x86\x03 \x01(\x0b\x32\x1d.meshtrade.option.v1.RoleListR\rstandardRoles:U\n\x05roles\x12\x1e.google.protobuf.MethodOptions\x18\xd5\x86\x03 \x01(\x0b\x32\x1d.meshtrade.option.v1.RoleListR\x05rolesB0Z.github.com/meshtrade/api/go/option/v1;optionv1b\x06proto3')
|
|
29
|
-
|
|
30
|
-
_globals = globals()
|
|
31
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'meshtrade.option.v1.auth_pb2', _globals)
|
|
33
|
-
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
-
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
-
_globals['DESCRIPTOR']._serialized_options = b'Z.github.com/meshtrade/api/go/option/v1;optionv1'
|
|
36
|
-
_globals['_ROLE']._serialized_start=150
|
|
37
|
-
_globals['_ROLE']._serialized_end=225
|
|
38
|
-
_globals['_ROLELIST']._serialized_start=89
|
|
39
|
-
_globals['_ROLELIST']._serialized_end=148
|
|
40
|
-
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from google.protobuf import descriptor_pb2 as _descriptor_pb2
|
|
2
|
-
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
-
from google.protobuf import descriptor as _descriptor
|
|
4
|
-
from typing import ClassVar as _ClassVar
|
|
5
|
-
|
|
6
|
-
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
-
|
|
8
|
-
class ServiceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
9
|
-
__slots__ = ()
|
|
10
|
-
SERVICE_TYPE_UNSPECIFIED: _ClassVar[ServiceType]
|
|
11
|
-
SERVICE_TYPE_READ: _ClassVar[ServiceType]
|
|
12
|
-
SERVICE_TYPE_WRITE: _ClassVar[ServiceType]
|
|
13
|
-
SERVICE_TYPE_UNSPECIFIED: ServiceType
|
|
14
|
-
SERVICE_TYPE_READ: ServiceType
|
|
15
|
-
SERVICE_TYPE_WRITE: ServiceType
|
|
16
|
-
SERVICE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
-
service_type: _descriptor.FieldDescriptor
|
|
File without changes
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
from google.protobuf import descriptor as _descriptor
|
|
2
|
-
from google.protobuf import message as _message
|
|
3
|
-
from typing import ClassVar as _ClassVar, Optional as _Optional
|
|
4
|
-
|
|
5
|
-
DESCRIPTOR: _descriptor.FileDescriptor
|
|
6
|
-
|
|
7
|
-
class DirectOrder(_message.Message):
|
|
8
|
-
__slots__ = ("number",)
|
|
9
|
-
NUMBER_FIELD_NUMBER: _ClassVar[int]
|
|
10
|
-
number: str
|
|
11
|
-
def __init__(self, number: _Optional[str] = ...) -> None: ...
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
-
# source: meshtrade/trading/direct_order/v1/service.proto
|
|
5
|
-
# Protobuf Python Version: 6.31.1
|
|
6
|
-
"""Generated protocol buffer code."""
|
|
7
|
-
from google.protobuf import descriptor as _descriptor
|
|
8
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
-
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
-
from google.protobuf.internal import builder as _builder
|
|
12
|
-
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
-
_runtime_version.Domain.PUBLIC,
|
|
14
|
-
6,
|
|
15
|
-
31,
|
|
16
|
-
1,
|
|
17
|
-
'',
|
|
18
|
-
'meshtrade/trading/direct_order/v1/service.proto'
|
|
19
|
-
)
|
|
20
|
-
# @@protoc_insertion_point(imports)
|
|
21
|
-
|
|
22
|
-
_sym_db = _symbol_database.Default()
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
from meshtrade.trading.direct_order.v1 import direct_order_pb2 as meshtrade_dot_trading_dot_direct__order_dot_v1_dot_direct__order__pb2
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/meshtrade/trading/direct_order/v1/service.proto\x12!meshtrade.trading.direct_order.v1\x1a\x34meshtrade/trading/direct_order/v1/direct_order.proto\"/\n\x15GetDirectOrderRequest\x12\x16\n\x06number\x18\x01 \x01(\tR\x06number2\x90\x01\n\x12\x44irectOrderService\x12z\n\x0eGetDirectOrder\x12\x38.meshtrade.trading.direct_order.v1.GetDirectOrderRequest\x1a..meshtrade.trading.direct_order.v1.DirectOrderBCZAgithub.com/meshtrade/api/go/trading/direct_order/v1;directorderv1b\x06proto3')
|
|
29
|
-
|
|
30
|
-
_globals = globals()
|
|
31
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'meshtrade.trading.direct_order.v1.service_pb2', _globals)
|
|
33
|
-
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
-
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
-
_globals['DESCRIPTOR']._serialized_options = b'ZAgithub.com/meshtrade/api/go/trading/direct_order/v1;directorderv1'
|
|
36
|
-
_globals['_GETDIRECTORDERREQUEST']._serialized_start=140
|
|
37
|
-
_globals['_GETDIRECTORDERREQUEST']._serialized_end=187
|
|
38
|
-
_globals['_DIRECTORDERSERVICE']._serialized_start=190
|
|
39
|
-
_globals['_DIRECTORDERSERVICE']._serialized_end=334
|
|
40
|
-
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
from meshtrade.trading.direct_order.v1 import direct_order_pb2 as _direct_order_pb2
|
|
2
|
-
from google.protobuf import descriptor as _descriptor
|
|
3
|
-
from google.protobuf import message as _message
|
|
4
|
-
from typing import ClassVar as _ClassVar, Optional as _Optional
|
|
5
|
-
|
|
6
|
-
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
-
|
|
8
|
-
class GetDirectOrderRequest(_message.Message):
|
|
9
|
-
__slots__ = ("number",)
|
|
10
|
-
NUMBER_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
-
number: str
|
|
12
|
-
def __init__(self, number: _Optional[str] = ...) -> None: ...
|
|
File without changes
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
-
# source: meshtrade/trading/spot/v1/service.proto
|
|
5
|
-
# Protobuf Python Version: 6.31.1
|
|
6
|
-
"""Generated protocol buffer code."""
|
|
7
|
-
from google.protobuf import descriptor as _descriptor
|
|
8
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
-
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
-
from google.protobuf.internal import builder as _builder
|
|
12
|
-
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
-
_runtime_version.Domain.PUBLIC,
|
|
14
|
-
6,
|
|
15
|
-
31,
|
|
16
|
-
1,
|
|
17
|
-
'',
|
|
18
|
-
'meshtrade/trading/spot/v1/service.proto'
|
|
19
|
-
)
|
|
20
|
-
# @@protoc_insertion_point(imports)
|
|
21
|
-
|
|
22
|
-
_sym_db = _symbol_database.Default()
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
from meshtrade.trading.spot.v1 import spot_pb2 as meshtrade_dot_trading_dot_spot_dot_v1_dot_spot__pb2
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'meshtrade/trading/spot/v1/service.proto\x12\x19meshtrade.trading.spot.v1\x1a$meshtrade/trading/spot/v1/spot.proto\"(\n\x0eGetSpotRequest\x12\x16\n\x06number\x18\x01 \x01(\tR\x06number2d\n\x0bSpotService\x12U\n\x07GetSpot\x12).meshtrade.trading.spot.v1.GetSpotRequest\x1a\x1f.meshtrade.trading.spot.v1.SpotB4Z2github.com/meshtrade/api/go/trading/spot/v1;spotv1b\x06proto3')
|
|
29
|
-
|
|
30
|
-
_globals = globals()
|
|
31
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'meshtrade.trading.spot.v1.service_pb2', _globals)
|
|
33
|
-
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
-
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
-
_globals['DESCRIPTOR']._serialized_options = b'Z2github.com/meshtrade/api/go/trading/spot/v1;spotv1'
|
|
36
|
-
_globals['_GETSPOTREQUEST']._serialized_start=108
|
|
37
|
-
_globals['_GETSPOTREQUEST']._serialized_end=148
|
|
38
|
-
_globals['_SPOTSERVICE']._serialized_start=150
|
|
39
|
-
_globals['_SPOTSERVICE']._serialized_end=250
|
|
40
|
-
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: meshtrade
|
|
3
|
-
Version: 0.0.8
|
|
4
|
-
Summary: Integration SDK for Mesh API Services
|
|
5
|
-
Author-email: Bernard Bussy <bernard@meshtrade.co>
|
|
6
|
-
License-Expression: LicenseRef-My-Custom-License
|
|
7
|
-
Project-URL: Repository, https://github.com/meshtrade/api
|
|
8
|
-
Keywords: meshtrade,mesh,mesh-sdk,grpc,betterproto,grpclib
|
|
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.8
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Requires-Python: >=3.12
|
|
19
|
-
Description-Content-Type: text/markdown
|
|
20
|
-
License-File: LICENSE
|
|
21
|
-
Requires-Dist: grpcio<2.0,>=1.73.0
|
|
22
|
-
Requires-Dist: protobuf<7.0,>=6.31.1
|
|
23
|
-
Requires-Dist: googleapis-common-protos<2.0.0,>=1.70.0
|
|
24
|
-
Provides-Extra: dev
|
|
25
|
-
Requires-Dist: ruff~=0.11.13; extra == "dev"
|
|
26
|
-
Requires-Dist: pytest~=8.4.0; extra == "dev"
|
|
27
|
-
Requires-Dist: build~=1.2.2; extra == "dev"
|
|
28
|
-
Requires-Dist: twine~=6.1.0; extra == "dev"
|
|
29
|
-
Requires-Dist: tox~=4.26.0; extra == "dev"
|
|
30
|
-
Requires-Dist: types-protobuf~=6.30.2.20250516; extra == "dev"
|
|
31
|
-
Dynamic: license-file
|
|
32
|
-
|
|
33
|
-
# Python SDK
|
|
34
|
-
|
|
35
|
-
Please find the complete Python SDK documentation here: [docs/pages/python.md](../docs/pages/python.md)
|
meshtrade-0.0.8.dist-info/RECORD
DELETED
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
meshtrade/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
meshtrade/compliance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
meshtrade/compliance/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
meshtrade/compliance/client/v1/__init__.py,sha256=xe7p3ZxHq7TYn60GlF0YEBaIaQupVs5DKa_xmU7XjzY,1064
|
|
5
|
-
meshtrade/compliance/client/v1/client_pb2.py,sha256=JHUUJSaDWEIL76ZpWikN5z3dME2t5i35kN0XvsjasDU,3553
|
|
6
|
-
meshtrade/compliance/client/v1/client_pb2.pyi,sha256=TTRVskF2-GWz9vpgYG7DLQ9RTpBSS07wWIAPkte5IeM,2598
|
|
7
|
-
meshtrade/compliance/client/v1/company_pb2.py,sha256=IHlphoJ2-8CuZVtPHFZplU6i7vq9C4texhDGNkqYJPI,5822
|
|
8
|
-
meshtrade/compliance/client/v1/company_pb2.pyi,sha256=vVAZY0eLTImihbMKvI8Ojfw60Cux3yGehPXKEfyfcLg,6551
|
|
9
|
-
meshtrade/compliance/client/v1/company_representative_pb2.py,sha256=mvftqWn_rsVzYFqGyK4EMELJnW_rdCJPFafL7deJ1LY,3065
|
|
10
|
-
meshtrade/compliance/client/v1/company_representative_pb2.pyi,sha256=jlmg_p6kkDzcSrJiuXIr9Km4JvO44-OGvFnvrCM2ufQ,1925
|
|
11
|
-
meshtrade/compliance/client/v1/company_representative_role_pb2.py,sha256=Wofhj-LiX92E2JD2LnDy-uvuqwrKKqwnh9GncUrX-p8,2217
|
|
12
|
-
meshtrade/compliance/client/v1/company_representative_role_pb2.pyi,sha256=-1G5XsOHquw6VXtdTzEAcurclTZm-Odm5rQA110gkk8,1697
|
|
13
|
-
meshtrade/compliance/client/v1/fund_pb2.py,sha256=l4sQUQ5BnIIiVj_XGMLe49SjDHeGi7ykrqRFrqh8KQU,1996
|
|
14
|
-
meshtrade/compliance/client/v1/fund_pb2.pyi,sha256=am7O53ZrkOQSgAc2RbbbYPWhIpNQQKUeCUZpwY7bqqI,1137
|
|
15
|
-
meshtrade/compliance/client/v1/identification_document_type_pb2.py,sha256=X24D81t_9kJf1Q3wyei8_ZpQ9-ymbe7fOIRwx-fr4cs,1988
|
|
16
|
-
meshtrade/compliance/client/v1/identification_document_type_pb2.pyi,sha256=Sl7t5fW9oC04jMWpYwKFZ-LsIJoLpG0NdJE2JkOxxxk,1094
|
|
17
|
-
meshtrade/compliance/client/v1/industry_classification_pb2.py,sha256=kBHcPngFeG3z9l7SLkwa7yoOpP9mE6mkKwLs42Wo0U8,2143
|
|
18
|
-
meshtrade/compliance/client/v1/industry_classification_pb2.pyi,sha256=sWu7pheba8b1cfwc3FBb_IKwsBMTb9OjB7bqNl3oLbU,1364
|
|
19
|
-
meshtrade/compliance/client/v1/natural_person_connection_type_pb2.py,sha256=1qVwy3m6YAOxDrWy07IH6SkGTRsZtHnp1Ozl6pqyP24,2668
|
|
20
|
-
meshtrade/compliance/client/v1/natural_person_connection_type_pb2.pyi,sha256=BXVfJJnIzy6P5UBGKFQogIvLd62LIdljFWo5CMDXXV4,2908
|
|
21
|
-
meshtrade/compliance/client/v1/natural_person_pb2.py,sha256=7d3wg1HoIY425NKtI_ICeXKfLk1sAQlrcJYdTRL7f0o,4146
|
|
22
|
-
meshtrade/compliance/client/v1/natural_person_pb2.pyi,sha256=sjtLLxbCQWsXUprMzzVGrplrkUK_yACweEDhc5VjOwI,3800
|
|
23
|
-
meshtrade/compliance/client/v1/pep_status_pb2.py,sha256=ySzRu23wQGU5WuJaGrMFPHLBxd51WVKy4PCh3Nh7VwI,1734
|
|
24
|
-
meshtrade/compliance/client/v1/pep_status_pb2.pyi,sha256=jBJjLEjA16K53Ss85Yab_KtrRG_2lWxFYcMJ0QuQpUk,622
|
|
25
|
-
meshtrade/compliance/client/v1/service_pb2.py,sha256=DsM1dYoG9K-N75Zn7J6DomUqilnddH1BFlnF2dMtJ5Q,2542
|
|
26
|
-
meshtrade/compliance/client/v1/service_pb2.pyi,sha256=D_RYmufZNzy5UkpvTnjJr06pMKo-uPV9A4wiQLlSq-k,1015
|
|
27
|
-
meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.py,sha256=awWA7CGZc7itD2XbiVPYW5s98ZbyyWg9rjgZzE8iPnk,3079
|
|
28
|
-
meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.pyi,sha256=c2RuUjrykzgnuiIfn1i-ClFdGocEhZjnFolNKFzn7Ac,3883
|
|
29
|
-
meshtrade/compliance/client/v1/tax_residency_pb2.py,sha256=Kx34evRFxurqxoZYY49pX3gZSNf0HyaTWYenib7xQWE,1686
|
|
30
|
-
meshtrade/compliance/client/v1/tax_residency_pb2.pyi,sha256=J2o8MGBTMY40_mlesQHwayM_ijx-MGPQ3AJKoaIWH2c,502
|
|
31
|
-
meshtrade/compliance/client/v1/trust_pb2.py,sha256=j2VKlU9fj6XETCfu2fCNYj-bAwyKDacJE3W2Bw-elwg,2000
|
|
32
|
-
meshtrade/compliance/client/v1/trust_pb2.pyi,sha256=9gxetO-sEGVEvg3OpsuI7--MTd32V0nH63BwAURVdpg,1138
|
|
33
|
-
meshtrade/compliance/client/v1/verification_status_pb2.py,sha256=hDbQfqXI8ysOHNaN3Gnf5LFC33CcGsSOFCWuolYF-0Y,1879
|
|
34
|
-
meshtrade/compliance/client/v1/verification_status_pb2.pyi,sha256=kqP24po3o2Ks8HWAoQ-tLlMirCJCKwxlQlWJXWkRmAI,880
|
|
35
|
-
meshtrade/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
-
meshtrade/iam/group/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
meshtrade/iam/group/v1/__init__.py,sha256=IyiMmD3NNNwi63ec9jSShoiUdn9I7h-OKk9FmJnrDHg,56
|
|
38
|
-
meshtrade/iam/group/v1/group_pb2.py,sha256=_RmnGfyVz05Rq1OupOIenN7MoQlqB4DFMJOJh9efp08,1519
|
|
39
|
-
meshtrade/iam/group/v1/group_pb2.pyi,sha256=hYHylacNV2llToNzhISbJ5GFXuGtZeEK95LHNnylK90,380
|
|
40
|
-
meshtrade/iam/group/v1/service_pb2.py,sha256=_MZb6_mL0fH4fzgQGSuBdJ5UGvA3B8Mf6yoNnr8qFXg,1872
|
|
41
|
-
meshtrade/iam/group/v1/service_pb2.pyi,sha256=a2NpoJK5VbPodThgX6jksggA8EG-HGMVaDw4E7WIl0M,339
|
|
42
|
-
meshtrade/issuance_hub/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
meshtrade/issuance_hub/instrument/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
-
meshtrade/issuance_hub/instrument/v1/__init__.py,sha256=UiRCA9kAhrqPZR0zORG-M7d9JTYaS7O1R7t05jzimNU,358
|
|
45
|
-
meshtrade/issuance_hub/instrument/v1/instrument_pb2.py,sha256=MH12krsLsJjdhTQZoxiXxYqy5jQBgte2QutTyjLtbOE,1658
|
|
46
|
-
meshtrade/issuance_hub/instrument/v1/instrument_pb2.pyi,sha256=7OKPuALjJ0x_qPnAUKAh7jX0d65eSMA9GZrzSm_Lxvo,393
|
|
47
|
-
meshtrade/issuance_hub/instrument/v1/service_pb2.py,sha256=wCzPgWLuAZwVVMvOl37IRKTP0OS1NdxNxd-VOSqX6c8,3768
|
|
48
|
-
meshtrade/issuance_hub/instrument/v1/service_pb2.pyi,sha256=vl9Y9VLHIKutzF4Vl7_PITnmiBU9EDSko9G7ZD81j1E,2059
|
|
49
|
-
meshtrade/ledger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
-
meshtrade/ledger/transaction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
meshtrade/ledger/transaction/v1/__init__.py,sha256=6esmSr3BOIemwDW1afBZpfDZM9CDsy5zKoU--CUvfsE,170
|
|
52
|
-
meshtrade/ledger/transaction/v1/transaction_action_pb2.py,sha256=NZ6GOQmTVaYf1xJh1QdOQsezFvYtDhRmTgUMIcT5r1I,1981
|
|
53
|
-
meshtrade/ledger/transaction/v1/transaction_action_pb2.pyi,sha256=h85ohgkpEu2K6qP4Ge66PowcU2FNaEjXVLlOwff7Log,1067
|
|
54
|
-
meshtrade/ledger/transaction/v1/transaction_state_pb2.py,sha256=omGyMuS1vpyNBUmCIBc1Kqk7RbtZrpwprV7d79Y00BU,2033
|
|
55
|
-
meshtrade/ledger/transaction/v1/transaction_state_pb2.pyi,sha256=pl93a9UVYiVEPPrF1SuKUz47CDjytstLLROZ-YpvR8Y,1205
|
|
56
|
-
meshtrade/option/v1/__init__.py,sha256=u_k0Ik08jg7dU7g57HoT1rXKXiHuEf4T_BjtH_9gjBc,115
|
|
57
|
-
meshtrade/option/v1/auth_pb2.py,sha256=2Jod_21noG4sfJv0CEKGyqdfu2wHdjiNbezHemuH6sE,2134
|
|
58
|
-
meshtrade/option/v1/auth_pb2.pyi,sha256=PmphWZWAVZy9BrOcD9w-4gJnoAdZ01G4cwqQBd_g_S0,1154
|
|
59
|
-
meshtrade/option/v1/service_type_pb2.py,sha256=FEl6PE8rZwuqXcsMpDGfMSjAW__QfLIf7rkdLoQf4wI,1884
|
|
60
|
-
meshtrade/option/v1/service_type_pb2.pyi,sha256=sWz7M90lqpbHJCdRyFmSDubuVFBoow6SX_vAYvq4LME,695
|
|
61
|
-
meshtrade/trading/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
meshtrade/trading/direct_order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
meshtrade/trading/direct_order/v1/__init__.py,sha256=AUm8wNpVkGVbfj3B5VaaB3KGDvpzogIHR_uDMNrq1NE,152
|
|
64
|
-
meshtrade/trading/direct_order/v1/direct_order_pb2.py,sha256=b23kBE2YhzvDoYudEbpznmCMOf_C5e1jLBMQLo1D8iE,1655
|
|
65
|
-
meshtrade/trading/direct_order/v1/direct_order_pb2.pyi,sha256=NO_DHoHGFxzTiX5MHJhS7b0szZTXevRNDzxJt5wzt4E,394
|
|
66
|
-
meshtrade/trading/direct_order/v1/service_pb2.py,sha256=f8AgjE-YADHqEfQo3bgMIBQZNv7mwY-qGdHIRXKIybQ,2145
|
|
67
|
-
meshtrade/trading/direct_order/v1/service_pb2.pyi,sha256=PcArOyXsBJgCnbtwZVyMt1gM1hGa4nfnAsn6gkrRiqQ,488
|
|
68
|
-
meshtrade/trading/limit_order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
meshtrade/trading/limit_order/v1/__init__.py,sha256=a_-Ba8Uc_91TJu2JgJog5gY1iOZ_JFi_41ifeQWTFUg,147
|
|
70
|
-
meshtrade/trading/limit_order/v1/limit_order_pb2.py,sha256=LPHGKwwh5ZLzwaWaPM7fMwh3_O20cUea9lNkK5_WIfw,1634
|
|
71
|
-
meshtrade/trading/limit_order/v1/limit_order_pb2.pyi,sha256=qqW6yIlOa146Cr7vuiHBLd8DSOvhhUy3CwJJeC52zFU,393
|
|
72
|
-
meshtrade/trading/limit_order/v1/service_pb2.py,sha256=5fnim6BIvw0JkpjpYNiPA0JbhIn5iUNcgjwEKnpxaIw,2114
|
|
73
|
-
meshtrade/trading/limit_order/v1/service_pb2.pyi,sha256=wwOFcr3mzI2-JK9gJ8o_HUkqbwVM_-SYDRpc9Py8N_w,484
|
|
74
|
-
meshtrade/trading/spot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
-
meshtrade/trading/spot/v1/__init__.py,sha256=UMjL9PwlJ0hrBpmRSSumvAxGzg9WaCAq-K0EWN5W5wM,116
|
|
76
|
-
meshtrade/trading/spot/v1/service_pb2.py,sha256=SBVtcVpUBTrVxGUVOK-j0BibDPbQnpF7SA6WXnHUDeQ,1937
|
|
77
|
-
meshtrade/trading/spot/v1/service_pb2.pyi,sha256=GdFcCTEDwZre2NkomiE7WojLfItpPvllkZa7bBNefH0,457
|
|
78
|
-
meshtrade/trading/spot/v1/spot_pb2.py,sha256=zXtfxzJdH_mfZpadjaIjLpg3rmBUi7sm_9i5-mvuVRc,1534
|
|
79
|
-
meshtrade/trading/spot/v1/spot_pb2.pyi,sha256=DELXsprA9tDCE2Pn1I7J3qIVgYVEI8oJiT6BPIwrR2I,387
|
|
80
|
-
meshtrade/type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
-
meshtrade/type/v1/__init__.py,sha256=dhp6V2wYhb2VtDvRvLjRy_BWGXMxakmOwP4IRI0EodE,2079
|
|
82
|
-
meshtrade/type/v1/address_pb2.py,sha256=dRokCvBkbOIE_AxDfCtQnNUoFSNjZ8f9lFW2ii4yqQk,1795
|
|
83
|
-
meshtrade/type/v1/address_pb2.pyi,sha256=A1PdvzCZpd-JKQhTwwQ3gz2Kw9mOkH3S1imSm78_4Uw,1107
|
|
84
|
-
meshtrade/type/v1/amount.py,sha256=iDaAEB0WpuFwU5qE_gY5XWgqD0x0Z131mrAf-S45x1A,3696
|
|
85
|
-
meshtrade/type/v1/amount_pb2.py,sha256=ympMEAxoG95ElDB_l5fk5y0dTLi5gXgwtD25_8ZNobM,1855
|
|
86
|
-
meshtrade/type/v1/amount_pb2.pyi,sha256=uI8D2Ch66e2hvzQCA5SARE8lrGdU_BYby__P_H-QwvY,749
|
|
87
|
-
meshtrade/type/v1/contact_details_pb2.py,sha256=fKhg7lUMJqa6XyA_cVDCin-hDg1garQ3-xYQlnuxPs0,2007
|
|
88
|
-
meshtrade/type/v1/contact_details_pb2.pyi,sha256=Wk9EFWI_rPuuOvPdKsW9Qo0_c8uNg61U-w__YwPQD9E,1292
|
|
89
|
-
meshtrade/type/v1/date.py,sha256=zrU8HfNFCwht1PyZKsd4lGJZ9OA1UX-bsQYf_4L8CHY,5848
|
|
90
|
-
meshtrade/type/v1/date_pb2.py,sha256=_da0M7jwFYZg1QOaojIesfZUUTTet2vcxjsHaauY_eM,1585
|
|
91
|
-
meshtrade/type/v1/date_pb2.pyi,sha256=knrar5r3GE7weH87Ie0IWv-jN57W3EJN6pTJeXGGPTw,554
|
|
92
|
-
meshtrade/type/v1/decimal_built_in_conversions.py,sha256=Cbxjp8kHJ7E74C4DdXup8uMvZofrwNaXTyIY3xa1iLU,913
|
|
93
|
-
meshtrade/type/v1/decimal_pb2.py,sha256=kzcMQ9eaGUWZlv06K6XftteRwX3vvudwrsKqmA_bkcI,1509
|
|
94
|
-
meshtrade/type/v1/decimal_pb2.pyi,sha256=8qhL7jqAhoYJNzTpEiEPKDSRAYSWgvKd8altyVLISFg,386
|
|
95
|
-
meshtrade/type/v1/ledger.py,sha256=6ftLj8_hTLziAtmUqm71v3hUZ1mG401UzQNp0LZyFqc,719
|
|
96
|
-
meshtrade/type/v1/ledger_pb2.py,sha256=8xJ_7ClfGDwRGImZerIA6D4Zdvdq6jQL0Ebv5XJUgc0,1747
|
|
97
|
-
meshtrade/type/v1/ledger_pb2.pyi,sha256=r3emyUDafn9p3XTzwpnM0gzLiwrmgXYTp8GwZxw8_FM,801
|
|
98
|
-
meshtrade/type/v1/time_of_day.py,sha256=h-o8GoyH-jkMqZQiZ86ylx6Z6jaBPOTLRKCwXPe_oYk,9258
|
|
99
|
-
meshtrade/type/v1/time_of_day_pb2.py,sha256=A6Te0kmK4Qgo-h3tiIkj7oM5nVyaESmwmmTgJezYzkw,1666
|
|
100
|
-
meshtrade/type/v1/time_of_day_pb2.pyi,sha256=VJqfuglQos5-kAHBpWVxwDz4SV5aZ6-EyUFQaNl-VyM,679
|
|
101
|
-
meshtrade/type/v1/token_pb2.py,sha256=48dMzVixXluV46B1Pqnfp-yLIeL0NYVg3ZzKQlX-ohc,1741
|
|
102
|
-
meshtrade/type/v1/token_pb2.pyi,sha256=vsEKtXtIo5xisr1I4oqxcaMMYyfV-GBMM_f9l8cRxlc,687
|
|
103
|
-
meshtrade/wallet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
-
meshtrade/wallet/account/v1/__init__.py,sha256=61CCic_TAKRKDXH7TSowlXdpZ4MioMylUkQ98P2o2Uo,414
|
|
105
|
-
meshtrade/wallet/account/v1/account_pb2.py,sha256=Jh8Dnju5zktGXfzWY5HGrvq1iO82SNZintEZoIZhgXI,1581
|
|
106
|
-
meshtrade/wallet/account/v1/account_pb2.pyi,sha256=GN2bT5Ld2B0KyQUmkDQjHfeXEjLSwfuIE2j70jSMIJE,382
|
|
107
|
-
meshtrade/wallet/account/v1/service_pb2.py,sha256=ckd-WXE0S8ngN9T3opioXhJ06pqw6ok3iAkhfbrM2aI,5129
|
|
108
|
-
meshtrade/wallet/account/v1/service_pb2.pyi,sha256=P6wbs2NYJNJpBUINYv986T7Mxpt3kcY7_JotP1h_gWU,2132
|
|
109
|
-
meshtrade-0.0.8.dist-info/licenses/LICENSE,sha256=7e68NmtCi6H_-e-fbQ82lyTjKKEnLX-Kob8NcYVNaDA,1095
|
|
110
|
-
meshtrade-0.0.8.dist-info/METADATA,sha256=72iy9yKHuDEsNk8NmxxuIq3o3ZgKwHplw4AzzBlEtSQ,1440
|
|
111
|
-
meshtrade-0.0.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
112
|
-
meshtrade-0.0.8.dist-info/top_level.txt,sha256=L1riO18qkORBnB4bc8vQrHyXdTkgl61nII3cLYQYD_g,10
|
|
113
|
-
meshtrade-0.0.8.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
PROPRIETARY LICENSE
|
|
2
|
-
|
|
3
|
-
Copyright (c) [2021] [Mesh B.V.]
|
|
4
|
-
All rights reserved.
|
|
5
|
-
|
|
6
|
-
Permission is hereby granted, free of charge, to any authorized client of Mesh B.V. ("the Client") to use this software ("the Software") solely for the purpose of integrating with and accessing Mesh B.V.'s private application programming interfaces ("the APIs").
|
|
7
|
-
|
|
8
|
-
The Software may not be used for any other purpose. The Client is not permitted to sublicense, modify, merge, publish, distribute, or sell copies of the Software, and the above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
9
|
-
|
|
10
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
File without changes
|