Skip to content

Commit b7c31ba

Browse files
authored
chore: rename to recall (#58)
Renames "Hoku" to "Recall" everywhere in this repo. Not really sure why the build doesn't work in CI. Not having any issues locally.
1 parent 77a42f2 commit b7c31ba

8 files changed

+89
-89
lines changed

README.md

+29-29
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Hoku Contracts
1+
# Recall Contracts
22

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

6-
> Hoku core Solidity contracts and libraries
6+
> Recall core Solidity contracts and libraries
77
88
## Table of Contents
99

@@ -33,9 +33,9 @@
3333
## Background
3434

3535
This project is built with [Foundry](https://book.getfoundry.sh/) and contains the core contracts
36-
for Hoku. It includes the following:
36+
for Recall. It includes the following:
3737

38-
- `Hoku.sol`: An ERC20 token implementation.
38+
- `Recall.sol`: An ERC20 token implementation.
3939
- `Faucet.sol`: The accompanying onchain faucet (rate limiter) contract for dripping testnet funds.
4040
- `CreditManager.sol`: Manage subnet credit, including credit purchases, approvals/rejections, and
4141
related read-only operations (uses the `LibCredit` and `LibWasm` libraries).
@@ -55,12 +55,12 @@ for Hoku. It includes the following:
5555

5656
### Deployments
5757

58-
The following contracts are deployed in the testnet environment (Filecoin Calibration or the Hoku
58+
The following contracts are deployed in the testnet environment (Filecoin Calibration or the Recall
5959
subnet):
6060

6161
| Contract | Chain | Address |
6262
| -------------- | ----------- | -------------------------------------------- |
63-
| Hoku (ERC20) | Calibration | `0x20d8a696091153c4d4816ba1fdefe113f71e0905` |
63+
| Recall (ERC20) | Calibration | `0x20d8a696091153c4d4816ba1fdefe113f71e0905` |
6464
| Faucet | Subnet | `0x7Aff9112A46D98A455f4d4F93c0e3D2438716A44` |
6565
| BlobManager | Subnet | `0xTODO` |
6666
| BucketManager | Subnet | `0xTODO` |
@@ -101,15 +101,15 @@ pnpm clean
101101

102102
The scripts for deploying contracts are in `script/` directory:
103103

104-
- `Hoku.s.sol`: Deploy the Hoku ERC20 contract.
104+
- `Recall.s.sol`: Deploy the Recall ERC20 contract.
105105
- `Faucet.s.sol`: Deploy the faucet contract.
106106
- `ValidatorGater.s.sol`: Deploy the validator gater contract.
107107
- `CreditManager.s.sol`: Deploy the credit contract.
108108
- `BlobManager.s.sol`: Deploy the blobs contract.
109109
- `BucketManager.s.sol`: Deploy the Bucket Manager contract.
110-
- `Bridge.s.sol`: Deploy the bridge contract—relevant for the Hoku ERC20 on live chains.
110+
- `Bridge.s.sol`: Deploy the bridge contract—relevant for the Recall ERC20 on live chains.
111111

112-
> [!NOTE] If you're deploying _to_ the Hoku subnet or Filecoin Calibration, you'll need to
112+
> [!NOTE] If you're deploying _to_ the Recall subnet or Filecoin Calibration, you'll need to
113113
> (significantly) bump the gas estimation multiplier by adding a `-g 100000` flag to the
114114
> `forge script` command.
115115
@@ -126,7 +126,7 @@ You can run a script with `forge script`, passing the script path/name and any a
126126
- `localnet_parent`: Deploy to localnet and the parent (Anvil) node.
127127
- `localnet_subnet`: Deploy to localnet and the subnet node.
128128
- `testnet_parent`: Deploy to testnet and the parent network (Filecoin Calibration).
129-
- `testnet_subnet`: Deploy to testnet and the subnet (Hoku).
129+
- `testnet_subnet`: Deploy to testnet and the subnet (Recall).
130130
- `devnet`: Deploy to the devnet network.
131131

132132
The `--target-contract` (`--tc`) should be `DeployScript`, and it takes an argument for the
@@ -141,29 +141,29 @@ execute deployment with the given argument above, and the `--broadcast` flag act
141141
transaction to the network. Recall that you **must** set `-g 100000` to ensure the gas estimate is
142142
sufficiently high.
143143

144-
Lastly, if you're deploying the Hoku ERC20, the environment will dictate different token symbols:
144+
Lastly, if you're deploying the Recall ERC20, the environment will dictate different token symbols:
145145

146-
- Local: prefixes `HOKU` with `l`
147-
- Testnet: prefixes `HOKU` with `t`
148-
- Mainnet: uses `HOKU`
146+
- Local: prefixes `RECALL` with `l`
147+
- Testnet: prefixes `RECALL` with `t`
148+
- Mainnet: uses `RECALL`
149149

150150
Mainnet deployments require the address of the Axelar Interchain Token Service on chain you are
151151
deploying to, which is handled in the ERC20's `DeployScript` logic.
152152

153153
#### Localnet
154154

155-
##### Hoku ERC20
155+
##### Recall ERC20
156156

157-
Deploy the Hoku ERC20 contract to the localnet parent chain (i.e., `http://localhost:8545`). Note
157+
Deploy the Recall ERC20 contract to the localnet parent chain (i.e., `http://localhost:8545`). Note
158158
the `-g` flag is not used here since the gas estimate is sufficiently low on Anvil.
159159

160160
```shell
161-
forge script script/Hoku.s.sol --tc DeployScript --sig 'run(string)' local --rpc-url localnet_parent --private-key $PRIVATE_KEY --broadcast -vv
161+
forge script script/Recall.s.sol --tc DeployScript --sig 'run(string)' local --rpc-url localnet_parent --private-key $PRIVATE_KEY --broadcast -vv
162162
```
163163

164164
##### Faucet
165165

166-
Deploy the Faucet contract to the localnet subnet. The second argument is the initial supply of Hoku
166+
Deploy the Faucet contract to the localnet subnet. The second argument is the initial supply of Recall
167167
tokens, owned by the deployer's account which will be transferred to the faucet contract (e.g., 5000
168168
with 10\*\*18 decimal units).
169169

@@ -197,18 +197,18 @@ forge script script/BlobManager.s.sol --tc DeployScript --sig 'run()' --rpc-url
197197

198198
#### Testnet
199199

200-
##### Hoku ERC20
200+
##### Recall ERC20
201201

202-
Deploy the Hoku ERC20 contract to the testnet parent chain. Note the `-g` flag _is_ used here (this
202+
Deploy the Recall ERC20 contract to the testnet parent chain. Note the `-g` flag _is_ used here (this
203203
differs from the localnet setup above since we're deploying to Filecoin Calibration);
204204

205205
```shell
206-
forge script script/Hoku.s.sol --tc DeployScript --sig 'run(string)' testnet --rpc-url testnet_parent --private-key $PRIVATE_KEY --broadcast -g 100000 -vv
206+
forge script script/Recall.s.sol --tc DeployScript --sig 'run(string)' testnet --rpc-url testnet_parent --private-key $PRIVATE_KEY --broadcast -g 100000 -vv
207207
```
208208

209209
##### Faucet
210210

211-
Deploy the Faucet contract to the testnet subnet. The second argument is the initial supply of Hoku
211+
Deploy the Faucet contract to the testnet subnet. The second argument is the initial supply of Recall
212212
tokens, owned by the deployer's account which will be transferred to the faucet contract (e.g., 5000
213213
with 10\*\*18 decimal units).
214214

@@ -249,29 +249,29 @@ If you're trying to simply deploy to an Anvil node (i.e., `http://localhost:8545
249249
same pattern, or just explicitly set the RPC URL:
250250

251251
```shell
252-
forge script script/Hoku.s.sol --tc DeployScript --sig 'run(string)' local --rpc-url http://localhost:8545 --private-key $PRIVATE_KEY --broadcast -vv
252+
forge script script/Recall.s.sol --tc DeployScript --sig 'run(string)' local --rpc-url http://localhost:8545 --private-key $PRIVATE_KEY --broadcast -vv
253253
```
254254

255255
#### Mainnet
256256

257257
Mainnet is not yet available. The RPC URLs (`mainnet_parent` and `mainnet_subnet`) are placeholders,
258258
pointing to the same environment as the testnet.
259259

260-
##### Hoku ERC20
260+
##### Recall ERC20
261261

262-
However, if you'd like to deploy the HOKU ERC20 contract to mainnet Ethereum or Filecoin, you can
262+
However, if you'd like to deploy the RECALL ERC20 contract to mainnet Ethereum or Filecoin, you can
263263
use the following. Note these will enable behavior for the Axelar Interchain Token Service.
264264

265265
Deploy to Ethereum:
266266

267267
```shell
268-
forge script script/Hoku.s.sol:DeployScript --sig 'run(string)' ethereum --rpc-url https://eth.merkle.io --private-key $PRIVATE_KEY --broadcast -vv
268+
forge script script/Recall.s.sol:DeployScript --sig 'run(string)' ethereum --rpc-url https://eth.merkle.io --private-key $PRIVATE_KEY --broadcast -vv
269269
```
270270

271271
And for Filecoin:
272272

273273
```shell
274-
forge script script/Hoku.s.sol:DeployScript --sig 'run(string)' filecoin --rpc-url https://api.node.glif.io/rpc/v1 --private-key $PRIVATE_KEY --broadcast -vv
274+
forge script script/Recall.s.sol:DeployScript --sig 'run(string)' filecoin --rpc-url https://api.node.glif.io/rpc/v1 --private-key $PRIVATE_KEY --broadcast -vv
275275
```
276276

277277
## Development
@@ -670,14 +670,14 @@ export BUCKETS=0x314512a8692245cf507ac6E9d0eB805EA820d9a8
670670

671671
The account you use to create buckets should have the following:
672672

673-
- A HOKU token balance in the subnet (e.g., from the faucet at:
673+
- A RECALL token balance in the subnet (e.g., from the faucet at:
674674
[https://faucet.hoku.sh](https://faucet.hoku.sh)). You can verify this with the
675675
[Hoku CLI](https://github.com/hokunet/rust-hoku): `hoku account info`
676676
- A credit balance in the subnet. You can verify this with `hoku credit balance`. If you don't have
677677
credits, you can buy them with the Credits contract above, or run the `hoku credit buy <amount>`
678678
command.
679679

680-
Creating a bucket will cost native HOKU tokens, and writing to it will cost credit.
680+
Creating a bucket will cost native RECALL tokens, and writing to it will cost credit.
681681

682682
##### Create a bucket
683683

script/Bridge.s.sol

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.26;
33

4-
import {Hoku} from "../src/token/Hoku.sol";
4+
import {Recall} from "../src/token/Recall.sol";
55
import {IInterchainTokenService} from
66
"@axelar-network/interchain-token-service/contracts/interfaces/IInterchainTokenService.sol";
77
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
@@ -53,11 +53,11 @@ contract BridgeOps is Script {
5353
function isMinter(address proxyAddress, address addressToCheck) public view {
5454
console.log("Proxy address: ", proxyAddress);
5555

56-
// Create Hoku instance
57-
Hoku hoku = Hoku(proxyAddress);
56+
// Create Recall instance
57+
Recall recall = Recall(proxyAddress);
5858

5959
// Check if the given address has the MINTER_ROLE
60-
bool hasMinterRole = hoku.hasRole(hoku.MINTER_ROLE(), addressToCheck);
60+
bool hasMinterRole = recall.hasRole(recall.MINTER_ROLE(), addressToCheck);
6161

6262
console.log("Address to check: ", addressToCheck);
6363
console.log("Has MINTER_ROLE: ", hasMinterRole);
@@ -67,14 +67,14 @@ contract BridgeOps is Script {
6767
console.log("Minting funds to address: ", recipient);
6868
console.log("Amount: ", amount);
6969

70-
Hoku hoku = Hoku(proxyAddress);
70+
Recall recall = Recall(proxyAddress);
7171
vm.startBroadcast();
7272
// Ensure the caller has the MINTER_ROLE
7373
// solhint-disable-next-line custom-errors
74-
require(hoku.hasRole(hoku.MINTER_ROLE(), msg.sender), "Caller is not a minter");
74+
require(recall.hasRole(recall.MINTER_ROLE(), msg.sender), "Caller is not a minter");
7575

7676
// Mint tokens to the recipient
77-
hoku.mint(recipient, amount);
77+
recall.mint(recipient, amount);
7878
vm.stopBroadcast();
7979

8080
console.log("Minting successful");
@@ -147,7 +147,7 @@ contract BridgeOps is Script {
147147
console.log("Recipient: ", recipient);
148148
console.log("Amount: ", amount);
149149

150-
Hoku hoku = Hoku(proxyAddress);
150+
Recall recall = Recall(proxyAddress);
151151

152152
uint256 gasEstimate = estimateGas(destinationChain);
153153
console.log("Gas estimate result: ", gasEstimate);
@@ -159,18 +159,18 @@ contract BridgeOps is Script {
159159
vm.startBroadcast();
160160

161161
// Log balance of the sender
162-
uint256 senderBalance = hoku.balanceOf(msg.sender);
162+
uint256 senderBalance = recall.balanceOf(msg.sender);
163163
console.log("Sender balance: ", senderBalance);
164164

165165
// Approve the token manager to spend tokens on behalf of the sender
166-
hoku.approve(INTERCHAIN_TOKEN_SERVICE, amount);
166+
recall.approve(INTERCHAIN_TOKEN_SERVICE, amount);
167167
// Log the currently approved amount for the its
168-
uint256 currentApproval = hoku.allowance(msg.sender, INTERCHAIN_TOKEN_SERVICE);
168+
uint256 currentApproval = recall.allowance(msg.sender, INTERCHAIN_TOKEN_SERVICE);
169169
console.log("Current approval for ITS: ", currentApproval);
170170

171171
vm.breakpoint("a");
172172
// Perform the interchain transfer with empty metadata
173-
hoku.interchainTransfer{value: gasEstimate}(destinationChain, recipientBytes, amount, "");
173+
recall.interchainTransfer{value: gasEstimate}(destinationChain, recipientBytes, amount, "");
174174

175175
vm.stopBroadcast();
176176

@@ -180,9 +180,9 @@ contract BridgeOps is Script {
180180
function checkBalance(address proxyAddress, address accountToCheck) public view {
181181
console.log("Checking balance for address: ", accountToCheck);
182182

183-
Hoku hoku = Hoku(proxyAddress);
183+
Recall recall = Recall(proxyAddress);
184184
// Get the balance of the account
185-
uint256 balance = hoku.balanceOf(accountToCheck);
185+
uint256 balance = recall.balanceOf(accountToCheck);
186186

187187
console.log("Balance: ", balance);
188188
}
@@ -191,16 +191,16 @@ contract BridgeOps is Script {
191191
console.log("Setting approval for address: ", account);
192192
console.log("Amount: ", amount);
193193

194-
Hoku hoku = Hoku(proxyAddress);
194+
Recall recall = Recall(proxyAddress);
195195

196196
vm.startBroadcast();
197197

198-
uint256 currentApproval = hoku.allowance(msg.sender, account);
198+
uint256 currentApproval = recall.allowance(msg.sender, account);
199199
console.log("Current approval: ", currentApproval);
200200

201-
hoku.approve(account, amount + 1);
201+
recall.approve(account, amount + 1);
202202

203-
currentApproval = hoku.allowance(msg.sender, account);
203+
currentApproval = recall.allowance(msg.sender, account);
204204
console.log("Current approval: ", currentApproval);
205205

206206
vm.stopBroadcast();

script/Hoku.s.sol script/Recall.s.sol

+13-13
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// solhint-disable-next-line one-contract-per-file
33
pragma solidity ^0.8.26;
44

5-
import {Hoku} from "../src/token/Hoku.sol";
5+
import {Recall} from "../src/token/Recall.sol";
66
import {IInterchainTokenService} from
77
"@axelar-network/interchain-token-service/contracts/interfaces/IInterchainTokenService.sol";
88
import {ITokenManagerType} from "@axelar-network/interchain-token-service/contracts/interfaces/ITokenManagerType.sol";
@@ -19,7 +19,7 @@ contract DeployScript is Script {
1919
return proxyAddress;
2020
}
2121

22-
function run(string memory network) public returns (Hoku) {
22+
function run(string memory network) public returns (Recall) {
2323
vm.startBroadcast();
2424

2525
string memory prefix = "";
@@ -32,36 +32,36 @@ contract DeployScript is Script {
3232
revert("Unsupported network.");
3333
}
3434

35-
bytes32 itsSalt = keccak256("HOKU_SALT");
35+
bytes32 itsSalt = keccak256("RECALL_SALT");
3636
proxyAddress = Upgrades.deployUUPSProxy(
37-
"Hoku.sol", abi.encodeCall(Hoku.initialize, (prefix, INTERCHAIN_TOKEN_SERVICE, itsSalt))
37+
"Recall.sol", abi.encodeCall(Recall.initialize, (prefix, INTERCHAIN_TOKEN_SERVICE, itsSalt))
3838
);
3939

4040
// Check implementation
4141
address implAddr = Upgrades.getImplementationAddress(proxyAddress);
4242
console.log("Implementation address: ", implAddr);
4343

44-
Hoku hoku = Hoku(proxyAddress);
44+
Recall recall = Recall(proxyAddress);
4545

46-
console.log("Deployer: ", hoku.deployer());
46+
console.log("Deployer: ", recall.deployer());
4747

4848
if (Strings.equal(network, "filecoin") || Strings.equal(network, "ethereum")) {
4949
console.log("Deploying token manager");
5050
IInterchainTokenService itsContract = IInterchainTokenService(INTERCHAIN_TOKEN_SERVICE);
51-
bytes memory params = abi.encode(abi.encodePacked(hoku.deployer()), address(hoku));
51+
bytes memory params = abi.encode(abi.encodePacked(recall.deployer()), address(recall));
5252
itsContract.deployTokenManager(itsSalt, "", ITokenManagerType.TokenManagerType.MINT_BURN_FROM, params, 0);
53-
bytes32 itsTokenId = hoku.interchainTokenId();
53+
bytes32 itsTokenId = recall.interchainTokenId();
5454

55-
console.log("Hoku Interchain Token ID: ", Strings.toHexString(uint256(itsTokenId), 32));
55+
console.log("Recall Interchain Token ID: ", Strings.toHexString(uint256(itsTokenId), 32));
5656
address tokenManager = itsContract.tokenManagerAddress(itsTokenId);
5757
console.log("Token manager: ", tokenManager);
5858

5959
// Grant minter role to token manager
60-
hoku.grantRole(hoku.MINTER_ROLE(), tokenManager);
60+
recall.grantRole(recall.MINTER_ROLE(), tokenManager);
6161
}
6262
vm.stopBroadcast();
6363

64-
return hoku;
64+
return recall;
6565
}
6666
}
6767

@@ -80,9 +80,9 @@ contract UpgradeProxyScript is Script {
8080

8181
// Upgrade proxy to new implementation
8282
Options memory opts;
83-
opts.referenceContract = "Hoku.sol";
83+
opts.referenceContract = "Recall.sol";
8484
vm.startBroadcast(deployerPrivateKey);
85-
Upgrades.upgradeProxy(proxy, "Hoku.sol", "", opts);
85+
Upgrades.upgradeProxy(proxy, "Recall.sol", "", opts);
8686
vm.stopBroadcast();
8787

8888
// Check new implementation

src/token/Hoku.sol src/token/Recall.sol

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ import {PausableUpgradeable} from "@openzeppelin/contracts-upgradeable/contracts
1616
import {ReentrancyGuardUpgradeable} from
1717
"@openzeppelin/contracts-upgradeable/contracts/utils/ReentrancyGuardUpgradeable.sol";
1818

19-
/// @title Hoku Token Contract
19+
/// @title Recall Token Contract
2020
/// @dev Implements an upgradeable ERC20 token with additional features like pausing and minting
21-
contract Hoku is
21+
contract Recall is
2222
ERC20BurnableUpgradeable,
2323
AccessControlUpgradeable,
2424
PausableUpgradeable,
@@ -43,8 +43,8 @@ contract Hoku is
4343
/// @param its The interchain token service address
4444
/// @param itsSalt The salt for the interchain token service
4545
function initialize(string memory prefix, address its, bytes32 itsSalt) public initializer {
46-
string memory symbol = string(abi.encodePacked(prefix, "HOKU"));
47-
__ERC20_init("Hoku", symbol);
46+
string memory symbol = string(abi.encodePacked(prefix, "RECALL"));
47+
__ERC20_init("Recall", symbol);
4848
__AccessControl_init();
4949
__Pausable_init();
5050
__ReentrancyGuard_init();

0 commit comments

Comments
 (0)