Skip to content
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

feat: buckets wrapper #26

Merged
merged 12 commits into from
Oct 25, 2024
Merged

feat: buckets wrapper #26

merged 12 commits into from
Oct 25, 2024

Conversation

dtbuchholz
Copy link
Contributor

@dtbuchholz dtbuchholz commented Oct 23, 2024

Summary

Buckets wrapper with read-only calls (list buckets or objects) and bucket creation. Part of #22, but the remaining object-related commands (add, get, delete) will come in a separate PR since this is a bit more involved with offchain processing. Edit: Accompanying PR for object-related add/delete/remove: #27. Closes #22.

Details

  • Adds new LibBucket.sol library and BucketManager.sol wrapper, similar to how Credit.sol and LibCredit.sol work.
    • The rationale on naming convention: we can split out some of the LibBucket.sol logic into LibMachine.sol (or something representing the ADM actor), which handles the CREATE_EXTERNAL calls. Then, we could maybe have a factory pattern where a new Bucket.sol is created, which stores some internal state and uses LibBucket.sol calls for object-related activities. Although, idk if this is necessary with the (eventual) t2<>0x mapping feature.
  • Adds utils for base32 encoding and Blake2 hashing.
    • Ideally, these are handled offchain. Particularly, the Blake2 impl, which is very costly but was needed to decode a t2 address to a string. However, these were required to allow for the Studio to launch.
  • Fixed linting issues wrt errors—i.e., we use explicitly errors over require(...) where necessary.
  • Unified the SPDX license (MIT or Apache) and solc version (^0.8.26) so all contracts match.
  • Docs cleanups and additions for the Bucket Manager.

Testing

See the README for integration tests; all of the bucket methods are shown with cast. Unit tests are also added, albeit, likely not fully comprehensive.

@@ -1,4 +1,6 @@
The MIT License (MIT)
MIT License
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i just wanted to use the same licenses from rust-hoku


/// @title Bucket Manager Contract
/// @dev Implementation of the Hoku Bucket actor EVM interface. See {IBucketManager} for details.
contract BucketManager is IBucketManager {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bucket manager, wrapping all LibBucket.sol methods with overloads

// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity ^0.8.26;

error InvalidValue(string);
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for simplicity, these also get used by LibCredit and LibBucket since they only come up a couple of times.

/// https://github.com/hokunet/ipc/blob/develop/fendermint/actors/objectstore/src/actor.rs
interface IBucketManager {
/// @dev Emitted when a bucket is created.
// TODO: It'd be nice to emit the bucket t2 address, but decoding the CBOR is too expensive.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the Blake2 hashing (below) allows us to parse raw bytes into a t2 address. however, it's very expensive and not worth paying for that execution in a mutating tx. with the 0x<>t2 mapping, this should emit the 0x address and eventually be possible.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice, makes sense.

@@ -12,3 +12,9 @@ enum Environment {
Mainnet,
Foundry
}

/// @dev A key-value pair.
struct KeyValue {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

figured this would be a common type since it could be eventually used in other places, besides for object or machine metadata

pragma solidity ^0.8.26;

/// @dev Base32 encoding and decoding library.
library Base32 {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

praise Claude + Cursor for the assembly, cutting costs by 50%+

/// @dev Implementation of the BLAKE2b hashing algorithm.
/// See Rust implementation: https://github.com/oconnor663/blake2_simd/blob/master/blake2b/src/lib.rs
/// TODO: this is very costly and must be optimized, handled by WASM, or fully offchain.
library Blake2b {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also praise Claude + Cursor for figuring this out. again, ideally not something we do in contracts, but at least it works.

once we have t2<>0x mapping, we don't necessarily need this. but, i wonder if there's some advantage in creating a "utils" Wasm actor that exposes these types of operations? i.e., things that are useful in a Solidity contract, but much more efficient if we called a Wasm actor to do it for us.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good idea. worth considering if something else comes up.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wild stuff here 💪

using LibWasm for *;

// Constants for the actor and method IDs of the Hoku ADM actor
uint64 internal constant ADM_ACTOR_ID = 17;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these constants and logic in create below could be split into some LibMachine.sol contract, which will let us interface the ADM actor and create the Timehub or other contracts. for now, I figured we could keep it simple and do that once the feature is needed.

function decodeCborActorAddress(bytes memory encoded) internal pure returns (string memory) {
if (encoded.length != 21 || encoded[0] != 0x02) revert InvalidValue("Invalid address length or protocol");

bytes memory checksum = Blake2b.hash(encoded, 4);
Copy link
Contributor Author

@dtbuchholz dtbuchholz Oct 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the only reason why Blake2 is needed, and main reason why base32 is needed too

@@ -56,67 +85,22 @@ forge install
forge build
```

## Clean
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some legacy readme stuff got merged back into main...cleaned these up into the sections


Creating a bucket will cost native HOKU tokens, and writing to it will cost credit.

##### List buckets
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"integration" tests

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity ^0.8.26;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

figured i'd just include the "hidden" linting errors showing up in the PR wrt solidity-cbor files...and just update these to use the same license/solc as everything else too

@dtbuchholz
Copy link
Contributor Author

dtbuchholz commented Oct 24, 2024

i ended up figuring out the remaining bucket methods. I have it over on this branch but feel free to merge it into here, if that's easier for a review #27

Copy link
Member

@sanderpick sanderpick left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome work @dtbuchholz. Exciting to see this stuff working!

/// https://github.com/hokunet/ipc/blob/develop/fendermint/actors/objectstore/src/actor.rs
interface IBucketManager {
/// @dev Emitted when a bucket is created.
// TODO: It'd be nice to emit the bucket t2 address, but decoding the CBOR is too expensive.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice, makes sense.

/// @dev Implementation of the BLAKE2b hashing algorithm.
/// See Rust implementation: https://github.com/oconnor663/blake2_simd/blob/master/blake2b/src/lib.rs
/// TODO: this is very costly and must be optimized, handled by WASM, or fully offchain.
library Blake2b {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good idea. worth considering if something else comes up.

/// @dev Implementation of the BLAKE2b hashing algorithm.
/// See Rust implementation: https://github.com/oconnor663/blake2_simd/blob/master/blake2b/src/lib.rs
/// TODO: this is very costly and must be optimized, handled by WASM, or fully offchain.
library Blake2b {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wild stuff here 💪

feat: bucket object operations
@dtbuchholz dtbuchholz merged commit 9394706 into main Oct 25, 2024
7 checks passed
@dtbuchholz dtbuchholz deleted the dtb/buckets-wrapper branch October 25, 2024 00:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Buckets wrapper
2 participants