-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtypes.py
102 lines (68 loc) · 2.05 KB
/
types.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
from abc import abstractmethod
from enum import Enum
from typing import Dict, Optional, Protocol, TypeVar
from pydantic import BaseModel, Field
__all__ = ("StorageEnum", "Account", "AccountFromPrivateKey", "GenericMessage")
from aleph_message.models import AlephMessage, Chain
class StorageEnum(str, Enum):
ipfs = "ipfs"
storage = "storage"
# Use a protocol to avoid importing crypto libraries
class Account(Protocol):
CHAIN: str
CURVE: str
@abstractmethod
async def sign_message(self, message: Dict) -> Dict: ...
@abstractmethod
async def sign_raw(self, buffer: bytes) -> bytes: ...
@abstractmethod
def get_address(self) -> str: ...
@abstractmethod
def get_public_key(self) -> str: ...
class AccountFromPrivateKey(Account, Protocol):
"""Only accounts that are initialized from a private key string are supported."""
def __init__(self, private_key: bytes, chain: Chain): ...
async def sign_raw(self, buffer: bytes) -> bytes: ...
def export_private_key(self) -> str: ...
def switch_chain(self, chain: Optional[str] = None) -> None: ...
GenericMessage = TypeVar("GenericMessage", bound=AlephMessage)
class SEVInfo(BaseModel):
"""
An AMD SEV platform information.
"""
enabled: bool
api_major: int
api_minor: int
build_id: int
policy: int
state: str
handle: int
class SEVMeasurement(BaseModel):
"""
A SEV measurement data get from Qemu measurement.
"""
sev_info: SEVInfo
launch_measure: str
class ChainInfo(BaseModel):
"""
A chain information.
"""
chain_id: int
rpc: str
token: Optional[str] = None
super_token: Optional[str] = None
active: bool = True
class StoredContent(BaseModel):
"""
A stored content.
"""
filename: Optional[str] = Field(default=None)
hash: Optional[str] = Field(default=None)
url: Optional[str] = Field(default=None)
error: Optional[str] = Field(default=None)
class TokenType(str, Enum):
"""
A token type.
"""
GAS = "GAS"
ALEPH = "ALEPH"