Skip to content

Commit 7080888

Browse files
authored
feat: consistent token symbol RECALL (without prefix) (#71)
1 parent 5511c30 commit 7080888

File tree

4 files changed

+11
-30
lines changed

4 files changed

+11
-30
lines changed

README.md

+8-14
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,6 @@ 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 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-
150144
Mainnet deployments require the address of the Axelar Interchain Token Service on chain you are
151145
deploying to, which is handled in the ERC20's `DeployScript` logic.
152146

@@ -163,9 +157,9 @@ forge script script/Recall.s.sol --tc DeployScript --sig 'run(string)' local --r
163157

164158
##### Faucet
165159

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).
169163

170164
```shell
171165
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
199193

200194
##### Recall ERC20
201195

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);
204198

205199
```shell
206200
forge script script/Recall.s.sol --tc DeployScript --sig 'run(string)' testnet --rpc-url testnet_parent --private-key $PRIVATE_KEY --broadcast -g 100000 -vv
207201
```
208202

209203
##### Faucet
210204

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).
214208

215209
```shell
216210
forge script script/Faucet.s.sol --tc DeployScript --sig 'run(uint256)' 5000000000000000000000 --rpc-url testnet_subnet --private-key $PRIVATE_KEY --broadcast -g 100000 -vv

script/Recall.s.sol

+1-11
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,9 @@ contract DeployScript is Script {
2222
function run(string memory network) public returns (Recall) {
2323
vm.startBroadcast();
2424

25-
string memory prefix = "";
26-
if (Strings.equal(network, "local")) {
27-
prefix = "l";
28-
} else if (Strings.equal(network, "testnet")) {
29-
prefix = "t";
30-
} else if (!Strings.equal(network, "ethereum") && !Strings.equal(network, "filecoin")) {
31-
// solhint-disable-next-line custom-errors
32-
revert("Unsupported network.");
33-
}
34-
3525
bytes32 itsSalt = keccak256("RECALL_SALT");
3626
proxyAddress = Upgrades.deployUUPSProxy(
37-
"Recall.sol", abi.encodeCall(Recall.initialize, (prefix, INTERCHAIN_TOKEN_SERVICE, itsSalt))
27+
"Recall.sol", abi.encodeCall(Recall.initialize, (INTERCHAIN_TOKEN_SERVICE, itsSalt))
3828
);
3929

4030
// Check implementation

src/token/Recall.sol

+2-4
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,10 @@ contract Recall is
3737
}
3838

3939
/// @dev Initializes the contract with the given environment
40-
/// @param prefix The prefix for the symbol
4140
/// @param its The interchain token service address
4241
/// @param itsSalt The salt for the interchain token service
43-
function initialize(string memory prefix, address its, bytes32 itsSalt) public initializer {
44-
string memory symbol = string(abi.encodePacked(prefix, "RECALL"));
45-
__ERC20_init("Recall", symbol);
42+
function initialize(address its, bytes32 itsSalt) public initializer {
43+
__ERC20_init("Recall", "RECALL");
4644
__AccessControl_init();
4745
__Pausable_init();
4846
__UUPSUpgradeable_init();

test/Recall.t.sol

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

4-
import {Options, Upgrades} from "@openzeppelin/foundry-upgrades/Upgrades.sol";
54
import {Test, Vm} from "forge-std/Test.sol";
65
import {console2 as console} from "forge-std/console2.sol";
76

0 commit comments

Comments
 (0)