Allow account allocations (#161)

* Support repetitions in the tool

* Add support for account allocations

* Update the JSON schema
This commit is contained in:
Omar
2025-09-22 06:19:55 +03:00
committed by GitHub
parent 9b700bfec2
commit 7189361a58
12 changed files with 274 additions and 73 deletions
+4
View File
@@ -490,6 +490,10 @@ impl WalletConfiguration {
})
.clone()
}
pub fn highest_private_key_exclusive(&self) -> U256 {
U256::try_from(self.additional_keys).unwrap()
}
}
fn serialize_private_key<S>(value: &PrivateKeySigner, serializer: S) -> Result<S::Ok, S::Error>