-
Notifications
You must be signed in to change notification settings - Fork 4
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
Integrate with eigensdk wallet #19
Conversation
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.
LGTM. One debug statement I'm not sure if you actually meant to leave in, but otherwise feel free to merge :)
if err != nil { | ||
return fmt.Errorf("Cannot get sender address: %w", err) | ||
} | ||
logger.Infof("Sender address: %s", sender.Hex()) |
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.
Is this needed, or was this only used for debugging?
Or should this be at the debug level?
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.
I left it at info level because it seemed useful enough and it's logged only once at initialization
This PR integrates EigenSDK wallet so that transactions can be sent using either a EOA with a private key or a Fireblocks MPC wallet.
It should be updated to identify correct sender and locally tested after Layr-Labs/eigensdk-go#154 is merged.