-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated Lido integration #159
Conversation
Is this ready for review? CI checks are failing, please re-run them and resolve issue if any |
@sgzsh269 Can you please help me with debugging the issue with CI? |
can you resolve the merge conflicts and re-run the jobs |
That helped. thanks! |
@iamsahu can you please resolve the merge conflicts in your pending PRs, then let me know and will work with you to get all of them merged |
chat/display_widgets.py
Outdated
elif command == 'hop-protocol-bridge': | ||
items = params.split(",") | ||
lines.append(f"hop protocol bridge action for amount: {items[0]}, token symbol: {items[1]}, from chain: {items[2]}, to chain: {items[3]}.") | ||
elif command == 'tx-replay': | ||
items = params.split(",") | ||
lines.append(f"replay transaction with tx hash: {items[0]}") | ||
elif command == "deposit-eth-lido": | ||
params = json.loads(params) | ||
lines.append(f"deposit eth to lido action for amount: {params['amount']}.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to change to look up by list indices instead of param names
No description provided.