Jonas Lindstrøm
Jonas Lindstrøm
If something goes wrong during creation of sockets, some connections are not closed. Should be a change to the finally clause in Connector.connectNetwork() where some connections are created before the...
## Steps to Reproduce Issue cargo run --package sui-benchmark --bin stress -- --disjoint-mode true --num-client-threads 3 --num-server-threads 12 --num-transfer-accounts 2 bench --target-qps 5000 --in-flight-ratio 3 --num-workers 10 --run-duration 30s`. Note...
The mysten-util-mem dependency in Sui currently points to a revision on the bump_fastcrypto branch to ensure that the fastcrypto versions (which are also git revision) in Sui and mysten-util-mem are...
All dependencies on cryptographic crates should preferably go through fastcrypto, and to make sure it's stays like this, we should add these, eg. hash functions, to disallowed-methods in .clippy.
This is not supposed to be merged. The PR is created to test the code in CI before it's deployed to testnet.
This PR bumps Sui to the most recent version of fastcrypto. There's been a few changes in the traits in fastcrypto, namely that `signature::Signer` and `signature::Signature` are no longer used....
## Description Add the Poseidon hash function over BN254 to the Sui move framework. Since this is the hash function used by zkLogin, this will enable various extensions to zkLogin....
* Derive Serialize/Deserilialize automatically and use bcs for all serialization and deserialization. * Simplify: Get rid of unnecessary abstractions. * Add more tests and update existing tests. * Refactoring: Move...