Skip to content

Commit 4f7eda5

Browse files
authored
chore: rename hoku to recall (#70)
fixes #68
1 parent 7080888 commit 4f7eda5

16 files changed

+38
-37
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Hoku Contributors
3+
Copyright (c) 2025 Recall Contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Recall Contracts
22

3-
[![License](https://img.shields.io/github/license/hokunet/contracts.svg)](./LICENSE)
3+
[![License](https://img.shields.io/github/license/recallnet/contracts.svg)](./LICENSE)
44
[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg)](https://github.com/RichardLitt/standard-readme)
55

66
> Recall core Solidity contracts and libraries
@@ -67,7 +67,7 @@ subnet):
6767
| CreditManager | Subnet | `0xTODO` |
6868
| ValidatorGater | Subnet | `0x880126f3134EdFBa4f1a65827D5870f021bb7124` |
6969

70-
To get testnet tokens, visit: [https://faucet.hoku.sh](https://faucet.hoku.sh). Also, you can check
70+
To get testnet tokens, visit: [https://faucet.node-0.testnet.recall.network](https://faucet.node-0.testnet.recall.network). Also, you can check
7171
out the `foundry.toml` file to see the RPC URLs for each network (described in more detail below).
7272

7373
## Usage
@@ -78,7 +78,7 @@ First, clone the repo, and be sure `foundry` is installed on your machine (see
7878
[here](https://book.getfoundry.sh/getting-started/installation)):
7979

8080
```shell
81-
git clone https://github.com/hokunet/contracts.git
81+
git clone https://github.com/recallnet/contracts.git
8282
cd contracts
8383
```
8484

@@ -665,10 +665,10 @@ export BUCKETS=0x314512a8692245cf507ac6E9d0eB805EA820d9a8
665665
The account you use to create buckets should have the following:
666666

667667
- A RECALL token balance in the subnet (e.g., from the faucet at:
668-
[https://faucet.hoku.sh](https://faucet.hoku.sh)). You can verify this with the
669-
[Hoku CLI](https://github.com/hokunet/rust-hoku): `hoku account info`
670-
- A credit balance in the subnet. You can verify this with `hoku credit balance`. If you don't have
671-
credits, you can buy them with the Credits contract above, or run the `hoku credit buy <amount>`
668+
[https://faucet.node-0.testnet.recall.network](https://faucet.node-0.testnet.recall.network)). You can verify this with the
669+
[Recall CLI](https://github.com/recallnet/rust-recall): `recall account info`
670+
- A credit balance in the subnet. You can verify this with `recall credit balance`. If you don't have
671+
credits, you can buy them with the Credits contract above, or run the `recall credit buy <amount>`
672672
command.
673673

674674
Creating a bucket will cost native RECALL tokens, and writing to it will cost credit.
@@ -798,7 +798,7 @@ curl http://localhost:8001/v1/node | jq '.node_id'
798798
```
799799

800800
Or on testnet, you'd replace the URL with public bucket API endpoint
801-
`https://object-api-ignition-0.hoku.sh`.
801+
`https://objects.node-0.testnet.recall.network`.
802802

803803
##### Delete an object
804804

@@ -1012,7 +1012,7 @@ curl http://localhost:8001/v1/node | jq '.node_id'
10121012
```
10131013

10141014
Or on testnet, you'd replace the URL with public bucket API endpoint
1015-
`https://object-api-ignition-0.hoku.sh`.
1015+
`https://objects.node-0.testnet.recall.network`.
10161016

10171017
##### Delete a blob
10181018

foundry.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ libs = ["lib"]
55
test = "test"
66
build_info = true
77
extra_output = ["storageLayout"]
8-
gas_reports = ["Hoku"]
8+
gas_reports = ["Recall"]
99
solc_version = "0.8.26"
1010
optimizer = true
1111
optimizer_runs = 1000000
@@ -31,8 +31,8 @@ wrap_comments = true
3131
localnet_parent = "http://127.0.0.1:8545"
3232
localnet_subnet = "http://127.0.0.1:8645"
3333
testnet_parent = "https://api.calibration.node.glif.io/rpc/v1"
34-
testnet_subnet = "https://evm-ignition-0.hoku.sh"
34+
testnet_subnet = "https://evm.node-0.testnet.recall.network"
3535
devnet = "http://127.0.0.1:8545"
3636
# Note: placeholder; mainnet is not available yet
3737
mainnet_parent = "https://api.calibration.node.glif.io/rpc/v1"
38-
mainnet_subnet = "https://evm-ignition-0.hoku.sh"
38+
mainnet_subnet = "https://evm.node-0.testnet.recall.network"

hardhat.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
storageLayouts: ".storage-layouts",
2121
},
2222
storageLayoutConfig: {
23-
contracts: ['src/Hoku.sol:Hoku', 'src/ValidatorGater.sol:ValidatorGater'],
23+
contracts: ['src/Recall.sol:Recall', 'src/ValidatorGater.sol:ValidatorGater'],
2424
fullPath: true
2525
},
2626
resolve: {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "contracts",
33
"version": "0.0.0",
4-
"description": "Hoku core contracts",
4+
"description": "Recall core contracts",
55
"main": "index.js",
66
"scripts": {
77
"test": "forge test --ffi",

script/ValidatorRewarder.s.sol

+4-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ contract DeployScript is Script {
1919
return proxyAddress;
2020
}
2121

22-
function run(address hokuToken) public returns (ValidatorRewarder) {
22+
function run(address recallToken) public returns (ValidatorRewarder) {
2323
vm.startBroadcast();
24-
proxyAddress =
25-
Upgrades.deployUUPSProxy("ValidatorRewarder.sol", abi.encodeCall(ValidatorRewarder.initialize, (hokuToken)));
24+
proxyAddress = Upgrades.deployUUPSProxy(
25+
"ValidatorRewarder.sol", abi.encodeCall(ValidatorRewarder.initialize, (recallToken))
26+
);
2627
vm.stopBroadcast();
2728

2829
// Check implementation

src/interfaces/IBlobManager.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ pragma solidity ^0.8.26;
33

44
import {AddBlobParams, Blob, BlobStatus, BlobTuple, StorageStats, SubnetStats} from "../types/BlobTypes.sol";
55

6-
/// @dev Hoku Blobs actor EVM interface for managing and querying information about blogs/storage.
6+
/// @dev Recall Blobs actor EVM interface for managing and querying information about blogs/storage.
77
/// See Rust implementation for details:
8-
/// https://github.com/hokunet/ipc/blob/develop/fendermint/actors/blobs/src/actor.rs
8+
/// https://github.com/recallnet/ipc/blob/develop/fendermint/actors/blobs/src/actor.rs
99
interface IBlobManager {
1010
/// @dev Emitted when a blob is added.
1111
event AddBlob(address indexed caller, address indexed sponsor, string blobHash, string subscriptionId);

src/interfaces/IBucketManager.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ pragma solidity ^0.8.26;
33

44
import {AddObjectParams, KeyValue, Machine, ObjectValue, Query} from "../types/BucketTypes.sol";
55

6-
/// @dev Hoku Bucket actor EVM interface for managing objects, and querying object or storage stats.
6+
/// @dev Recall Bucket actor EVM interface for managing objects, and querying object or storage stats.
77
/// See Rust implementation for details:
8-
/// https://github.com/hokunet/ipc/blob/develop/fendermint/actors/objectstore/src/actor.rs
8+
/// https://github.com/recallnet/ipc/blob/develop/fendermint/actors/objectstore/src/actor.rs
99
interface IBucketManager {
1010
/// @dev Emitted when a bucket is created.
1111
/// @param owner The owner.

src/interfaces/ICreditManager.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ pragma solidity ^0.8.26;
33

44
import {Account, Balance, CreditApproval, CreditStats} from "../types/BlobTypes.sol";
55

6-
/// @dev Hoku Blobs actor EVM interface for managing and querying information about credit.
6+
/// @dev Recall Blobs actor EVM interface for managing and querying information about credit.
77
/// See Rust implementation for details:
8-
/// https://github.com/hokunet/ipc/blob/develop/fendermint/actors/blobs/src/actor.rs
8+
/// https://github.com/recallnet/ipc/blob/develop/fendermint/actors/blobs/src/actor.rs
99
interface ICreditManager {
1010
/// @dev Emitted when an account approves credits.
1111
event ApproveCredit(

src/util/Blake2b.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pragma solidity ^0.8.26;
44
/// @dev Implementation of the BLAKE2b hashing algorithm.
55
/// See Rust implementation: https://github.com/oconnor663/blake2_simd/blob/master/blake2b/src/lib.rs
66
/// TODO: this is very costly and must be optimized, handled by WASM, or fully offchain. However, with the following
7-
/// issue, it'll remove the need for this altogether: https://github.com/hokunet/rust-hoku/issues/39
7+
/// issue, it'll remove the need for this altogether: https://github.com/recallnet/rust-recall/issues/39
88
library Blake2b {
99
uint64 private constant OUTBYTES = 64;
1010
uint64 private constant BLOCKBYTES = 128;

src/wrappers/BucketManager.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {LibBucket} from "./LibBucket.sol";
77
import {LibWasm} from "./LibWasm.sol";
88

99
/// @title Bucket Manager Contract
10-
/// @dev Implementation of the Hoku Bucket actor EVM interface. See {IBucketManager} for details.
10+
/// @dev Implementation of the Recall Bucket actor EVM interface. See {IBucketManager} for details.
1111
contract BucketManager is IBucketManager {
1212
/// @dev See {IBucketManager-createBucket}.
1313
function createBucket() external {

src/wrappers/CreditManager.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {Account, Balance, CreditApproval, CreditStats} from "../types/BlobTypes.
66
import {LibBlob} from "./LibBlob.sol";
77

88
/// @title Credits Contract
9-
/// @dev Implementation of the Hoku Blobs actor EVM interface. See {ICredit} for details.
9+
/// @dev Implementation of the Recall Blobs actor EVM interface. See {ICredit} for details.
1010
contract CreditManager is ICreditManager {
1111
/// @dev See {ICreditManager-getAccount}.
1212
function getAccount(address addr) external view returns (Account memory account) {

src/wrappers/LibBlob.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ import {KeyValue} from "../types/CommonTypes.sol";
2222
import {InvalidValue, LibWasm} from "./LibWasm.sol";
2323

2424
/// @title Blobs Library
25-
/// @dev Utility functions for interacting with the Hoku Blobs actor.
25+
/// @dev Utility functions for interacting with the Recall Blobs actor.
2626
library LibBlob {
2727
using LibWasm for *;
2828

29-
// Constants for the actor and method IDs of the Hoku Blobs actor
29+
// Constants for the actor and method IDs of the Recall Blobs actor
3030
uint64 internal constant ACTOR_ID = 66;
3131

3232
// User methods

src/wrappers/LibBucket.sol

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ import {
1515
import {InvalidValue, LibWasm} from "./LibWasm.sol";
1616

1717
/// @title Bucket Library
18-
/// @dev Utility functions for interacting with the Hoku Bucket actor.
18+
/// @dev Utility functions for interacting with the Recall Bucket actor.
1919
library LibBucket {
2020
using LibWasm for *;
2121

22-
// Constants for the actor and method IDs of the Hoku ADM actor
22+
// Constants for the actor and method IDs of the Recall ADM actor
2323
uint64 internal constant ADM_ACTOR_ID = 17;
2424
// Methods that don't interact with an instance of a Bucket contract
2525
uint64 internal constant METHOD_CREATE_EXTERNAL = 1214262202;
@@ -157,7 +157,7 @@ library LibBucket {
157157
encoded[1] = params.key.encodeCborBytes();
158158
encoded[2] = params.blobHash.encodeCborBlobHashOrNodeId();
159159
// TODO: this currently is hardcoded to a 32 byte array of all zeros, but should use the method above
160-
// Once https://github.com/hokunet/ipc/issues/300 is merged, this'll need to change
160+
// Once https://github.com/recallnet/ipc/issues/300 is merged, this'll need to change
161161
encoded[3] = bytes(params.recoveryHash).length == 0
162162
? hex"0000000000000000000000000000000000000000000000000000000000000000".encodeCborFixedArray()
163163
: params.recoveryHash.encodeCborBlobHashOrNodeId();

test/ValidatorRewarderFFI.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ contract ValidatorRewarderFFITest is ValidatorRewarderTestBase {
115115
// After all checkpoints are processed, verify total increase matches
116116
uint256 actualTotalIncrease = token.totalSupply() - initialSupply;
117117
// due to rounding in each checkpoint, accumulated error over 5 years is 45,773,118
118-
// i.e. we print 0.000_000_000_045_679_254 HOKU more than expected!
118+
// i.e. we print 0.000_000_000_045_679_254 RECALL more than expected!
119119
assertApproxEqAbs(
120120
actualTotalIncrease,
121121
expectedTotalIncrease,

test/scripts/wrapper_integration_test.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# This script should be used to run ad-hoc integration tests for the Hoku wrappers. It assumes that
3+
# This script should be used to run ad-hoc integration tests for the Recall wrappers. It assumes that
44
# you have the localnet running on your machine, and the accounts and RPCs are hardcoded with the
55
# values below. It will deploy the contracts, run the tests, and print the results to the console.
66

@@ -24,10 +24,10 @@ echo "- Iroh source: $SOURCE"
2424
TEMP_FILE=$(mktemp)
2525
echo "hello" > $TEMP_FILE
2626

27-
# Create a bucket with the `hoku` CLI; this seeds the network with the blob for future tests
27+
# Create a bucket with the `recall` CLI; this seeds the network with the blob for future tests
2828
OBJECT_KEY="hello/world"
29-
BUCKET_ADDR=$(HOKU_PRIVATE_KEY=$PRIVATE_KEY HOKU_NETWORK=localnet hoku bucket create | jq '.address' | tr -d '"')
30-
create_object_response=$(HOKU_PRIVATE_KEY=$PRIVATE_KEY HOKU_NETWORK=localnet hoku bu add --address $BUCKET_ADDR --key $OBJECT_KEY $TEMP_FILE)
29+
BUCKET_ADDR=$(RECALL_PRIVATE_KEY=$PRIVATE_KEY RECALL_NETWORK=localnet recall bucket create | jq '.address' | tr -d '"')
30+
create_object_response=$(RECALL_PRIVATE_KEY=$PRIVATE_KEY RECALL_NETWORK=localnet recall bu add --address $BUCKET_ADDR --key $OBJECT_KEY $TEMP_FILE)
3131
SIZE=$(echo $create_object_response | jq '.object.size')
3232
BLOB_HASH=$(echo $create_object_response | jq '.object.hash' | tr -d '"')
3333

0 commit comments

Comments
 (0)