diff --git a/contracts/Fluidex.sol b/contracts/Fluidex.sol index 8d130cb..9d0d8a2 100644 --- a/contracts/Fluidex.sol +++ b/contracts/Fluidex.sol @@ -11,9 +11,9 @@ import "./Events.sol"; import "./Verifier.sol"; /** - * @title FluidexDemo + * @title FluiDexDemo */ -contract FluidexDemo is Events, KeyedVerifier, ReentrancyGuard { +contract FluiDexDemo is Events, KeyedVerifier, ReentrancyGuard { using SafeERC20 for IERC20; enum BlockState { diff --git a/scripts/deploy.js b/scripts/deploy.js index 64212f0..3419796 100644 --- a/scripts/deploy.js +++ b/scripts/deploy.js @@ -14,13 +14,13 @@ async function main() { // await hre.run('compile'); // We get the contract to deploy - const fluidexFactory = await ethers.getContractFactory("FluidexDemo"); + const fluidexFactory = await ethers.getContractFactory("FluiDexDemo"); let genesisRoot = process.env.GENESIS_ROOT; console.log("genesisRoot:", genesisRoot); fluidex = await fluidexFactory.deploy(genesisRoot); await fluidex.deployed(); // await fluidex.initialize(); - console.log("Fluidex deployed to:", fluidex.address); + console.log("FluiDex deployed to:", fluidex.address); } // We recommend this pattern to be able to use async/await everywhere