File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import "./Events.sol";
11
11
import "./Verifier.sol " ;
12
12
13
13
/**
14
- * @title FluidexDemo
14
+ * @title FluiDexDemo
15
15
*/
16
- contract FluidexDemo is Events , KeyedVerifier , ReentrancyGuard {
16
+ contract FluiDexDemo is Events , KeyedVerifier , ReentrancyGuard {
17
17
using SafeERC20 for IERC20 ;
18
18
19
19
enum BlockState {
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ async function main() {
14
14
// await hre.run('compile');
15
15
16
16
// We get the contract to deploy
17
- const fluidexFactory = await ethers . getContractFactory ( "FluidexDemo " ) ;
17
+ const fluidexFactory = await ethers . getContractFactory ( "FluiDexDemo " ) ;
18
18
let genesisRoot = process . env . GENESIS_ROOT ;
19
19
console . log ( "genesisRoot:" , genesisRoot ) ;
20
20
fluidex = await fluidexFactory . deploy ( genesisRoot ) ;
21
21
await fluidex . deployed ( ) ;
22
22
// await fluidex.initialize();
23
- console . log ( "Fluidex deployed to:" , fluidex . address ) ;
23
+ console . log ( "FluiDex deployed to:" , fluidex . address ) ;
24
24
}
25
25
26
26
// We recommend this pattern to be able to use async/await everywhere
You can’t perform that action at this time.
0 commit comments