Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
supernovahs committed Feb 20, 2025
1 parent eb6817e commit a818e54
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,23 @@ Those changes in added, changed or breaking changes, should include usage exampl
el_chain_writer.set_signer(PRIVATE_KEY_STRING);
```

* Added additional method `register_as_operator_m2` in `ELChainWriter` in [#366](https://github.com/Layr-Labs/eigensdk-rs/pull/366).This method is to be used for pre operator-sets.

```rust
let operator = Operator {
address: ADDRESS,
delegation_approver_address: ADDRESS,
metadata_url: "metadata_uri".to_string(),
allocation_delay: None,
_deprecated_earnings_receiver_address: None,
staker_opt_out_window_blocks: Some(0u32),
};
el_chain_writer
.register_as_operator_m2(operator)
.await
.unwrap();
```

### Breaking Changes 🛠

* `TaskMetadata.task_created_block` field changed to `u64` [#362](https://github.com/Layr-Labs/eigensdk-rs/pull/362)
Expand Down

0 comments on commit a818e54

Please sign in to comment.