Skip to content

Commit f352fff

Browse files
authored
Feature: new SVM chain should parse as sol (#363)
1 parent 6a9d348 commit f352fff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aleph_client/commands/account.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ async def create(
104104
default=Chain.ETH.value,
105105
)
106106
)
107-
if chain == Chain.SOL:
107+
if chain in (Chain.SOL, Chain.ECLIPSE):
108108
private_key_bytes = parse_solana_private_key(private_key)
109109
else:
110110
private_key_bytes = decode_private_key(private_key, key_format)

0 commit comments

Comments
 (0)