forked from bitshares/python-bitshares
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitsharesnoderpc.py
More file actions
64 lines (51 loc) · 1.88 KB
/
Copy pathbitsharesnoderpc.py
File metadata and controls
64 lines (51 loc) · 1.88 KB
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
# -*- coding: utf-8 -*-
from grapheneapi.aio.api import Api as Aio_Api
from bitsharesbase.chains import known_chains
from ..bitsharesnoderpc import Api as Sync_Api
from .. import exceptions
class Api(Aio_Api, Sync_Api):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class BitSharesNodeRPC(Api):
def get_network(self):
"""
Identify the connected network.
This call returns a dictionary with keys chain_id, core_symbol and prefix
"""
# Rely on cached chain properties!
props = self.get_cached_chain_properties()
chain_id = props["chain_id"]
for _, v in known_chains.items():
if v["chain_id"] == chain_id:
return v
raise exceptions.UnknownNetworkException(
"Connecting to unknown network (chain_id: {})!".format(props["chain_id"])
)
async def get_account(self, name, **kwargs):
"""
Get full account details from account name or id.
:param str name: Account name or account id
"""
if len(name.split(".")) == 3:
result = await self.get_objects([name])
return result[0]
else:
return await self.get_account_by_name(name, **kwargs)
async def get_asset(self, name, **kwargs):
"""
Get full asset from name of id.
:param str name: Symbol name or asset id (e.g. 1.3.0)
"""
if len(name.split(".")) == 3:
result = await self.get_objects([name], **kwargs)
return result[0]
else:
result = await self.lookup_asset_symbols([name], **kwargs)
return result[0]
async def get_object(self, o, **kwargs):
"""
Get object with id ``o``
:param str o: Full object id
"""
result = await self.get_objects([o], **kwargs)
return result[0]