@@ -141,12 +141,6 @@ 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 Recall ERC20, the environment will dictate different token symbols:
145
-
146
- - Local: prefixes ` RECALL ` with ` l `
147
- - Testnet: prefixes ` RECALL ` with ` t `
148
- - Mainnet: uses ` RECALL `
149
-
150
144
Mainnet deployments require the address of the Axelar Interchain Token Service on chain you are
151
145
deploying to, which is handled in the ERC20's ` DeployScript ` logic.
152
146
@@ -163,9 +157,9 @@ forge script script/Recall.s.sol --tc DeployScript --sig 'run(string)' local --r
163
157
164
158
##### Faucet
165
159
166
- Deploy the Faucet contract to the localnet subnet. The second argument is the initial supply of Recall
167
- tokens, owned by the deployer's account which will be transferred to the faucet contract (e.g., 5000
168
- with 10\*\* 18 decimal units).
160
+ Deploy the Faucet contract to the localnet subnet. The second argument is the initial supply of
161
+ Recall tokens, owned by the deployer's account which will be transferred to the faucet contract
162
+ (e.g., 5000 with 10\*\* 18 decimal units).
169
163
170
164
``` shell
171
165
PRIVATE_KEY=< 0x...> forge script script/Faucet.s.sol --tc DeployScript --sig ' run(uint256)' 5000000000000000000000 --rpc-url localnet_subnet --private-key $PRIVATE_KEY --broadcast -g 100000 -vv
@@ -199,18 +193,18 @@ forge script script/BlobManager.s.sol --tc DeployScript --sig 'run()' --rpc-url
199
193
200
194
##### Recall ERC20
201
195
202
- Deploy the Recall ERC20 contract to the testnet parent chain. Note the ` -g ` flag _ is_ used here (this
203
- differs from the localnet setup above since we're deploying to Filecoin Calibration);
196
+ Deploy the Recall ERC20 contract to the testnet parent chain. Note the ` -g ` flag _ is_ used here
197
+ (this differs from the localnet setup above since we're deploying to Filecoin Calibration);
204
198
205
199
``` shell
206
200
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
201
```
208
202
209
203
##### Faucet
210
204
211
- Deploy the Faucet contract to the testnet subnet. The second argument is the initial supply of Recall
212
- tokens, owned by the deployer's account which will be transferred to the faucet contract (e.g., 5000
213
- with 10\*\* 18 decimal units).
205
+ Deploy the Faucet contract to the testnet subnet. The second argument is the initial supply of
206
+ Recall tokens, owned by the deployer's account which will be transferred to the faucet contract
207
+ (e.g., 5000 with 10\*\* 18 decimal units).
214
208
215
209
``` shell
216
210
forge script script/Faucet.s.sol --tc DeployScript --sig ' run(uint256)' 5000000000000000000000 --rpc-url testnet_subnet --private-key $PRIVATE_KEY --broadcast -g 100000 -vv
0 commit comments