Skip to content

Commit

Permalink
remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
JSHan94 committed Jan 17, 2024
1 parent c93dbf9 commit 7d457c9
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions bots/src/scripts/setupL2.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
import { MsgCreateBridge, BridgeConfig, Duration } from '@initia/initia.js';
import { MsgCreateBridge, BridgeConfig, Duration, Wallet, MnemonicKey } from '@initia/initia.js';
import { sendTx } from 'lib/tx';
import { config } from 'config';
import { executor, challenger, outputSubmitter } from 'test/utils/helper';

export const executor = new Wallet(
config.l1lcd,
new MnemonicKey({ mnemonic: config.EXECUTOR_MNEMONIC })
);
export const challenger = new Wallet(
config.l1lcd,
new MnemonicKey({ mnemonic: config.CHALLENGER_MNEMONIC })
);
export const outputSubmitter = new Wallet(
config.l1lcd,
new MnemonicKey({ mnemonic: config.OUTPUT_SUBMITTER_MNEMONIC })
);

class L2Initializer {
bridgeId = config.BRIDGE_ID;
Expand Down

0 comments on commit 7d457c9

Please sign in to comment.