Skip to content

Commit

Permalink
del useless comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zkJoaquin committed Apr 1, 2024
1 parent f8b4679 commit c431ad5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/manta/scripts/mantaTasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ async function initMessenger() {
// https://github.com/Manta-Network/bridging-tutorial/blob/ad640a17264e2f009065811a0ff0872d8063b27b/standard-bridge-custom-token/README.md?plain=1#L152
const messengerL1Contracts = ethereumName !== 'ETHEREUM' ? L1_TESTNET_CONTRACTS : L1_MAINNET_CONTRACTS;
const messenger = new manta.CrossChainMessenger({
l1ChainId: await l1Wallet.getChainId(), // 11155111 for Sepolia, 1 for Ethereum
l2ChainId: await l2Wallet.getChainId(), // 3441005 for Manta Pacific Testnet, 169 for Manta Pacific Mainnet
l1ChainId: await l1Wallet.getChainId(),
l2ChainId: await l2Wallet.getChainId(),
l1SignerOrProvider: l1Wallet,
l2SignerOrProvider: l2Wallet,
bedrock: true,
Expand Down
4 changes: 2 additions & 2 deletions examples/mantle/scripts/mantleTasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ async function initMessenger() {
const l1Wallet = new ethers.Wallet(walletPrivateKey, l1Provider);
const l2Wallet = new ethers.Wallet(walletPrivateKey, l2Provider);
const messenger = new mantle.CrossChainMessenger({
l1ChainId: await l1Wallet.getChainId(), // 11155111 for Sepolia, 1 for Ethereum
l2ChainId: await l2Wallet.getChainId(), // 5003 for Mantle Testnet, 5000 for Mantle Mainnet
l1ChainId: await l1Wallet.getChainId(),
l2ChainId: await l2Wallet.getChainId(),
l1SignerOrProvider: l1Wallet,
l2SignerOrProvider: l2Wallet,
bedrock: true,
Expand Down
4 changes: 2 additions & 2 deletions examples/optimism/scripts/optimismTasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ async function initMessenger() {
const l1Wallet = new ethers.Wallet(walletPrivateKey, l1Provider);
const l2Wallet = new ethers.Wallet(walletPrivateKey, l2Provider);
const messenger = new optimism.CrossChainMessenger({
l1ChainId: await l1Wallet.getChainId(), // 11155111 for Sepolia, 1 for Ethereum
l2ChainId: await l2Wallet.getChainId(), // 11155420 for OP Sepolia, 10 for OP Mainnet
l1ChainId: await l1Wallet.getChainId(),
l2ChainId: await l2Wallet.getChainId(),
l1SignerOrProvider: l1Wallet,
l2SignerOrProvider: l2Wallet,
});
Expand Down

0 comments on commit c431ad5

Please sign in to comment.