-
Notifications
You must be signed in to change notification settings - Fork 2
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
Conversation
@@ -1,4 +1,6 @@ | |||
The MIT License (MIT) | |||
MIT License |
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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); |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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; |
There was a problem hiding this comment.
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); |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"integration" tests
0e4dba0
to
ccd3325
Compare
//SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
// SPDX-License-Identifier: MIT OR Apache-2.0 | ||
pragma solidity ^0.8.26; |
There was a problem hiding this comment.
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
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 |
There was a problem hiding this 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. |
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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
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
LibBucket.sol
library andBucketManager.sol
wrapper, similar to howCredit.sol
andLibCredit.sol
work.LibBucket.sol
logic intoLibMachine.sol
(or something representing the ADM actor), which handles theCREATE_EXTERNAL
calls. Then, we could maybe have a factory pattern where a newBucket.sol
is created, which stores some internal state and usesLibBucket.sol
calls for object-related activities. Although, idk if this is necessary with the (eventual) t2<>0x mapping feature.t2
address to a string. However, these were required to allow for the Studio to launch.require(...)
where necessary.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.