-
Notifications
You must be signed in to change notification settings - Fork 16
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
chore: merge main
into dev
#205
Conversation
Implement `send_tx_with_retries` to the Simple TxManager that sends a transaction and retries using Exponential Backoff
This PR implements the method taken from Go SDK repo: ``` go func (r *ChainReader) QueryRegistrationDetail( opts *bind.CallOpts, operatorAddress common.Address, ) ([]bool, error) { operatorId, err := r.GetOperatorId(opts, operatorAddress) if err != nil { return nil, err } value, err := r.registryCoordinator.GetCurrentQuorumBitmap(opts, operatorId) if err != nil { return nil, err } numBits := value.BitLen() var quorums []bool for i := 0; i < numBits; i++ { quorums = append(quorums, value.Int64()&(1<<i) != 0) } return quorums, nil } ``` --------- Co-authored-by: supernovahs <supernovahs@proton.me>
Co-authored-by: tomasarrachea <tomas.arrachea@lambdaclass.com>
Co-authored-by: tomasarrachea <tomas.arrachea@lambdaclass.com>
Co-authored-by: tomasarrachea <tomas.arrachea@lambdaclass.com>
Co-authored-by: Pablo Deymonnaz <deymonnaz@gmail.com> Co-authored-by: supernovahs <91280922+supernovahs@users.noreply.github.com> Co-authored-by: supernovahs <supernovahs@proton.me> Co-authored-by: Tomás Grüner <47506558+MegaRedHand@users.noreply.github.com>
Co-authored-by: Pablo Deymonnaz <deymonnaz@gmail.com> Co-authored-by: Tomás Grüner <47506558+MegaRedHand@users.noreply.github.com> Co-authored-by: supernovahs <91280922+supernovahs@users.noreply.github.com> Co-authored-by: supernovahs <supernovahs@proton.me>
Co-authored-by: supernovahs <supernovahs@proton.me> Co-authored-by: Tomás Grüner <47506558+MegaRedHand@users.noreply.github.com>
I run into some problems when running the tests locally. This PR adds the way I solved those, for future contributors.
Co-authored-by: Tomas <tomas.arrachea@lambdaclass.com> Co-authored-by: Pablo Deymonnaz <deymonnaz@gmail.com> Co-authored-by: supernovahs <supernovahs@proton.me>
Co-authored-by: supernovahs <supernovahs@proton.me>
this is using the latest slashing bindings? |
No. It has the bindings from the v0.1.2 release. After this PR is merged I'll update the |
This PR fixes the CI by changing the docker setup action we were using for docker's official one
This PR includes the error message on the readme warning and fixes the command listed.
Co-authored-by: supernovahs <supernovahs@proton.me>
This reverts commit 5ce424c.
Seems like |
@supernovahs Just a heads-up, but we're already working on the fix (still debugging, though). |
No description provided.