We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7840b47 commit 68243c9Copy full SHA for 68243c9
pyinjective/wallet.py
@@ -263,6 +263,9 @@ def get_subaccount_id(self, index: int) -> str:
263
id = index.to_bytes(12, byteorder='big').hex()
264
return '0x' + self.addr.hex() + id
265
266
+ def get_ethereum_address(self) -> str:
267
+ return '0x' + self.addr.hex()
268
+
269
async def async_init_num_seq(self, lcd_endpoint: str) -> "Address":
270
async with aiohttp.ClientSession() as session:
271
async with session.request(
0 commit comments