Skip to content

Commit

Permalink
chore: linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kupermind committed Apr 9, 2024
1 parent 64ae085 commit 3b25590
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ async function main() {
const useLedger = parsedData.useLedger;
const derivationPath = parsedData.derivationPath;
const providerName = "sepolia";
const gasPriceInGwei = parsedData.gasPriceInGwei;
let EOA;

const provider = await ethers.providers.getDefaultProvider(providerName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,6 @@ async function main() {
const fxRootABI = parsedFile["abi"];
const fxRoot = new ethers.Contract(fxRootAddress, fxRootABI, goerliProvider);

// FxChild address on mumbai
const fxChildAddress = "0xCf73231F28B7331BBe3124B907840A94851f9f11";
const fxChildJSON = "artifacts/fx-portal/contracts/FxChild.sol/FxChild.json";
contractFromJSON = fs.readFileSync(fxChildJSON, "utf8");
parsedFile = JSON.parse(contractFromJSON);
const fxChildABI = parsedFile["abi"];
const fxChild = new ethers.Contract(fxChildAddress, fxChildABI, mumbaiProvider);

// Test deployed FxChildTunnel address on mumbai
const fxChildTunnelAddress = "0x31D3202d8744B16A120117A053459DDFAE93c855";
const fxChildTunnelJSON = "artifacts/contracts/bridges/test/FxChildTunnel.sol/FxChildTunnel.json";
Expand Down

0 comments on commit 3b25590

Please sign in to comment.