Skip to content

Commit

Permalink
feat: add missing option to BuildAllConfig (#580)
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaRedHand authored Feb 19, 2025
1 parent 01368ec commit f99bef1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Each version will have a separate `Breaking Changes` section as well. To describ

### Added 🎉

* Added field `DontUseAllocationManager` to `BuildAllConfig` in [#580](https://github.com/Layr-Labs/eigensdk-go/pull/580)

### Changed

* Fixed BLS aggregation for multiple quorums by @TomasArrachea in [#394](https://github.com/Layr-Labs/eigensdk-go/pull/394)
Expand Down
5 changes: 5 additions & 0 deletions chainio/clients/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ type BuildAllConfig struct {

/// The address of the ServiceManager contract.
ServiceManagerAddress string

/// Setting this to true will disable the fetching of the AllocationManager address.
/// This is useful for older deployments, which don't have the contract deployed.
// TODO: remove this once mainnet is updated with the new contracts
DontUseAllocationManager bool
}

// ReadClients is a struct that holds only the read clients for interacting with the AVS and EL contracts.
Expand Down

0 comments on commit f99bef1

Please sign in to comment.