forked from TrueCloudLab/frostfs-testlib
Implemented neofs-go, neo-go, neofs-authmate lib
This commit is contained in:
parent
d3e5ee2231
commit
c48f7b7ff2
25 changed files with 2306 additions and 0 deletions
44
cli/go/go.py
Normal file
44
cli/go/go.py
Normal file
|
@ -0,0 +1,44 @@
|
|||
from typing import Optional
|
||||
|
||||
from shell import Shell
|
||||
|
||||
from .candidate import NeoGoCandidate
|
||||
from .contract import NeoGoContract
|
||||
from .db import NeoGoDb
|
||||
from .nep17 import NeoGoNep17
|
||||
from .node import NeoGoNode
|
||||
from .query import NeoGoQuery
|
||||
from .version import NeoGoVersion
|
||||
from .wallet import NeoGoWallet
|
||||
|
||||
|
||||
class NeoGo:
|
||||
neo_go_exec_path: Optional[str] = None
|
||||
config_path: Optional[str] = None
|
||||
candidate: Optional[NeoGoCandidate] = None
|
||||
contract: Optional[NeoGoContract] = None
|
||||
db: Optional[NeoGoDb] = None
|
||||
nep17: Optional[NeoGoNep17] = None
|
||||
node: Optional[NeoGoNode] = None
|
||||
query: Optional[NeoGoQuery] = None
|
||||
version: Optional[NeoGoVersion] = None
|
||||
wallet: Optional[NeoGoWallet] = None
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
shell: Shell,
|
||||
neo_go_exec_path: Optional[str] = None,
|
||||
config_path: Optional[str] = None,
|
||||
):
|
||||
self.candidate = NeoGoCandidate(
|
||||
shell, neo_go_exec_path, config_path=config_path
|
||||
)
|
||||
self.contract = NeoGoContract(
|
||||
self.neo_go_exec_path, config_path=config_path
|
||||
)
|
||||
self.db = NeoGoDb(shell, neo_go_exec_path, config_path=config_path)
|
||||
self.nep17 = NeoGoNep17(shell, neo_go_exec_path, config_path=config_path)
|
||||
self.node = NeoGoNode(shell, neo_go_exec_path, config_path=config_path)
|
||||
self.query = NeoGoQuery(shell, neo_go_exec_path, config_path=config_path)
|
||||
self.version = NeoGoVersion(shell, neo_go_exec_path, config_path=config_path)
|
||||
self.wallet = NeoGoWallet(shell, neo_go_exec_path, config_path=config_path)
|
Loading…
Add table
Add a link
Reference in a new issue