Skip to content

Commit 5023a0c

Browse files
fix typos (#24)
1 parent a7158a7 commit 5023a0c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contracts/Fluidex.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import "./Events.sol";
1111
import "./Verifier.sol";
1212

1313
/**
14-
* @title FluidexDemo
14+
* @title FluiDexDemo
1515
*/
16-
contract FluidexDemo is Events, KeyedVerifier, ReentrancyGuard {
16+
contract FluiDexDemo is Events, KeyedVerifier, ReentrancyGuard {
1717
using SafeERC20 for IERC20;
1818

1919
enum BlockState {

scripts/deploy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ async function main() {
1414
// await hre.run('compile');
1515

1616
// We get the contract to deploy
17-
const fluidexFactory = await ethers.getContractFactory("FluidexDemo");
17+
const fluidexFactory = await ethers.getContractFactory("FluiDexDemo");
1818
let genesisRoot = process.env.GENESIS_ROOT;
1919
console.log("genesisRoot:", genesisRoot);
2020
fluidex = await fluidexFactory.deploy(genesisRoot);
2121
await fluidex.deployed();
2222
// await fluidex.initialize();
23-
console.log("Fluidex deployed to:", fluidex.address);
23+
console.log("FluiDex deployed to:", fluidex.address);
2424
}
2525

2626
// We recommend this pattern to be able to use async/await everywhere

0 commit comments

Comments
 (0)