1
- # Hoku Contracts
1
+ # Recall Contracts
2
2
3
3
[ ![ License] ( https://img.shields.io/github/license/hokunet/contracts.svg )] ( ./LICENSE )
4
4
[ ![ standard-readme compliant] ( https://img.shields.io/badge/standard--readme-OK-green.svg )] ( https://github.com/RichardLitt/standard-readme )
5
5
6
- > Hoku core Solidity contracts and libraries
6
+ > Recall core Solidity contracts and libraries
7
7
8
8
## Table of Contents
9
9
33
33
## Background
34
34
35
35
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:
37
37
38
- - ` Hoku .sol` : An ERC20 token implementation.
38
+ - ` Recall .sol` : An ERC20 token implementation.
39
39
- ` Faucet.sol ` : The accompanying onchain faucet (rate limiter) contract for dripping testnet funds.
40
40
- ` CreditManager.sol ` : Manage subnet credit, including credit purchases, approvals/rejections, and
41
41
related read-only operations (uses the ` LibCredit ` and ` LibWasm ` libraries).
@@ -55,12 +55,12 @@ for Hoku. It includes the following:
55
55
56
56
### Deployments
57
57
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
59
59
subnet):
60
60
61
61
| Contract | Chain | Address |
62
62
| -------------- | ----------- | -------------------------------------------- |
63
- | Hoku (ERC20) | Calibration | ` 0x20d8a696091153c4d4816ba1fdefe113f71e0905 ` |
63
+ | Recall (ERC20) | Calibration | ` 0x20d8a696091153c4d4816ba1fdefe113f71e0905 ` |
64
64
| Faucet | Subnet | ` 0x7Aff9112A46D98A455f4d4F93c0e3D2438716A44 ` |
65
65
| BlobManager | Subnet | ` 0xTODO ` |
66
66
| BucketManager | Subnet | ` 0xTODO ` |
@@ -101,15 +101,15 @@ pnpm clean
101
101
102
102
The scripts for deploying contracts are in ` script/ ` directory:
103
103
104
- - ` Hoku .s.sol` : Deploy the Hoku ERC20 contract.
104
+ - ` Recall .s.sol` : Deploy the Recall ERC20 contract.
105
105
- ` Faucet.s.sol ` : Deploy the faucet contract.
106
106
- ` ValidatorGater.s.sol ` : Deploy the validator gater contract.
107
107
- ` CreditManager.s.sol ` : Deploy the credit contract.
108
108
- ` BlobManager.s.sol ` : Deploy the blobs contract.
109
109
- ` 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.
111
111
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
113
113
> (significantly) bump the gas estimation multiplier by adding a ` -g 100000 ` flag to the
114
114
> ` forge script ` command.
115
115
@@ -126,7 +126,7 @@ You can run a script with `forge script`, passing the script path/name and any a
126
126
- ` localnet_parent ` : Deploy to localnet and the parent (Anvil) node.
127
127
- ` localnet_subnet ` : Deploy to localnet and the subnet node.
128
128
- ` 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 ).
130
130
- ` devnet ` : Deploy to the devnet network.
131
131
132
132
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
141
141
transaction to the network. Recall that you ** must** set ` -g 100000 ` to ensure the gas estimate is
142
142
sufficiently high.
143
143
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:
145
145
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 `
149
149
150
150
Mainnet deployments require the address of the Axelar Interchain Token Service on chain you are
151
151
deploying to, which is handled in the ERC20's ` DeployScript ` logic.
152
152
153
153
#### Localnet
154
154
155
- ##### Hoku ERC20
155
+ ##### Recall ERC20
156
156
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
158
158
the ` -g ` flag is not used here since the gas estimate is sufficiently low on Anvil.
159
159
160
160
``` 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
162
162
```
163
163
164
164
##### Faucet
165
165
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
167
167
tokens, owned by the deployer's account which will be transferred to the faucet contract (e.g., 5000
168
168
with 10\*\* 18 decimal units).
169
169
@@ -197,18 +197,18 @@ forge script script/BlobManager.s.sol --tc DeployScript --sig 'run()' --rpc-url
197
197
198
198
#### Testnet
199
199
200
- ##### Hoku ERC20
200
+ ##### Recall ERC20
201
201
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
203
203
differs from the localnet setup above since we're deploying to Filecoin Calibration);
204
204
205
205
``` 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
207
207
```
208
208
209
209
##### Faucet
210
210
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
212
212
tokens, owned by the deployer's account which will be transferred to the faucet contract (e.g., 5000
213
213
with 10\*\* 18 decimal units).
214
214
@@ -249,29 +249,29 @@ If you're trying to simply deploy to an Anvil node (i.e., `http://localhost:8545
249
249
same pattern, or just explicitly set the RPC URL:
250
250
251
251
``` 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
253
253
```
254
254
255
255
#### Mainnet
256
256
257
257
Mainnet is not yet available. The RPC URLs (` mainnet_parent ` and ` mainnet_subnet ` ) are placeholders,
258
258
pointing to the same environment as the testnet.
259
259
260
- ##### Hoku ERC20
260
+ ##### Recall ERC20
261
261
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
263
263
use the following. Note these will enable behavior for the Axelar Interchain Token Service.
264
264
265
265
Deploy to Ethereum:
266
266
267
267
``` 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
269
269
```
270
270
271
271
And for Filecoin:
272
272
273
273
``` 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
275
275
```
276
276
277
277
## Development
@@ -670,14 +670,14 @@ export BUCKETS=0x314512a8692245cf507ac6E9d0eB805EA820d9a8
670
670
671
671
The account you use to create buckets should have the following:
672
672
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:
674
674
[ https://faucet.hoku.sh ] ( https://faucet.hoku.sh ) ). You can verify this with the
675
675
[ Hoku CLI] ( https://github.com/hokunet/rust-hoku ) : ` hoku account info `
676
676
- A credit balance in the subnet. You can verify this with ` hoku credit balance ` . If you don't have
677
677
credits, you can buy them with the Credits contract above, or run the ` hoku credit buy <amount> `
678
678
command.
679
679
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.
681
681
682
682
##### Create a bucket
683
683
0 commit comments